/** Shopify CDN: Minification failed

Line 966:17 Expected ":"
Line 1600:20 "whitespace" is not a known CSS property
Line 1665:35 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1, SCOPED:FALSE) */
.announcement-bar {
        background: rgb(var(--blue-medium));
        display: none;

        > div {
            > div {
                display: flex;
                justify-content: flex-end;

                > button {
                    > span {
                        display: block;
                        font-size: 2rem;
                        font-variation-settings: 'wght' 300;
                        margin-top: 0.5em;
                        margin-bottom: 0.1em;
                    }
                }
            }
            > h2 {
                font-size: 1.25rem;
                font-weight: 700;
                color: rgb(var(--red));
                margin-bottom: 0.5em;
            }

            > p {
                font-size: 1rem;
                white-space: pre-wrap;
                padding-bottom: 2.5em;

                a {
                    color: rgb(var(--red));
                    text-decoration: underline;
                }
            }
        }
    }
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:2, SCOPED:FALSE) */
.article {
        max-width: 64rem;
        margin-bottom: 6rem;

        > img {
            width: 100%;
            display: block;
            height: auto;
        }
    }

    .article-date {
        color: rgb(var(--grey-light));
        font-size: 0.8rem;
        padding-top: 1em;
    }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:3, SCOPED:FALSE) */
.blog-preview-meta {
        font-size: 0.9rem;
        color: rgb(var(--grey-light));
        margin-top: 0.5em;
    }

    .blog-preview-excerpt {
        font-size: 0.9rem;
    }
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:4, SCOPED:FALSE) */
.cart {
        max-width: 80rem;
        margin-bottom: 6rem;
    }

    .cart-headline {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 1em;
        margin-bottom: 0.25em;

        @media screen and (min-width: 48rem) {
            font-size: 3rem;
        }
    }

    .cart-list {
        > * {
            border-top: 1px solid rgb(var(--grey-lightest));

            &:last-child {
                border-bottom: 1px solid rgb(var(--grey-lightest));
            }
        }
    }

    .cart-list-item {
        display: grid;
        grid-template-columns: 4rem auto;
        gap: 1rem;
        align-items: flex-start;
        padding: 0.75rem 0;

        @media screen and (min-width: 48rem) {
            grid-template-columns: 8rem auto;
            gap: 1.5rem;
            padding: 1rem 0;
        }

        @media screen and (min-width: 64rem) {
            grid-template-columns: 12rem auto;
        }
    }

    .cart-list-item-content {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        align-items: center;
        gap: 0.5rem;

        @media screen and (min-width: 48rem) {
            gap: 1rem;
        }
    }

    .cart-list-item-content-title {
        grid-column: span 12;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        > div {
            > h2 {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
                font-weight: 700;

                @media screen and (min-width: 48rem) {
                    font-size: 1.2rem;
                }
            }

            > p {
                font-size: 0.8rem;
                color: rgb(var(--grey-medium));
                margin-bottom: 1em;

                @media screen and (min-width: 48rem) {
                    font-size: 0.9rem;
                }
            }
        }

        > a {
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: rgb(var(--red));

            @media screen and (min-width: 48rem) {
                font-size: 0.9rem;
            }

            > span {
                &:nth-child(1) {
                    font-size: 140%;
                    font-variation-settings: 'wght' 300;
                }

                &:nth-child(2) {
                    padding-bottom: 0.15em;

                    @media screen and (min-width: 48rem) {
                        padding-bottom: 0em;
                    }
                }
            }
        }
    }

    .cart-list-item-content-quantity {
        grid-column: span 12;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;

        @media screen and (min-width: 64rem) {
            justify-content: flex-end;
        }

        * {
            font-size: 0.7rem;

            @media screen and (min-width: 48rem) {
                font-size: 0.8rem;
            }
        }
    }

    .cart-list-item-content-price {
        grid-column: span 12;
        font-size: 0.8rem;
        font-weight: 700;
        text-align: right;
        font-variant-numeric: tabular-nums;

        @media screen and (min-width: 48rem) {
            font-size: 1rem;
        }
    }

    .cart-summary {
        display: grid;
        gap: 0.75rem;
        padding: 1rem 0;

        > ul {
            list-style: none;
            display: grid;
            gap: 0.25rem;

            > li {
                display: flex;
                justify-content: space-between;
                font-size: 1rem;
                color: rgb(var(--grey-medium));

                &:last-child {
                    font-weight: 700;
                    color: rgb(var(--black));
                }

                > span {
                    &:last-child {
                        font-variant-numeric: tabular-nums;
                    }
                }
            }
        }
    }

    .cart-checkout {
        margin-top: 2em;
    }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:5, SCOPED:FALSE) */
.collection-filter {
        background: rgb(var(--blue));
    }

    .collection-filter-inner {
        > h1 {
            font-size: 1.8rem;
            padding-top: 0.5em;
            padding-bottom: 0.3em;

            @media screen and (min-width: 48rem) {
                font-size: 2.5rem;
            }
        }

        > ul {
            list-style: none;
            display: inline-flex;
            gap: 0.75em;
            font-size: 0.7rem;
            width: 100%;
            padding-bottom: 2em;
            overflow-x: auto;

            @media screen and (min-width: 48rem) {
                font-size: 0.9rem;
            }

            @media screen and (min-width: 64rem) {
                flex-wrap: wrap;
            }

            > li {
                > a {
                    display: block;
                    white-space: nowrap;
                    padding: 0.5em 1.5em;
                    border: 1px solid;
                    border-radius: var(--border-radius-round);

                    &:hover,
                    &[data-active='true'] {
                        background: rgb(var(--black));
                        color: rgb(var(--blue));
                        border: 1px solid rgb(var(--black));
                    }
                }
            }
        }
    }

    .collection-storefront-filter {
        margin-top: 1.5rem;
        margin-bottom: 1rem;

        @media screen and (min-width: 64rem) {
            margin-top: 3rem;
            margin-bottom: 1rem;
        }
    }
/* END_SECTION:collection */

/* START_SECTION:footer (INDEX:7, SCOPED:FALSE) */
footer {
        background: rgb(var(--red));
        color: rgb(var(--white));
    }

    .footer-inner-top {
        display: grid;
        gap: 4rem;
        padding-top: 2rem;
        padding-bottom: 2rem;

        @media screen and (min-width: 80rem) {
            display: flex;
            padding-bottom: 6rem;
        }
    }

    .footer-inner-top-links {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        list-style: none;
        gap: 2rem;
        flex-grow: 1;

        @media screen and (min-width: 48rem) {
            grid-template-columns: repeat(3, auto);
        }
    }

    .footer-inner-top-aside {
        display: grid;
        gap: 1.5rem;

        @media screen and (min-width: 80rem) {
            display: flex;
            gap: 3rem;
        }
    }

    .footer-inner-top-aside-socials {
        display: grid;
        grid-template-columns: repeat(3, 2rem);
        list-style: none;
        gap: 0.75rem;

        a {
            display: block;
            width: 2rem;
            height: 2rem;
            background: rgb(var(--white));
            border-radius: 9999px;
            display: flex;
            justify-content: center;
            align-items: center;

            img {
                width: 1rem;
                height: 1rem;
            }
        }
    }

    .footer-inner-bottom {
        border-top: 1px solid rgb(var(--white) / 50%);
        font-size: 0.9rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        display: grid;
        gap: 1rem;

        @media screen and (min-width: 48rem) {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        > ul {
            display: grid;
            list-style: none;
            gap: 0.3em;

            @media screen and (min-width: 48rem) {
                display: flex;
                gap: 1em;
            }
        }
    }
/* END_SECTION:footer */

/* START_SECTION:header-bottom (INDEX:8, SCOPED:FALSE) */
.header-bottom {
        background: rgb(var(--white));
        width: 100%;
        position: relative;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        position: relative;
        z-index: 1000;

        @media screen and (min-width: 48rem) {
            padding-top: 1.6rem;
            padding-bottom: 1.6rem;
        }

        @media screen and (min-width: 80rem) {
            padding-top: 0;
            padding-bottom: 0;
        }

        > div {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
        }
    }

    .header-bottom-logo {
        align-self: center;

        > a {
            display: flex;
            align-items: center;

            > img {
                width: auto;

                &:nth-child(1) {
                    display: block;
                    height: 2rem;

                    @media screen and (min-width: 48rem) {
                        height: 3rem;
                    }

                    @media screen and (min-width: 80rem) {
                        display: none;
                    }
                }

                &:nth-child(2) {
                    display: none;
                    height: 3rem;

                    @media screen and (min-width: 80rem) {
                        display: block;
                    }
                }
            }
        }
    }

    .header-bottom-menu {
        display: none;

        @media screen and (min-width: 80rem) {
            display: inherit;
        }

        > ul {
            height: 100%;
            list-style: none;
            display: flex;
            align-items: stretch;

            > li {
                display: flex;
                align-items: center;
                padding: 2.5em 1em;

                > a {
                    font-weight: 700;
                    font-size: 1.1rem;
                }

                > div {
                    display: none;
                    background: rgb(var(--black) / 50%);
                    position: absolute;
                    left: 0;
                    top: 100%;
                    width: 100%;
                    height: calc(100dvh - var(--offset));
                    pointer-events: none;

                    > div {
                        background: rgb(var(--white));
                        border-top: 1px solid rgb(var(--grey-lightest));
                        box-shadow: 0 4px 6px rgb(var(--black) / 10%);

                        > ul {
                            list-style: none;
                            display: grid;
                            padding-top: 2rem;
                            padding-bottom: 2rem;
                            grid-template-columns: repeat(3, 1fr);
                            gap: 1em;
                            font-size: 1rem;
                            pointer-events: auto;
                        }
                    }
                }

                &:hover,
                &[data-input-device='mouse']:hover,
                &[data-input-device='keyboard']:focus-within {
                    > div {
                        display: block;
                    }
                }
            }
        }
    }

    .header-bottom-meta {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 1rem;

        > li {
            &[data-hidden-mobile='true'] {
                display: none;

                @media screen and (min-width: 80rem) {
                    display: block;
                }
            }

            > a {
                position: relative;
                display: flex;
                align-items: center;

                &:hover {
                    color: rgb(var(--red));
                }

                > span {
                    font-size: 1.6rem;
                    font-variation-settings: 'wght' 300;
                    display: block;
                }

                > sup {
                    display: block;
                    position: absolute;
                    top: -0.75rem;
                    right: -0.5rem;
                    font-weight: 700;
                    color: rgb(var(--primary));
                    width: 1.2rem;
                    height: 1.2rem;
                    background: rgb(var(--red));
                    border-radius: var(--border-radius-round);
                    color: rgb(var(--white));
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.6rem;
                }
            }
        }

        .header-bottom-meta-menu-mobile-button {
            display: block;
            width: 28px;
            height: 20px;
            position: relative;

            @media screen and (min-width: 80rem) {
                display: none;
            }

            > span {
                position: absolute;
                left: 0;
                width: 100%;
                height: 2px;
                background: rgb(var(--black));
                display: block;
                transition: transform 0.3s;

                &:nth-child(1) {
                    top: 0;
                }

                &:nth-child(2),
                &:nth-child(3) {
                    top: calc(50% - 1px);
                }

                &:nth-child(4) {
                    bottom: 0;
                }
            }

            &[data-open='true'] {
                > span {
                    &:nth-child(1),
                    &:nth-child(4) {
                        transform: scaleX(0);
                    }

                    &:nth-child(2) {
                        transform: rotate(45deg);
                    }

                    &:nth-child(3) {
                        transform: rotate(-45deg);
                    }
                }
            }
        }
    }

    .header-bottom-menu-mobile {
        position: fixed;
        top: var(--offset);
        height: calc(100dvh - var(--offset));
        width: 100%;
        background: rgb(var(--white));
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;

        &::-webkit-scrollbar {
            display: none;
        }

        @media screen and (min-width: 80rem) {
            display: none;
        }
    }

    .header-bottom-menu-mobile-inner {
        height: calc(100% + 1px);
    }
/* END_SECTION:header-bottom */

/* START_SECTION:header-top (INDEX:9, SCOPED:FALSE) */
.header-top {
        background: rgb(var(--blue-light));
        font-size: 0.9rem;
        padding-top: 0.5em;
        padding-bottom: 0.5em;

        > div {
            > a {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5em;

                > span {
                    &:nth-child(1) {
                        width: 1.4em;
                        height: 1.4em;
                        font-size: 1rem;
                        background: rgb(var(--red));
                        border-radius: 9999px;
                        color: rgb(var(--white));
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-variation-settings: 'FILL' 1;
                    }
                }
            }
        }
    }
/* END_SECTION:header-top */

/* START_SECTION:page (INDEX:11, SCOPED:FALSE) */
.page-default {
        max-width: 64rem;
        margin-bottom: 6rem;
    }
/* END_SECTION:page */

/* START_SECTION:password (INDEX:12, SCOPED:FALSE) */
.page-password-message {
        font-size: 1.1rem;
        margin-bottom: 2em;
    }

    .page-password-form {
        display: flex;
        align-items: flex-end;
        gap: 1em;
    }

    .page-password-form-input {
        display: flex;
        flex-direction: column;
        gap: 0.5em;

        label {
            color: rgb(var(--grey-light));
        }

        input {
            border: 1px solid rgb(var(--grey-light));
            padding: 0.5em 3em 0.5em 1em;
            border-radius: var(--border-radius);
        }
    }
/* END_SECTION:password */

/* START_SECTION:product (INDEX:13, SCOPED:FALSE) */
.product {
        display: grid;
        gap: 1rem;
        align-items: start;

        @media screen and (min-width: 48rem) {
            grid-template-columns: repeat(2, 1fr);
            padding-top: 4em;
            gap: 3rem;
        }
    }

    .product-slider {
        @media screen and (min-width: 48rem) {
            display: none;
        }
    }

    .product-images {
        display: none;

        @media screen and (min-width: 48rem) {
            display: grid;
            gap: 1rem;
        }
    }

    .product-images-image {
        > img {
            width: 100%;
            height: auto;
        }
    }

    .product-content {
        position: sticky;
        top: 10.5rem;
    }

    .product-content-header {
        > h1 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.25em;

            @media screen and (min-width: 64rem) {
                font-size: 2.4rem;
            }
        }

        > span {
            font-size: 0.8rem;
            display: block;
            color: rgb(var(--grey-medium));
            margin-bottom: 2em;
        }

        > p {
            font-size: 1.4rem;
            padding-bottom: 0.5em;
            border-bottom: 1px solid rgb(var(--grey-lightest));
        }
    }

    .product-content-description {
        padding: 1rem 0;
        font-size: 1rem;
        line-height: 1.6;
        border-bottom: 1px solid rgb(var(--grey-lightest));
    }

    .product-content-suitable-for {
        padding: 1rem 0;
        border-bottom: 1px solid rgb(var(--grey-lightest));

        > h2 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: rgb(var(--grey-medium));
            margin-bottom: 1em;
        }

        > ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            font-size: 0.9rem;
            gap: 1em;

            > li {
                display: flex;
                align-items: center;
                gap: 0.5em;

                &::before {
                    content: 'check_circle';
                    font-family: 'Material Symbols Outlined', sans-serif;
                    font-variation-settings: 'wght' 300;
                    font-size: 1.5em;
                    line-height: 1;
                }
            }
        }
    }

    .product-content-details {
        padding: 1rem 0;
        border-bottom: 1px solid rgb(var(--grey-lightest));

        > h2 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: rgb(var(--grey-medium));
            margin-bottom: 1em;
        }

        > ul {
            display: grid;
            font-size: 0.9rem;
            gap: 1em;

            @media screen and (min-width: 64rem) {
                grid-template-columns: repeat(2, 1fr);
            }
            > li {
                margin-left: 1em;

                > h3 {
                    font-weight: 900;
                }

                > p {
                    font-size: 0.9rem;
                }
            }
        }
    }

    .product-content-downloads {
        padding: 1rem 0;
        border-bottom: 1px solid rgb(var(--grey-lightest));

        > h2 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: rgb(var(--grey-medium));
            margin-bottom: 0.5em;
        }
    }

    .product-content-add-to-cart {
        padding: 1rem 0;
        display: grid;
        gap: 1.5em;
        font-size: 0.8rem;

        > div {
            display: grid;
            align-items: center;
            gap: 0.75em 1.5em;

            @media screen and (min-width: 64rem) {
                grid-template-columns: repeat(2, 1fr);
            }

            .select-wrapper {
                width: 100%;

                select {
                    width: 100%;
                }
            }

            .amount-selector {
                input {
                    flex-grow: 1;
                    text-align: center;
                }
            }

            h2 {
                font-size: 0.8rem;
                text-transform: uppercase;
                color: rgb(var(--grey-medium));
                margin-bottom: 0.5em;
            }
        }

        input[type='submit'] {
            text-align: center;
            font-size: 1rem;
        }
    }

    .product-recommendations {
        margin-bottom: 4rem;
        > h2 {
            font-size: 2rem;
            margin-top: 4em;
            margin-bottom: 0.5em;
        }

        > div {
            display: grid;
            gap: 1rem;
            list-style: none;
            grid-template-columns: repeat(2, 1fr);

            @media screen and (min-width: 32rem) {
                gap: 2rem 1rem;
            }

            @media screen and (min-width: 64rem) {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:14, SCOPED:FALSE) */
.search-form {
        display: flex;
        gap: 1rem;
        input {
            font-size: 1rem;
            border: 1px solid rgb(var(--grey-light));
            border-radius: var(--border-radius);
            padding: 0.5em 1em;
            flex- grow: 1;
            width: 100%;

            @media screen and (min-width: 64rem) {
                max-width: 32rem;
            }

        }
    }

    .search-notice {
        font-size: 0.8rem;
        margin-top: 1em;
        margin-bottom: 3em;
        color: rgb(var(--grey-medium));

        @media screen and (min-width: 64rem) {
        margin-bottom: 5em;
        }

        &[data-failure='true'] {
            color: rgb(var(--red));
        }
    }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:footer-links (INDEX:15, SCOPED:FALSE) */
.footer-links-headline {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 0.3em;
    }

    .footer-links-list {
        font-size: 0.9rem;
        list-style: none;
        display: grid;
        gap: 0.3em;
    }
/* END_BLOCK:footer-links */

/* START_BLOCK:slideshow-slide (INDEX:17, SCOPED:FALSE) */
.slideshow-slide {
        position: relative;
    }

    .slideshow-slide-image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;

        > img {
            object-fit: cover;
            height: 100% !important;
        }
    }

    .slideshow-slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 0%));
        z-index: 1;
    }

    .slideshow-slide-content {
        position: relative;
        top: 0;
        z-index: 2;
        height: max(50vh, 20rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        > h2 {
            font-size: 2rem;
            margin-bottom: 0.5em;
            color: rgb(var(--white));
            white-space: pre-wrap;
            max-width: 20ch;
            line-height: 1.1;
            font-weight: 700;

            @media screen and (min-width: 48rem) {
                font-size: 3rem;
            }

            @media screen and (min-width: 64rem) {
                font-size: 4rem;
            }
        }

        > a {
            font-size: 1rem;

            @media screen and (min-width: 48rem) {
                font-size: 1.25rem;
            }
        }
    }
/* END_BLOCK:slideshow-slide */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:amount-selector (INDEX:19, SCOPED:FALSE) */
.amount-selector {
        display: flex;
        align-items: stretch;
        gap: 0.5em;
        font-size: 0.8rem;

        > button {
            width: 2.2em;
            cursor: pointer;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgb(var(--grey-light));

            > span {
                font-size: 1.2rem;
                font-variation-settings: 'wght' 300;
            }
        }

        > input {
            padding: 0.5em 1em;
            border: 1px solid rgb(var(--grey-light));
            border-radius: var(--border-radius);
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
    }
/* END_SNIPPET:amount-selector */

/* START_SNIPPET:download-selector (INDEX:20, SCOPED:FALSE) */
.download-selector {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem 0.75rem;
        font-size: 0.8rem;
    }
/* END_SNIPPET:download-selector */

/* START_SNIPPET:fallback-image (INDEX:21, SCOPED:FALSE) */
.fallback-image {
        background: linear-gradient(135deg, #ededed, #e2dedd);
        width: 100%;
        padding-top: 80%;
        position: relative;
        container-type: inline-size;
        display: block;

        > span {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30cqw;
            font-variation-settings: 'wght' 100;
            color: rgb(var(--black) / 30%);
        }
    }
/* END_SNIPPET:fallback-image */

/* START_SNIPPET:image (INDEX:22, SCOPED:FALSE) */
.image {
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
    }

    .image > img {
        width: 100%;
        height: auto;
        display: block;
    }
/* END_SNIPPET:image */

/* START_SNIPPET:language-selector (INDEX:23, SCOPED:FALSE) */
.language-switcher {
        position: relative;
    }

    .language-switcher-button {
        display: flex;
        align-items: center;
        gap: 0.2em;

        &:hover {
            color: rgb(var(--red));
        }

        > span {
            &:nth-child(1) {
                font-size: 1rem;

                @media screen and (min-width: 64rem) {
                    font-size: 1.1rem;
                }
            }

            &:nth-child(2) {
                font-size: 140%;
                font-variation-settings: 'wght' 300;
            }
        }
    }

    .language-switcher-list:not([hidden]) {
        position: absolute;
        left: -1em;
        top: calc(100% + 0.5rem);
        min-width: 100%;
        background: white;
        list-style: none;
        background: rgb(var(--white));
        font-size: 0.9rem;
        gap: 0.5em;
        padding: 1em;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        display: grid;
        z-index: 1000;

        > li {
            > a {
                &:hover {
                    color: rgb(var(--red));
                }
            }
        }
    }
/* END_SNIPPET:language-selector */

/* START_SNIPPET:mobile-menu (INDEX:25, SCOPED:FALSE) */
.mobile-menu {
        padding-top: 2rem;
        padding-bottom: 6rem;
    }

    .mobile-menu-navigation-list {
        font-size: 1.1rem;
        list-style: none;
    }

    .mobile-menu-navigation-list-item {
        border-top: 1px solid rgb(var(--grey-lightest));
        padding: 0.5em 0;

        &:first-child {
            border-top: none;
        }

        details,
        a {
            font-weight: 700;
        }

        a {
            &[data-active='true'] {
                color: rgb(var(--red));
            }
        }

        details {
            summary {
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;

                > span {
                    font-size: 150%;
                    font-variation-settings: 'wght' 300;
                    transition: transform 0.3s;
                }
            }

            &[open] {
                summary {
                    > span {
                        transform: rotate(90deg);
                    }
                }
            }

            ul {
                list-style: none;
                margin: 0;
                padding: 1em 0;

                li {
                    padding: 0.3em 0;

                    a {
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .mobile-menu-language-selector {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgb(var(--white));
        padding: 1rem 0;
        border-top: 1px solid rgb(var(--grey-lightest));
        box-sizing: border-box;

        .select-wrapper {
            display: block;
        }

        select {
            width: 100%;
        }
    }
/* END_SNIPPET:mobile-menu */

/* START_SNIPPET:product-preview (INDEX:26, SCOPED:FALSE) */
.product-preview {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .product-preview-badge {
        position: absolute;
        top: 1em;
        left: 1em;
        z-index: 1;
        background: rgb(var(--black));
        padding: 0.5em 1em;
        border-radius: 0.3rem;
        color: rgb(var(--white));
    }

    .product-preview-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        > div {
            > span {
                margin-top: 1em;
                display: inline-block;
                font-size: 0.8rem;
                color: rgb(var(--grey-medium));

                @media screen and (min-width: 32rem) {
                    font-size: 1rem;
                }

                @media screen and (min-width: 48rem) {
                    font-size: 1.1rem;
                }
            }
        }

        &[data-related='true'] {
            > h2 {
                font-size: 0.9rem;
            }

            > div {
                > span {
                    font-size: 0.9rem;
                }
            }
        }
    }
/* END_SNIPPET:product-preview */

/* START_SNIPPET:product-variant-selector (INDEX:27, SCOPED:FALSE) */
.product-variant-selector-fallback {
        border: 1px solid rgb(var(--grey-light));
        display: inline-block;
        padding: 0.5em 1em;
        border-radius: var(--border-radius);
    }
    .product-variant-selector {
        font-size: 0.8rem;
    }
/* END_SNIPPET:product-variant-selector */

/* START_SNIPPET:search-form (INDEX:28, SCOPED:FALSE) */
.search-form {
        position: relative;
    }

    .search-form-button {
        > span {
            font-size: 1.6rem;
            font-variation-settings: 'wght' 300;
            display: block;
        }
    }

    .search-form-fieldset:not([hidden]) {
        border: none;
        position: fixed;
        top: var(--offset);
        left: 0;
        min-width: 100%;
        background: white;
        list-style: none;
        background: rgb(var(--white));
        font-size: 0.9rem;
        gap: 0.5em;
        padding: 1em;
        display: flex;
        z-index: 1000;
        box-sizing: border-box;
        left: 0;

        @media screen and (min-width: 48rem) {
            position: absolute;
            right: -1em;
            left: auto;
            top: calc(100% + 0.5rem);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            min-width: 28rem;
        }

        input {
            flex-grow: 1;
            box-sizing: border-box;
        }
    }
/* END_SNIPPET:search-form */

/* START_SNIPPET:storefront-filter (INDEX:29, SCOPED:FALSE) */
.storefront-filter {
        display: flex;
        gap: 0.75rem;
        width: 100%;
        overflow-x: scroll;
        align-items: center;

        @media screen and (min-width: 48rem) {
            flex-wrap: wrap;
            overflow: visible;
        }
    }

    .storefront-filter-item {
        position: relative;
        order: 1;

        &:open {
            .storefront-filter-item-summary {
                > span {
                    &:nth-child(2) {
                        transform: rotate(180deg);
                    }
                }
            }
        }

        &[data-selected='true'] {
            order: 0;
            @media screen and (min-width: 48rem) {
                order: 1;
        }
    }

    .storefront-filter-item-summary {
        display: flex;
        align-items: center;
        border: 1px solid rgb(var(--grey-light));
        border-radius: var(--border-radius-small);
        font-size: 0.8rem;

        > * {
            &:nth-child(1) {
                display: flex;
                align-items: center;
                white-space: nowrap;
                padding: 0.5em 1em;
                border-right: 1px solid rgb(var(--grey-light));
                gap: 0.5em;

                > span {
                    background: rgb(var(--red));
                    color: rgb(var(--white));
                    font-size: 80%;
                    width: 1.5em;
                    height: 1.5em;
                    border-radius: var(--border-radius-round);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-variant-numeric: tabular-nums;
                }
            }

            &:nth-child(2) {
                align-self: stretch;
                font-size: 140%;
                font-variation-settings: 'wght' 300;
                padding: 0 0.25em;
                display: flex;
                align-items: center;
                justify-content: center;

                > span {
                    transform: translateY(5%);
                }

                &[data-active='true'] {
                    background: rgb(var(--black));
                    color: rgb(var(--white));
                }
            }
        }
    }

    .storefront-filter-item-summary-label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .storefront-filter-item-filter-container {
        z-index: 1;
        background: rgb(var(--white));
        width: 100%;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 8000;
        height: 100dvh;
        overflow-y: auto;
        overscroll-behavior-y: contain;

        @media screen and (min-width: 48rem) {
            position: absolute;
            left: 0;
            top: calc(100% + 0.5em);
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius-small);
            width: max-content;
            min-width: 15rem;
            height: auto;
            overflow: hidden;
            z-index: 1000;
        }
    }

    .storefront-filter-item-filter {
        min-height: calc(100dvh + 1px);

        @media screen and (min-width: 48rem) {
            min-height: auto;
        }
    }

    .storefront-filter-item-filter-header {
        display: flex;
        justify-content: space-between;
        padding: 1rem;
        border-bottom: 1px solid rgb(var(--grey-lightest));
        position: sticky;
        top: 0;
        background: rgb(var(--white));
        z-index: 1;

        @media screen and (min-width: 48rem) {
            display: none;
        }

        > span {
            font-size: 1.2rem;
            font-weight: 600;
        }

        > button {
            > span {
                font-size: 1.5rem;
                font-variation-settings: 'wght' 300;
            }
        }
    }

    .storefront-filter-item-filter-filter {
        min-height: calc(100dvh - 8rem);
        padding: 1rem;
        box-sizing: border-box;

        @media screen and (min-width: 48rem) {
            min-height: auto;
        }
    }

    .storefront-filter-item-filter-filter-list {
        list-style: none;
        display: grid;
        gap: 0.5rem;

        > li {
            > label {
                display: flex;
                align-items: center;
                gap: 0.5em;
                cursor: pointer;
                &[data-disabled='disabled'] {
                    color: rgb(var(--grey-light));
                }

                > input {
                    flex-shrink: 0;
                }

                > span {
                    whitespace: nowrap;
                    font-size: 0.9rem;
                }
            }
        }
    }

    .storefront-filter-item-filter-filter-price-range {
        padding: 1rem;
        display: grid;
        grid-template-columns: 1fr 3rem 1fr;
        align-items: center;

        > div {
            > label {
                font-size: 0.7rem;
                color: rgb(var(--grey-medium));
            }

            > div {
                display: flex;
                align-items: center;
                border: 1px solid rgb(var(--grey-medium));
                padding: 0.25rem 1rem;
                border-radius: var(--border-radius-round);
                justify-content: space-between;

                > span {
                        font-size: 0.9rem;
                }

                > input {
                    text-align: right;
                    font-size: 0.9rem;
                }
            }
        }

        > span {
            align-self: flex-end;
            height: calc(1.8rem + 2px);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
        }
    }

    .storefront-filter-item-filter-apply {
        border-top: 1px solid rgb(var(--grey-lightest));
        padding: 1rem;
        font-size: 0.9rem;
        position: sticky;
        bottom: 0;
        background: rgb(var(--white));

        > input {
            width: 100%;
            text-align: center;

            @media screen and (min-width: 48rem) {
                width: auto;
            }
        }
    }
/* END_SNIPPET:storefront-filter */