/** essentials / elements */

.flex-wrapper {
    display: flex;
}

.grid-wrapper {
    display: grid;
}

.uppercase {
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.container.full-width {
    margin-inline-start: 0;
    margin-inline-end: 0;
}

/** buttons */

.button,
.gfb__footer.wizard__footer .action.next.submit {
    font-family: var(--text-font-family);
    transition: all .2s ease-in-out;
    font-size: 0.8125rem;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    min-width: 12.8125rem;
    height: 2.625rem;
    border-radius: 1.3125rem;
    border: none;
}

.button.button--primary {
    background: var(--black-primary);
    color: var(--white);

    &:hover {
        background: var(--turquoise);
        color: var(--white) !important;
    }

    &:active,
    &:focus {
        background: #679897;
        color: var(--white);
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
    }
}

.button.button--secondary,
.gfb__footer.wizard__footer .action.next.submit {
    color: var(--white);
    background: var(--turquoise);

    &:hover {
        color: var(--white);
        background: #2e6b6a;
    }

    &:active,
    &:focus {
        color: var(--white);
        background: #275c5b;
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
    }
}

.button.button--tertiary {
    color: var(--white);
    background: var(--apple-green);

    &:hover {
        color: var(--white);
        background: var(--orange);
    }

    &:active,
    &:focus {
        color: var(--white);
        background: #5a803a;
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
    }
}

.button.button--inverse {
    color: var(--black-primary);
    background: var(--white);
    box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);

    &:hover {
        color: var(--black-primary);
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
    }

    &:active,
    &:focus {
        color: var(--white);
        background: rgba(255, 255, 255, 0.35);
        ;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    }
}

.button.button--disabled,
.button.w-full[disabled] {
    color: var(--white);
    background: #616161;

    &:hover {
        color: var(--white);
        background: #616161;
    }

    &:active,
    &:focus {
        color: var(--white);
        background: #616161;
    }
}

.slideshow .page-dots {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    --dot-size: 0.75rem;
}

.slideshow .page-dots> :not([aria-current="true"])::after {
    opacity: .75;
}

.slideshow .circular-progress {
    height: 0.75rem;
    width: 0.75rem;
}

.circle-button {
    --size-multiplier: 1;

    @media screen and (max-width: 999px) {
        --size-multiplier: .9;
    }

    --circle-button-size: 3rem;
    width: calc(var(--circle-button-size) * var(--size-multiplier));
    height: calc(var(--circle-button-size) * var(--size-multiplier));
    box-shadow: 0 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);

    & svg {
        width: calc(.75rem * var(--size-multiplier));
    }

    &:hover {
        box-shadow: 0 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);
        background-color: var(--black-primary);

        & svg path {
            stroke: var(--white);
        }
    }

    &:active {
        box-shadow: inset 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
        background-color: var(--turquoise);

        & svg path {
            stroke: var(--white);
        }
    }

}

.splide__arrows {
    transition: opacity .2s;

    & .splide__arrow {
        --arrow-size: 3rem;
        height: calc(var(--arrow-size) * var(--size-multiplier));
        width: calc(var(--arrow-size) * var(--size-multiplier));
        transform: translateY(calc(-50% + 0.625rem));
        box-shadow: 0 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);
        background-color: var(--white);

        &:hover {
            background-color: var(--black-primary);

            &:not(:disabled) {
                opacity: 1;
            }
        }

        &:active {
            box-shadow: 0 2px 0 0 var(--white), inset 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
            background-color: var(--turquoise);
        }

        & svg {
            fill: var(--black-primary);
            height: calc(1.2em * var(--size-multiplier));
            width: calc(1.2em * var(--size-multiplier));
        }
    }

    & .splide__arrow--prev svg {
        transform: unset;
    }

    & .splide__arrow--prev,
    & .splide__arrow--next {
        transition: opacity .2s;
        opacity: 1;
    }

    & .splide__arrow--prev[disabled],
    & .splide__arrow--next[disabled] {
        opacity: 0;
    }
}

.splide .splide__pagination {
    & .splide__pagination__page.is-active {
        background: var(--turquoise)
    }
}

@media screen and (pointer: fine) {
    .floating-controls-container--on-hover>.floating-controls-container__control {
        transform: translateY(0);
    }
}

/** forms */

.regular-checkbox {
    -webkit-appearance: none;
    background-color: transparent;
    border: solid 0.0625rem #e1e1e1;
    border-radius: 0.125rem;
    display: inline-block;
    position: relative;
    width: 0.9375rem;
    height: 0.9375rem;

    &:checked::after {
        content: "\2714";
        font-size: 0.875rem;
        position: absolute;
        top: -0.3125rem;
        left: 0.0625rem;
        color: var(--black-primary);
    }
}

.form-control .input,
.form-control .textarea {
    position: relative;
    border-radius: 0.25rem;

    &:focus {
        box-shadow: 0 0 0 0.0625rem var(--black-primary);
    }
}

.form-control .form-control label.h6 span {
    font-weight: normal;
}


/** shopify-section--announcement-bar / mobil-announcement */

.shopify-section--announcement-bar .prose:not(.prose--tight) :where(:not(meta, span) + *) {
    margin-block-start: 0 !important
}

.announcement-bar {
    column-gap: 2rem;

    @media screen and (max-width: 1080px) {
        padding-inline-start: 1rem;
        padding-inline-end: 1rem;
    }

    @media screen and (max-width: 1000px) {
        column-gap: 1rem;
    }

    & .announcement-bar__carousel .prose>* {
        padding: 0.3125rem 0;
    }

    & carousel-prev-button,
    & carousel-next-button {
        & button {
            opacity: 0;
            transition: opacity .2s ease-in-out;

            & svg {
                max-height: 0.875rem;
            }
        }
    }

    & .grid-wrapper {
        align-items: center;
        gap: 1rem;

        & p:first-child {
            font-size: var(--announcement-bar-font-size);
        }
    }

    & .content.mobil {
        display: none;
        align-items: center;

        & p {
            font-size: var(--announcement-bar-font-size);
        }
    }

    &:hover {

        & carousel-prev-button,
        & carousel-next-button {
            button {
                opacity: 1;
            }
        }
    }
}

.announcement-bar .countdown-wrapper {
    display: flex;
    align-items: center;

    & p.pre-count {
        font-size: var(--announcement-bar-font-size);
        margin-bottom: 0;
        margin-right: 0.25rem;
        min-width: max-content;
    }

    & .countdown-container {
        display: grid;
        grid-template-columns: repeat(4, auto);
        justify-content: center;
        flex: 0 1 auto;
        gap: 0.5rem;

        @media screen and (max-width: 999px) {
            gap: 0.25rem;
        }

        & p {
            display: flex;
            gap: 0.375rem;
            margin-bottom: 0;
            align-items: center;
            font-size: 0.625rem;
            font-weight: 600;
            text-transform: uppercase;

            & span {
                min-width: 2rem;
                display: flex;
                justify-content: end;
                font-size: 1.625rem;
                font-weight: 600;
                text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
            }
        }
    }
}

#mobil-announcement {
    --announcement-bar-font-size: 1rem;

    & .color-scheme {
        background-color: rgb(var(--background-sm));
        background-image: var(--background-gradient-sm);
        color: rgb(var(--text-color-sm));
        border-color: rgb(var(--border-color-sm));
    }

    @media screen and (max-width: 440px) {
        --announcement-bar-font-size: 0.9375rem;
    }

    @media screen and (max-width: 360px) {
        --announcement-bar-font-size: 0.875rem;
    }

    & .announcement-bar {
        padding-block: 0;

        &:hover {
            .contents button {
                opacity: 1;
            }
        }

        & .announcement-bar__carousel {
            max-width: 100%;

            & .prose.cd {
                visibility: visible !important;
                margin: 1.5rem auto 1.75rem;

                .grid-wrapper {
                    grid-template-columns: auto !important;
                    justify-items: center;
                    row-gap: .5rem;

                    & .countdown-wrapper {
                        margin-block-start: 0;

                        @media screen and (max-width: 360px) {
                            flex-wrap: wrap;
                            justify-content: center;

                            & .pre-count {
                                width: 100%;
                                text-align: center;
                                margin-right: 0;
                            }
                        }

                        & .countdown-container {
                            margin-block-start: 0;

                            & p {
                                margin-block-start: 0 !important;

                                & span {
                                    text-shadow: none;
                                }
                            }
                        }
                    }

                    & .button {
                        margin-block-start: .5rem;
                    }
                }
            }

            & .prose.mess .grid-wrapper {
                grid-template-columns: auto !important;
                justify-items: center;
                row-gap: .5rem;

                & .button {
                    margin-block-start: .5rem;
                }
            }
        }

        & button svg path {
            stroke: rgb(var(--text-color));
        }

        @media screen and (max-width: 440px) {

            & carousel-prev-button,
            & carousel-next-button {
                display: none;
            }
        }
    }
}

/** header */

.shopify-section--header {
    background: var(--white);
    box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.1);
    --header-grid: "primary-nav logo secondary-nav"/ minmax(0, auto) auto minmax(0, 1fr) !important;

    & .header {
        --header-padding-block: 1rem;
    }

    & .header__secondary-nav {
        column-gap: 0.75rem;

        @media screen and (min-width: 700px) {
            column-gap: 0.9375rem;
        }
    }

    & .header__secondary-nav .header__search-link {
        margin-right: 1.25rem;
        position: relative;
        display: flex;
        align-items: center;

        & .search {
            display: grid;
            grid-template-columns: auto auto;
            gap: 0.5rem;
            align-items: center;

            & span.main-nav {
                font-size: 0.8125rem;

                &:hover {
                    text-decoration: underline;
                }
            }
        }

        &::after {
            content: "|";
            position: absolute;
            right: -1.375rem;
            color: rgba(0, 0, 0, .1);
        }

        @media screen and (max-width:699px) {
            &::after {
                right: -1.17rem;
            }
        }

        @media screen and (max-width:460px) {
            margin-right: 0;

            & .search {
                display: inline;
            }

            &::after, & span.main-nav {
                display: none;
            }
        }
    }

    & .header__secondary-nav .header__ki-link {
        margin-right: 1.25rem;
        position: relative;
        display: flex;
        align-items: center;

        & .ki-assist {
            background-image: linear-gradient(270deg, var(--kiTextColor1) 1%, var(--kiTextColor2) 35%, var(--kiTextColor3) 67%, var(--kiTextColor4) 99%);
            font-family: var(--heading-font-family);
            font-size: 1.0625rem;
            font-weight: 600;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: flex;
            align-items: center;
            padding-right: 1.75rem;
            transition: --kiTextColor1 .5s, --kiTextColor2 .5s, --kiTextColor3 .5s, --kiTextColor4 .5s;

            &:hover {
                --kiTextColor1: #9766ff;
                --kiTextColor2: #566cc7;
                --kiTextColor3: #1fc4ad;
                --kiTextColor4: #3ed300;

                &::after {
                    transform: scale(1.15);
                }
            }

            &::after {
                content: '';
                position: absolute;
                right: 0;
                width: 1.375rem;
                height: 1.1875rem;
                background: url(/cdn/shop/files/icon-ai-white.svg?v=1738767509) center / contain no-repeat;
                transition: transform .5s;
            }
        }

        &::after {
            content: "|";
            position: absolute;
            right: -1.375rem;
            color: rgba(0, 0, 0, .1);
        }

        @media screen and (max-width: 699px) {
            &::after {
                right: -1.12rem;
            }
        }

        @media screen and (max-width: 420px) {
            margin-right: 0;

            &::after {
                display: none;
            }

            & .ki-assist span {
                display: none;
            }
        }
    }

    @media screen and (max-width: 960px) {
        --header-grid: "primary-nav logo secondary-nav"/ minmax(0, auto) auto minmax(0, 1fr) !important;
    }
}



@property --kiTextColor1 {
    syntax: '<color>';
    initial-value: #3ed300;
    inherits: false;
}

@property --kiTextColor2 {
    syntax: '<color>';
    initial-value: #1fc4ad;
    inherits: false;
}

@property --kiTextColor3 {
    syntax: '<color>';
    initial-value: #566cc7;
    inherits: false;
}

@property --kiTextColor4 {
    syntax: '<color>';
    initial-value: #9766ff;
    inherits: false;
}

.header-search::part(content) {
    border-radius: 0 0 0.5rem 0.5rem;
}

.predictive-search__products .md-max\:hidden {
    height: 100%;
}

@media screen and (min-width: 1000px) {
    .header {
        max-width: 93.5rem;
        margin: 0 auto;
    }
}

@media screen and (max-width: 340px) {
    .header__logo-image {
        max-width: 8.25rem;
    }
}

/** header-sidebar */

.header-sidebar.drawer {
    & .header-sidebar__nested-linklist {
        gap: 1.625rem;

        & a.dropdown-level-2 {
            position: relative;
            --icon-size-multiplier: .7;
            padding-left: 3.375rem;
            display: flex;
            align-items: center;
            transition: color .2s ease-in-out;

            &.active {
                font-weight: 600;
            }

            &:not(.active):hover {
                color: var(--turquoise);
            }

            &::before {
                content: "";
                position: absolute;
                background: var(--icon-url) center / contain no-repeat;
                height: calc(var(--icon-height) * var(--icon-size-multiplier));
                width: calc(var(--icon-width) * var(--icon-size-multiplier));
                left: 1.5rem;
                transform: translate(calc(-1 * (var(--icon-width) * var(--icon-size-multiplier)) / 2));
            }
        }
    }

    & .header-sidebar__promo .promo-item .overflow-hidden {
        border-radius: 8px;
    }

    & .header-sidebar__footer {
        display: grid;
        justify-content: end;
    }
}

/** main-menu */

.header__primary-nav-item,
.header__primary-nav-item .block.h6 {
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--black-primary);
    text-transform: uppercase;
}

.header__primary-nav-item {
    &::before {
        font-family: var(--heading-font-family);
        font-size: 1rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-transform: uppercase;
        height: 0.3125rem;
        background: var(--turquoise);
    }

    &:not(.subs)::before {
        display: none;
    }

    &:not(.active):hover .block.h6 {
        color: var(--turquoise);
    }

    &.active .block.h6 {
        font-weight: 600;
    }

    &.subs {
        display: inline-flex;
        align-items: center;
        flex-direction: row-reverse;

        & .arrow::after {
            --icon-width: 0.5rem;
            --icon-height: calc(var(--icon-width) / 2);
            content: '';
            position: absolute;
            width: var(--icon-width);
            height: var(--icon-height);
            background: url(/cdn/shop/files/icon-mainmenu-dopdown.svg?v=1738659983) center / contain no-repeat;
            transform: translateX(0.3125rem);
            transition: transform .2s ease-in-out;
        }

        &:hover .arrow::after {
            transform: translateX(0.3125rem) rotate(180deg);
        }
    }
}

.header__third-nav {
    flex-wrap: wrap;
    align-items: center;
    gap: .625rem 1.25rem;
    display: flex;
}

@media screen and (min-width: 1131px) {
    .header__primary-nav {
        column-gap: 3.125rem;
    }

    .header__third-nav {
        column-gap: 1.875rem;
    }
}

@media screen and (max-width: 1320px) {
    .header__primary-nav {
        column-gap: 1.875rem;
    }
}

@media screen and (max-width: 1230px) {
    .header__primary-nav, .header__third-nav {
        column-gap: 1.75rem;
    }
}

/** Mega Menü */

.mega-menu {
    min-height: var(--mega-menu-min-height);
    position: fixed;
    border-block-end-width: 0;
    box-shadow: 0 0.25rem 0.4375rem 0 rgba(0, 0, 0, 0.15);
    z-index: -1;

    &::before {
        content: '';
        position: absolute;
        top: -0.1875rem;
        width: 100%;
        height: 0.1875rem;
        box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.1);
    }

    & .mega-menu__linklist.unstyled-list {
        gap: 1.375rem;
        flex: 0 1 49.375rem;
        justify-content: flex-start;
    }

    & .mega-menu__linklist {
        flex-direction: column;
        position: relative;
        --column-width: 13.75rem;
        --column-height: 2.8125rem;
        gap: 1.25rem;

        @media screen and (max-width: 1380px) {
            --column-width: 10rem;
        }

        &::after {
            position: absolute;
            content: '';
            height: calc(var(--mega-menu-min-height) - 5rem);
            left: var(--column-width);
            top: 0;
            border-left: 0.0625rem solid rgba(0, 0, 0, 0.1);
        }

        & li {
            & a.h6 {
                position: relative;
                padding-left: 0.9375rem;
                font-family: var(--heading-font-family);
                font-size: 1.125rem;
                font-weight: normal;
                font-stretch: normal;
                font-style: normal;
                line-height: 1.78;
                letter-spacing: normal;
                color: var(--black-primary);

                &:hover,
                &:active {
                    font-weight: 600;
                }

                &:active {
                    text-decoration: underline;
                }

                &::after {
                    content: "";
                    position: absolute;
                    top: calc(50% - (var(--column-height) / 2));
                    width: calc(var(--column-width) + 0.0625rem);
                    height: var(--column-height);
                    left: 0;
                }

                &:hover::after,
                &:active::after {
                    border-top: 0.0625rem solid #e5e5e5;
                    border-bottom: 0.0625rem solid #e5e5e5;
                    border-left: 0.0625rem solid #e5e5e5;
                    border-radius: 0.5rem 0 0 0.5rem;
                    z-index: +1;
                }
            }

            & ul {
                position: absolute;
                display: block;
                visibility: hidden;
                transition: visibility 0s, opacity .5s ease-in-out;
                opacity: 0;
                height: 0;
                overflow: hidden;

                & li:hover a:not(.active) {
                    color: var(--turquoise);
                }

                & li:not(:last-child) {
                    margin-bottom: 0.25rem;
                }

                & li a {
                    position: relative;
                    display: flex;
                    align-items: center;
                    padding-left: 4.625rem;
                    --icon-size-multiplier: 1;

                    @media screen and (max-width: 1320px) {
                        padding-left: 4rem;
                        --icon-size-multiplier: .9;
                    }

                    &:active,
                    &.active {
                        font-weight: bold;
                        color: var(--black-primary);
                    }

                    &::before {
                        content: '';
                        position: absolute;
                        background: var(--icon-url) center / contain no-repeat;
                        height: calc(var(--icon-height) * var(--icon-size-multiplier));
                        width: calc(var(--icon-width) * var(--icon-size-multiplier));
                        left: 1.875rem;
                        transform: translateX(calc(-1 * (var(--icon-width) / 2)));
                    }
                }
            }

            &.v-stack {
                display: contents;
                position: absolute;

                & a.h6 {
                    max-width: 14rem;
                }
            }

            &.v-stack.show-all a {
                margin-top: 1.875rem;
                font-size: 0.9375rem;
                font-weight: 500;
                line-height: 1.47;
                text-decoration: underline;
                text-underline-offset: 0.375rem;
                text-transform: none;

                &::after {
                    border-top: 0.0625rem solid #e5e5e5;
                    border-bottom: none;
                    border-left: none;
                    border-radius: unset;
                }

                &:hover {
                    color: var(--turquoise);
                }

            }

            & a+ul {
                row-gap: 2.5rem;
                overflow: visible;
            }

            & a.h6:hover+ul,
            & a.h6:active+ul,
            & ul:hover,
            & a.h6.default-selected+ul,
            & a.h6.active+ul,
            & a.h6.focus+ul {
                --overlap-left: 5rem;
                --overlap-top: 2rem;
                display: grid;
                grid-template-columns: repeat(2, minmax(min-content, 15rem));
                column-gap: 2.5rem;
                left: calc(var(--column-width) - var(--overlap-left) + 2rem);
                padding-left: var(--overlap-left);
                padding-top: var(--overlap-top);
                width: calc(100% - var(--overlap-left));
                top: calc(-1 * var(--overlap-top) + .25rem);
                height: 100%;
                min-height: calc(var(--mega-menu-min-height) + var(--overlap-top) - 5rem);
                visibility: visible;
                opacity: 1;

                @media screen and (max-width: 1430px) {
                    column-gap: 1.5rem;
                }

                @media screen and (max-width: 1380px) {
                    --overlap-left: 3rem;
                }

                @media screen and (max-width: 1320px) {
                    grid-template-columns: repeat(2, minmax(min-content, 14rem));
                    column-gap: .8rem;
                }
            }
        }
    }

    & .mega-menu__promo {
        position: relative;
        column-gap: 1.875rem;

        @media screen and (max-width: 1260px) {
            column-gap: 1.5rem;
        }

        & .promo-item {
            min-width: 14.75rem;
            max-width: 14.75rem;

            @media screen and (max-width: 1380px) {
                min-width: 14rem;
                max-width: 14rem;
            }

            @media screen and (max-width: 1260px) {
                min-width: 13rem;
                max-width: 13rem;
            }

            & .overflow-hidden {
                border-radius: 0.5rem;
            }
        }
    }

    &.only-first {
        & .mega-menu__linklist {
            display: grid;
            row-gap: 2.5rem;
        }

        & .mega-menu__linklist::after {
            display: none;
        }

        & .mega-menu__linklist li.v-stack a.h6 {
            max-width: unset;
            display: flex;
            align-items: center;
            padding-left: 4.625rem;
            --icon-size-multiplier: 1;

            @media screen and (max-width: 1320px) {
                --icon-size-multiplier: .9;
            }

            &:hover::after, &:active::after {
                border-top: none;
                border-bottom: none;
                border-left: none;
            }

            &::before {
                content: "";
                position: absolute;
                background: var(--icon-url) center / contain no-repeat;
                height: calc(var(--icon-height) * var(--icon-size-multiplier));
                width: calc(var(--icon-width) * var(--icon-size-multiplier));
                left: 1.875rem;
                transform: translate(calc(-1 * (var(--icon-width) / 2)));
            }
        }

        & .mega-menu__linklist.unstyled-list li a.h6.default-selected:not(:hover) {
            font-weight: inherit;
        }

        & .mega-menu__linklist.unstyled-list li a.h6.default-selected::after {
            display: none;
        }
    }
}

.mega-menu .mega-menu__linklist.unstyled-list li a.h6:has(+ ul:hover),
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.focus,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.active,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.default-selected {
    font-weight: 600;
}

.mega-menu .mega-menu__linklist.unstyled-list li a.h6:has(+ ul:hover)::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.focus::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.active::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.default-selected::after {
    border-top: 0.0625rem solid #e5e5e5;
    border-bottom: 0.0625rem solid #e5e5e5;
    border-left: 0.0625rem solid #e5e5e5;
    border-radius: 0.5rem 0 0 0.5rem;
    z-index: +1;
}

.mega-menu .mega-menu__linklist.unstyled-list li a.h6:has(+ ul):hover::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6:has(+ ul):active::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6:has(+ ul:hover)::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.focus::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.active::after,
.mega-menu .mega-menu__linklist.unstyled-list li a.h6.default-selected::after {
    border-right: 0.0625rem solid var(--white);
    z-index: +1;
}

.header-sidebar__promo .promo-item {
    background: var(--global);

    & .promo-teaser {
        padding-bottom: 2rem;
    }
}

/** home-slideshow */

@supports (height: 100svh) {
    .shopify-section:first-child .content-over-media--fill {
        --content-over-media-height: clamp(32rem, 125vw, calc(100svh - (var(--announcement-bar-height, 0px) + var(--header-height, 0px)) - 12rem));
    }
}

.shopify-section--slideshow .slideshow__slide .content-over-media> :not(img, video, iframe, svg, video-media, picture, style) {
    max-width: var(--default-container-width);
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 auto;

    @media screen and (min-width: 700px) {

        &.sm\:place-self-start,
        &.sm\:place-self-start-center,
        &.sm\:place-self-start-end {
            align-items: flex-start;
        }

        &.sm\:place-self-start,
        &.sm\:place-self-center-start,
        &.sm\:place-self-end-start {
            justify-content: flex-start;
        }

        &.sm\:place-self-start-center,
        &.sm\:place-self-center,
        &.sm\:place-self-end-center {
            justify-content: center;
        }

        &.sm\:place-self-start-end,
        &.sm\:place-self-center-end,
        &.sm\:place-self-end {
            justify-content: flex-end;
        }

        &.sm\:place-self-center-start,
        &.sm\:place-self-center,
        &.sm\:place-self-center-end {
            align-items: center;
        }

        &.sm\:place-self-end-start,
        &.sm\:place-self-end-center,
        &.sm\:place-self-end {
            align-items: flex-end;
        }
    }

    @media screen and (max-width: 699px) {

        &.place-self-start-center,
        &.place-self-center,
        &.place-self-end-center {
            justify-content: center;
        }

        &.place-self-start-center {
            align-items: flex-start;
        }

        &.place-self-center {
            align-items: center;
        }

        &.place-self-end-center {
            align-items: flex-end;
        }
    }
}

.shopify-section--slideshow .slideshow__slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--background));
}

.shopify-section--slideshow .slideshow__slide-content .prose {
    padding: 2.8125rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    max-width: calc(var(--content-max-width) + 5rem);
    position: relative;
    overflow: hidden;
    background-image: none !important;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(var(--background));
        background-image: var(--background-gradient);
        opacity: var(--content-background-opacity, 1);
        z-index: -1;
    }
}

.shopify-section--slideshow .slideshow__slide-content {
    @media screen and (max-width: 820px) {
        & .prose {
            padding: 2rem;
            max-width: calc(var(--content-max-width) + 4rem);

            & .h1-hero {
                font-size: 3rem;

                @media screen and (max-width: 480px) {
                    font-size: 2.6rem;
                }

                @media screen and (max-width: 380px) {
                    font-size: 2.2rem;
                }
            }

            @media screen and (max-width: 699px) {
                backdrop-filter: blur(.3rem);
                -webkit-backdrop-filter: blur(.3rem);

                &::before {
                    background: rgb(var(--mobil-background));
                    background-image: var(--background-gradient);
                    opacity: var(--content-background-mobil-opacity, 1);
                }

            }
        }
    }
}

/** shopify-section--lumaland-guide */

.shopify-section--lumaland-guide {
    & .section-spacing {
        padding-block-end: 1.25rem;
    }

    & .grid-section.sec-header {
        --header-gap: 3.5rem;
        display: grid;
        grid-template-columns: max-content auto;
        justify-content: center;
        align-items: center;
        gap: var(--header-gap);

        & .filter-bar {
            position: relative;
            display: grid;
            align-items: center;
            gap: 1.25rem;
            grid-template-columns: max-content auto;

            &::before {
                content: '';
                position: absolute;
                height: 1.6875rem;
                border-left: 0.0625rem solid rgba(0, 0, 0, 0.1);
                left: calc((var(--header-gap) / 2) * -1);
            }

            & .btn-grp {
                display: flex;
                gap: 1.25rem;
                align-items: center;

                & .button.filter-btn {
                    color: var(--black-primary);
                    background: var(--white);
                    box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.08);
                    font-weight: 500;
                    font-size: 0.8125rem;
                    height: 2.25rem;
                    min-width: unset;
                    gap: 0.625rem;
                    padding: 0.25rem 1.375rem 0.25rem 1rem;
                    position: relative;

                    &::after {
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        border: solid 0.0625rem var(--black-primary);
                        border-radius: 1.3125rem;
                        transition: all .2s ease-in-out;
                    }

                    &:not(.active):hover {
                        color: var(--turquoise);
                        box-shadow: 0 0.0625rem 0.1875rem 0 rgba(17, 77, 76, 0.2);
                    }

                    &:not(.active):hover::after {
                        border: solid 0.125rem var(--black-primary);
                    }

                    & .icon-wrapper img {
                        max-height: 1.75rem;
                    }
                }

                & .button.filter-btn:active,
                & .button.filter-btn.active {
                    font-weight: bold;
                    box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16), inset 0 0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.42);

                    &::after {
                        border: solid 0.0625rem rgba(0, 0, 0, 0.1);
                    }
                }
            }
        }


        @media screen and (max-width: 960px) {
            grid-template-columns: auto;
            row-gap: 2rem;

            & h2.h2 {
                text-align: center;
            }

            & .filter-bar::before {
                display: none;
            }

            @media screen and (max-width: 640px) {
                & .filter-bar {
                    grid-template-columns: auto;
                    justify-content: center;

                    & p.h6-muted {
                        text-align: center;
                    }
                }
            }
        }
    }

    & .splide.color-chooser,
    & .splide.item_chooser {
        max-width: var(--max-width);
        margin: 0 auto;
    }

    & .splide.color-chooser {

        @media screen and (max-width: 820px) {
            padding-top: 1rem;
        }

        & .splide__slide {
            padding-top: 0.625rem;

            @media screen and (max-width: 820px) {
                padding-top: 0.5rem;
            }

            @media screen and (max-width: 440px) {
                padding-top: 1rem;
            }

            & .color-swatch {
                --swatch-size: 4.5rem;
                --swatch-offset: 0.25rem;

                @media screen and (max-width: 820px) {
                    --swatch-size: 4rem;
                }

                @media screen and (max-width: 500px) {
                    --swatch-size: 3.2rem;
                }

                @media screen and (max-width: 440px) {
                    --swatch-size: 6rem;
                }

                &:not(:active):hover::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: white;
                    z-index: -1;
                    border-radius: 100%;
                    box-shadow: 0.125rem 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);
                }

                &:active::before {
                    content: "";
                    position: absolute;
                    left: 0.25rem;
                    top: 0.25rem;
                    width: calc(100% - 0.5rem);
                    height: calc(100% - 0.5rem);
                    border-radius: 100%;
                    box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, 0.25), inset 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.25);
                }

                &[data-tooltip="Weiß"] {
                    border: none;
                    background: #fff;
                    box-shadow: 0.125rem 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);
                    width: calc(var(--swatch-size) - (2 * var(--swatch-offset)));
                    height: calc(var(--swatch-size) - (2 * var(--swatch-offset)));
                    margin: auto;
                    margin-top: 0.125rem;
                }
            }
        }

    }

    & .splide.item_chooser {
        padding-top: 1.875rem;

        & .splide__slide {
            padding: 0.625rem;
            display: grid;
            justify-content: center;
            align-items: center;

            & .filter-item {
                --item-size: 8.75rem;
                position: relative;
                min-height: var(--item-size);
                width: var(--item-size);
                border: solid 0.0625rem transparent;
                border-radius: 0.75rem;
                box-shadow: 0 0.125rem 0.4375rem 0 rgba(0, 0, 0, 0.1);
                background-color: var(--white);
                overflow: hidden;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;

                @media screen and (max-width: 520px) {
                    --item-size: 8rem;
                }

                &:hover {
                    box-shadow: none;
                }

                &::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    border-radius: 0.75rem;
                    border: solid 0.125rem transparent;
                    transition: all .2s ease-in-out;
                }

                &:not(:active):hover::after {
                    box-shadow: 0 0.125rem 0.25rem 0 rgba(12, 82, 81, 0.15);
                    border-color: var(--black-primary);
                }

                &:active {
                    box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16), inset 0 0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.42);
                    border: solid 0.0625rem rgba(0, 0, 0, 0.1);
                }
            }

            & .filter-item.style-icon .img-wrapper {
                margin-top: 1.375rem;
                z-index: +1;

                @media screen and (max-width: 520px) {
                    transform: scale(.9);
                    margin-top: .8rem;
                }
            }

            & .filter-item.style-full .img-wrapper {
                max-height: 6.5625rem;
                width: 100%;
                z-index: +1;

                & img {
                    object-fit: cover;
                    height: 100%;
                    width: 100%;
                }

                @media screen and (max-width: 520px) {
                    max-height: 5.8rem;
                }
            }

            & .filter-item p.h6-center {
                align-self: flex-end;
                width: 100%;
                margin-bottom: 0.625rem;
            }
        }
    }

    & .splide__arrows .splide__arrow--prev {
        left: -5rem;
    }

    & .splide__arrows .splide__arrow--next {
        right: -5rem;
    }

    @media screen and (max-width: 1230px) {
        & .splide__arrows .splide__arrow--prev {
            left: -4rem;
        }

        & .splide__arrows .splide__arrow--next {
            right: -4rem;
        }
    }

    @media screen and (max-width: 999px) {
        & .filter_content_round .splide__arrows .splide__arrow--prev {
            left: -3rem;
        }

        & .filter_content_round .splide__arrows .splide__arrow--next {
            right: -3rem;
        }
    }

    @media screen and (max-width: 980px) {
        & .circle-button {
            --size-multiplier: .8;
        }

        & .filter_content_square .splide__arrows .splide__arrow--prev {
            left: calc(-1 * (var(--arrow-size) * var(--size-multiplier) / 2));
        }

        & .filter_content_square .splide__arrows .splide__arrow--next {
            right: calc(-1 * (var(--arrow-size) * var(--size-multiplier) / 2));
        }
    }

    @media screen and (max-width: 820px) {

        & .filter_content_round .splide__arrows .splide__arrow--prev,
        & .filter_content_round .splide__arrows .splide__arrow--next {
            transform: translateY(calc(-50% + 1rem));
        }
    }

    @media screen and (max-width: 720px) {
        & .container {
            margin-inline: 0 !important;

            & .grid-section.sec-header {
                margin-inline: 1rem;
            }

            & .splide.filter-blocks {
                overflow: hidden;
            }
        }

        & .filter_content_round .splide__arrows .splide__arrow--prev {
            left: -2.2rem;
        }

        & .filter_content_round .splide__arrows .splide__arrow--next {
            right: -2.2rem;
        }
    }
}

@media screen and (pointer: fine) {
    .shopify-section--lumaland-guide .splide.color-chooser [data-tooltip]::after {
        --tooltip-offset: -0.9375rem;
        border-radius: 0.9375rem;
        box-shadow: 0.125rem 0.125rem 0.4375rem #0000001a;
        background-color: var(--white);
        font-size: 0.625rem;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: var(--black-primary);
        text-transform: uppercase;
        min-height: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 5.625rem;
    }
}

/** shopify-section--featured-collections */

.shopify-section--featured-collections {
    & .container {
        margin-inline-start: 4rem;
        margin-inline-end: 4rem;
    }

    & .h2-center strong {
        position: relative;
        font-weight: inherit;

        &::after {
            content: "";
            position: absolute;
            height: .5rem;
            border-radius: 0.125rem;
            background: rgba(255, 130, 89, .25);
            bottom: .5rem;
            left: 0;
            width: 100%;
            z-index: -1;
        }
    }

    & .container.side-block {
        --side-block-width: 33.75rem;
        display: grid;
        align-items: center;
        gap: 1.25rem;

        & .teaser-block {
            position: relative;
            height: 100%;
            max-height: var(--side-block-width);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            overflow: hidden;

            & .image-wrapper,
            & .video-wrapper {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;

                & img,
                & video {
                    object-position: center;
                    object-fit: cover;
                    height: 100%;
                    width: 100%;
                    opacity: .6;
                    transition: transform 0.3s ease, -webkit-filter 0.2s ease;
                }
            }

            & .video-wrapper {
                padding-bottom: 0;
            }

            & .teaser-content {
                z-index: +1;
                position: relative;
                padding: 1.25rem;
                text-align: center;

                & p.h4-center-inverse {
                    margin-bottom: 0.3125rem;
                    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
                }

                & h2.h2-category {
                    margin-bottom: 2.5rem;
                    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
                }
            }
        }

        & .teaser-block:hover .image-wrapper img,
        & .teaser-block:hover .video-wrapper video {
            -webkit-filter: blur(.375rem);
            filter: blur(.375rem);
            transform: scale(1.05);
        }

        @media screen and (max-width: 1640px) {
            --side-block-width: 30rem;
        }
    }
}

@media screen and (pointer: fine) {
    .shopify-section--featured-collections .container .floating-controls-container__control:first-child {
        inset-inline-start: -2.75rem;
    }

    .shopify-section--featured-collections .container .floating-controls-container__control:last-child {
        inset-inline-end: -2.75rem;
    }
}

@media screen and (min-width: 1481x) {
    .shopify-section--featured-collections .container.side-block {
        min-height: 33.125rem;
    }
}

@media screen and (max-width: 1360px) {
    .shopify-section--featured-collections .container.side-block {
        --side-block-width: 24rem;
    }

    .shopify-section--featured-collections .container.side-block .product-list {
        --product-list-default-column-gap: 1rem;
    }
}

@media screen and (max-width: 1240px) {
    .shopify-section--featured-collections .container.side-block {
        --side-block-width: 26rem;
    }
}

@media screen and (max-width: 1140px) {
    .shopify-section--featured-collections .container:not(.side-block) .product-list.product-list--carousel {
        --product-list-calculated-column-gap: .25rem;
    }
}

@media screen and (max-width: 1040px) {
    .shopify-section--featured-collections .container.side-block {
        --side-block-width: 24rem;
    }
}

@media screen and (max-width: 999px) {
    .shopify-section--featured-collections .container.side-block {
        grid-template-columns: 1fr !important;
    }

    .shopify-section--featured-collections .container.side-block .teaser-block {
        min-height: 17.5rem;
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .shopify-section--featured-collections .container.side-block .section-stack {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
}

@media screen and (max-width: 860px) {
    .shopify-section--featured-collections .container {
        margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
        margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
    }

    .shopify-section--featured-collections .container .floating-controls-container__control:first-child {
        inset-inline-start: -0.75rem;
    }

    .shopify-section--featured-collections .container .floating-controls-container__control:last-child {
        inset-inline-end: -0.75rem;
    }

    .shopify-section--featured-collections .floating-controls-container__control {
        inset-block-start: calc(40% - 1.5625rem);
    }
}

@media screen and (max-width: 480px) {
    .shopify-section--featured-collections .product-list:not(.product-list--carousel) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 440px) {
    .shopify-section--featured-collections .product-list:not(.product-list--carousel) {
        column-gap: 0;
    }
}

@media screen and (max-width: 400px) {
    .shopify-section--featured-collections .container.side-block .product-list--carousel {
        --product-list-card-width: min(18.75rem, 80%);
    }
}

@media screen and (max-width: 360px) {
    .shopify-section--featured-collections .product-list:not(.product-list--carousel) {
        grid-template-columns: 1fr;
    }
}

/** product-item */

.product-card {
    --bottom-distance: 1.9375rem;
    --card-distance: 1.25rem;

    @media screen and (max-width: 480px) {
        --card-distance: .75rem;
    }

    padding: var(--card-distance) var(--card-distance) calc(var(--card-distance) + var(--bottom-distance) + 2.625rem + 1.25rem) var(--card-distance);
    position: relative;
    z-index:+1;
    justify-content: flex-start;
    min-height: 100%;

    &::after {
        position: absolute;
        content: "";
        left: var(--card-distance);
        top: var(--card-distance);
        right: var(--card-distance);
        bottom: var(--card-distance);
        border-radius: 0.375rem;
        background: var(--white);
        z-index: -1;
    }

    &:hover::after {
        box-shadow: 0 0.25rem 1.5625rem 0 rgba(0, 0, 0, 0.12);
    }

    & .product-card__figure {
        border-radius: 0.375rem 0.375rem 0 0;
        overflow: hidden;

        /** badges */

        & .badge-list .badge {
            height: 1.5625rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.7813rem;
            padding: 0 0.75rem;

            &.badge--custom {
                color: var(--white);

                &.badge--bestseller,
                &.badge--topseller {
                    background: var(--black-primary);
                }

                &.badge--neu,
                &.badge--neuheit {
                    background: var(--apple-green);
                }

                &.badge--im-angebot {
                    background: rgb(var(--on-sale-badge-background));
                }
            }
        }
    }

    & .product-card__info {
        padding-left: .5rem;
        padding-right: .5rem;

        & .price-list {
            margin-top: 0.25rem;
            position: relative;
            column-gap: 1.25rem;

            & sale-price.price-grid {
                position: relative;
            }
        }

        & .text-small-center-muted {
            margin-block-start: 1.25rem;
        }

        & .button {
            position: absolute;
            bottom: calc(var(--bottom-distance) + var(--card-distance));

            @media screen and (max-width: 440px) {
                font-size: .75rem;
                padding: .65rem 1rem;
            }
        }

        /** Product Item Color Swatch */

        & fieldset {
            max-width: 12.5rem;
            margin-top: 0.125rem;

            & .color-swatch {
                --swatch-size: 1.1875rem;
                --swatch-offset: 0.1875rem;
                box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.15);
            }

            & .color-swatch.more {
                position: relative;
                box-shadow: none;
                border: solid 0.0625rem #d4d4d4;

                &::after {
                    --icon-padding: 0.1875rem;
                    content: "";
                    position: absolute;
                    top: var(--icon-padding);
                    left: var(--icon-padding);
                    width: calc(100% - (var(--icon-padding) * 2));
                    height: calc(100% - (var(--icon-padding) * 2));
                    border-radius: 100%;
                    background: url(/cdn/shop/files/icon-popover-plus-grey.svg?v=1667918099) center / contain no-repeat;
                }
            }
        }

        & fieldset.visible {

            & .color-swatch.hidden {
                display: grid;
            }

            & .color-swatch.more::after {
                background: url(/cdn/shop/files/icon-popover-minus-grey.svg?v=1667979994) center / contain no-repeat;
            }
        }

        /** prices */

        & .price-list sale-price::after {
            content: "*";
            right: -0.625rem;
            position: absolute;
        }

        & .price-list compare-at-price {
            text-decoration: line-through;
            font-size: 1.125rem;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            color: var(--grey);
        }
    }
}

@media screen and (min-width: 700px) {
    .product-card__figure>.badge-list {
        inset-block-start: 0.625rem;
        inset-inline-end: 0.625rem;
        inset-inline-start: unset;
        right: 0;
        left: unset;
        align-items: flex-end;
    }
}

@media screen and (max-width: 699px) {
    .product-card__figure>.badge-list {
        right: 0.75rem;
        left: unset;
        top: 0.75rem;
    }
}

/** shopify-section--before-after-image */

.shopify-section--before-after-image .before-after--horizontal {
    & .before-after__before-image .before-after__content-wrapper {
        justify-items: center;
        inset-inline-start: 0;
        inset-block-end: 4.875rem;
        width: 50%;
        text-align: center;
    }

    & .before-after__after-image .before-after__content-wrapper {
        text-align: center;
        justify-items: center;
        inset-block-end: 4.875rem;
        inset-inline-end: 0;
        width: 50%;
    }

    & .before-after__before-image .before-after__content-wrapper,
    & .before-after__after-image .before-after__content-wrapper {
        & .h1-hero {
            text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);

            @media screen and (max-width: 860px) {
                font-size: 3rem;
            }

            @media screen and (max-width: 560px) {
                font-size: 2.6rem;
            }
        }
    }

    @media screen and (max-width: 999px) {
        .before-after__before-image .before-after__content-wrapper {
            justify-items: left;
            inset-inline-start: 2rem;
        }

        .before-after__after-image .before-after__content-wrapper {
            justify-items: right;
            inset-inline-end: 2rem;
        }
    }

    & .before-after__cursor {
        --icon-size: 4.25rem;

        @media screen and (max-width: 860px) {
            --icon-size: 4rem;
        }

        inset-inline-start: calc(var(--before-after-cursor-position, 0%) - (var(--icon-size) / 2));

        &::before {
            width: 0.25rem;
            box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.5);
            inset-inline-start: calc(var(--icon-size) / 2);
        }

        & .cursor-icon {
            width: var(--icon-size);
            height: var(--icon-size);
            position: relative;
            background: #bdf5f4;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.45);
            animation-duration: 1.4s;
            animation-fill-mode: both;
            animation-iteration-count: infinite;
            animation-name: glow;
            animation-timing-function: linear;

            & svg {
                max-width: 2.125rem;
                z-index: +1;
            }

            &::before {
                content: '';
                position: absolute;
                width: calc(var(--icon-size) - 0.875rem);
                height: calc(var(--icon-size) - 0.875rem);
                border-radius: 100%;
                background-color: var(--white);
                box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.45);
            }
        }

    }

    @media screen and (max-width: 860px) {

        & .before-after__before-image,
        & .before-after__after-image {
            & picture img {
                min-height: 25rem;
                object-fit: cover;
            }

        }
    }
}

@media screen and (max-width: 480px) {
    .shopify-section--before-after-image {
        display: none;
    }
}


@keyframes glow {
    0% {
        box-shadow:
            0 0 0 0 rgba(89, 154, 154, 0.5),
            0 0 0 0 rgba(89, 154, 154, 0.5),
            0 0 0 0 rgba(89, 154, 154, 0.5);
    }

    15% {
        box-shadow:
            0 0 0 0 rgba(89, 154, 154, 0.5),
            0 0 0 0 rgba(89, 154, 154, 0.5),
            0 0 0 0.3125rem rgba(89, 154, 154, 0.5);
    }

    30% {
        box-shadow:
            0 0 0 0 rgba(89, 154, 154, 0.5),
            0 0 0 0.3125rem rgba(89, 154, 154, 0.5),
            0 0 0 0.625rem rgba(89, 154, 154, 0.25);
    }

    45% {
        box-shadow:
            0 0 0 0.3125rem rgba(89, 154, 154, 0.5),
            0 0 0 0.625rem rgba(89, 154, 154, 0.25),
            0 0 0 0.9375rem rgba(89, 154, 154, 0.12);
    }

    60% {
        box-shadow:
            0 0 0 0.625rem rgba(89, 154, 154, 0.25),
            0 0 0 0.9375rem rgba(89, 154, 154, 0.12),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0);
    }

    75% {
        box-shadow:
            0 0 0 0.9375rem rgba(89, 154, 154, 0.12),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0);
    }

    90% {
        box-shadow:
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0);
    }

    100% {
        box-shadow:
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0),
            0 0 0.9375rem 0.9375rem rgba(89, 154, 154, 0);
    }
}

/** shopify-section--multi-column */

.shopify-section--multi-column {
    & .anchor-wrapper {
        position: relative;

        &>div {
            position: absolute;
            height: 0;
            opacity: 0;
            visibility: hidden;
            top: -2.5rem;

            @media screen and (max-width: 999px) {
                top: -2rem;
            }
        }
    }

    & .multi-column__item {
        & .overflow-hidden {
            margin: 0 auto;
        }

        & .rounded {
            border-radius: 0.75rem;
        }
    }
}

/** shopify-section--shop-the-look */

.shopify-section--shop-the-look {
    & .anchor {
        position: relative;

        &>div {
            position: absolute;
            top: -2.5rem;

            @media screen and (max-width: 480px) {
                top: -1.5rem;
            }
        }
    }

    & .container.container--xl {
        --container-max-width: 78.75rem;
    }

    & .section-stack {
        row-gap: 2.5rem;
    }

    & .shop-the-look__image-wrapper {
        border-radius: 0.625rem;
    }

    & carousel-navigation.page-dots {
        margin-top: -0.625rem;
        z-index: +1;
    }

    & .shop-the-look__hot-spot {
        --hot-spot-size: 1.125rem;

        @media screen and (max-width: 440px) {
            --hot-spot-size: 1rem;
        }

        &:hover {
            @media screen and (pointer: fine) {
                transform: scale(1.33);
            }
        }

        &[aria-current="true"] {
            transform: scale(1.33);
        }

        &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            z-index: +1;
            border-radius: 50%;
            box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.45);
        }

        &::after {
            background: #bdf5f4;
            --hot-spot-after-size: calc(var(--hot-spot-size) + 0.5rem);
            animation: 1.4s both linear infinite glow;
        }
    }

}

@media screen and (min-width: 1000px) {
    .shop-the-look__item {
        grid: auto / min(48.75rem, 72%) minmax(0, 1fr);
        gap: 2rem;
        max-width: 68.125rem;
    }

    .shop-the-look__item-content {
        gap: 0.25rem;
    }
}

/** shopify-section--newsletter */

.shopify-section--newsletter {
    & .section-spacing {
        padding-block-start: 3.75rem;
        padding-block-end: 3.75rem;

        & .anchor-wrapper {
            position: relative;

            &>div {
                position: absolute;
                height: 0;
                opacity: 0;
                visibility: hidden;
                top: -3.75rem;

                @media screen and (max-width: 1060px) {
                    top: -4rem;
                }

                @media screen and (max-width: 480px) {
                    top: -3rem;
                }
            }
        }
    }

    & .container {
        --container-max-width: var(--default-container-width);
    }

    & .content-over-media {
        grid-template: unset;
        grid-template-columns: minmax(28rem, 32.5rem) minmax(29rem, 33.25rem);
        justify-content: space-between;
        align-items: start;
        overflow: visible;



        & .custom-content,
        & .newsletter-content {
            grid-area: unset;

            & h2.h4,
            & p.h4 {
                margin-block-end: 1.125rem;
            }

            & p:not(.h4) {
                margin-block-start: 0;
            }
        }

        & .custom-content p.text,
        & .newsletter-content p:not(.h4) {
            margin-block-end: 1.875rem !important;
        }

        & .custom-content {
            & a.link:hover {
                color: var(--turquoise);
            }

            & .grid-wrapper {
                grid-template-columns: repeat(2, max-content);
                gap: 3.75rem;

                @media screen and (max-width: 380px) {
                    gap: 2.5rem;
                }

                & .grid-section {
                    display: grid;
                    align-items: center;
                }

                & .grid-section:first-child {
                    grid-template-columns: 1.0625rem max-content;
                    gap: 0.5625rem;
                }

                & .grid-section:last-child {
                    grid-template-columns: 1.125rem max-content;
                    gap: 0.6875rem;

                    & a.link:hover {
                        color: var(--turquoise);
                    }
                }
            }
        }

        & .newsletter-content {
            & .form.justify-self-center {
                row-gap: 0.6875rem;

                & .form-row {
                    & .button {
                        min-width: 10.25rem;
                        max-width: 10.25rem;
                        padding: 0 1rem;
                    }

                    & .form-control {
                        column-gap: 1rem;

                        & .input {
                            border-radius: 1.3125rem;
                            padding: 0 1.3125rem;
                        }
                    }
                }

                & .form-row.newsletter-check {
                    gap: 0.5rem;
                    display: flex;
                    align-items: end;

                    & label {
                        display: block;

                        & a {
                            text-decoration: underline;
                            color: var(--black-primary);

                            &:hover {
                                color: var(--turquoise);
                            }
                        }
                    }

                    @media screen and (max-width: 380px) {
                        align-items: start;

                        & label {
                            max-width: 12.5rem;
                            text-align: left;
                            display: block;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1060px) {
            grid-template-columns: minmax(min-content, 41.25rem);
            row-gap: 4rem;

            @media screen and (max-width: 480px) {
                row-gap: 3rem;
            }

            justify-content: center;

            & .custom-content,
            & .newsletter-content {
                max-width: unset !important;
                text-align: center;
            }

            & .custom-content .grid-wrapper {
                justify-content: center;
            }

            & .newsletter-content {
                & .section-header {
                    max-width: unset;
                    text-align: center;
                }

                & .form-row.newsletter-check {
                    justify-content: center;
                }

                @media screen and (max-width: 480px) {
                    & .form-row:not(.newsletter-check) {
                        row-gap: .5rem;

                        & .form-control {
                            flex: 1 0 100%;

                            & input {
                                min-height: 2.625rem;
                            }
                        }

                        & .button {
                            min-width: 100% !important;
                            max-width: 100% !important;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 700px) {
    .shopify-section--newsletter .newsletter .form {
        width: 100%;
    }
}

/** Footer */

.shopify-section--footer {
    & .footer.color-scheme {
        background: url(/cdn/shop/files/footer-bg.jpg?v=1736951319) left top / cover no-repeat;
        padding-block-start: 4.375rem;

        @media screen and (max-width: 480px) {
            padding-block-start: 3rem;
        }

        padding-block-end: 2.75rem;
    }

    & .footer .container:first-of-type {
        --container-max-width: var(--default-container-width);

        & .footer__inner {
            row-gap: 2.5rem;

            @media screen and (max-width: 860px) {
                max-width: 37.5rem;
                margin: 0 auto;
            }
        }
    }

    & .footer__block-list {
        display: grid;
        row-gap: 2.5rem;
        grid-template-columns: 8.75rem auto auto 20rem;
        padding-block-end: 2.3125rem;
        border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.08);

        @media screen and (max-width: 1240px) {
            grid-template-columns: 7rem auto auto 20rem;
        }

        & .footer__block.footer__block--image:nth-child(1) {
            grid-row: 1 / 3;
            grid-column: 1 / 2;
        }

        & .footer__block.footer__block--links:nth-child(2) {
            grid-row: 1 / 3;
            grid-column: 2 / 3;
        }

        & .footer__block.footer__block--links:nth-child(3) {
            grid-row: 1 / 3;
            grid-column: 3 / 4;
        }

        & .footer__block.footer__block--social_media:nth-child(4) {
            grid-row: 1 / 2;
            grid-column: 4 / 5;
        }

        & .footer__block.footer__block--payment:nth-child(5) {
            grid-row: 2 / 3;
            grid-column: 4 / 5;
        }

        @media screen and (max-width: 1120px) {
            row-gap: 4rem;
            grid-template-columns: minmax(min-content, 20rem) minmax(min-content, 20rem) 20rem;

            & .footer__block.footer__block--image:nth-child(1) {
                grid-row: 1 / 1;
                grid-column: 1 / 4;
                justify-self: center;
                max-width: 7rem;
            }

            & .footer__block.footer__block--links:nth-child(2) {
                grid-row: 2 / 4;
                grid-column: 1 / 2;
            }

            & .footer__block.footer__block--links:nth-child(3) {
                grid-row: 2 / 4;
                grid-column: 2 / 3;
            }

            & .footer__block.footer__block--social_media:nth-child(4) {
                grid-row: 2 / 4;
                grid-column: 3 / 4;
            }

            & .footer__block.footer__block--payment:nth-child(5) {
                grid-row: 3 / 4;
                grid-column: 3 / 4;
            }
        }

        @media screen and (max-width: 860px) {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 3rem;


            & .footer__block.footer__block--image:nth-child(1) {
                grid-column: 1 / 3;
            }

            & .footer__block.footer__block--links:nth-child(2) {
                grid-row: 3 / 4;
                justify-self: center;
                text-align: center;
            }

            & .footer__block.footer__block--links:nth-child(3) {
                grid-row: 3 / 4;
                justify-self: center;
                text-align: center;
            }

            & .footer__block.footer__block--social_media:nth-child(4) {
                grid-row: 2 / 3;
                grid-column: 1 / 3;
                justify-self: center;

                & .social-media--list {
                    justify-content: center;
                }
            }

            & .footer__block.footer__block--payment:nth-child(5) {
                grid-row: 4 / 5;
                grid-column: 1 / 3;
                justify-self: center;
                text-align: center;

                & .payment-methods {
                    justify-content: center;
                }
            }
        }

        @media screen and (max-width: 440px) {
            grid-template-columns: 1fr;

            & .footer__block.footer__block--image:nth-child(1) {
                grid-column: 1 / 2;
            }

            & .footer__block.footer__block--links:nth-child(2) {
                grid-row: 3 / 4;
                grid-column: 1 / 2;
            }

            & .footer__block.footer__block--links:nth-child(3) {
                grid-row: 4 / 5;
                grid-column: 1 / 2;
            }

            & .footer__block.footer__block--social_media:nth-child(4) {
                grid-row: 2 / 3;
                grid-column: 1 / 2;
            }

            & .footer__block.footer__block--payment:nth-child(5) {
                grid-row: 5 / 6;
                grid-column: 1 / 2;
            }
        }
    }

    & .footer__block.footer__block--links ul {
        gap: 0;
    }

    & .footer__block.footer__block--social_media .social-media--list .social-media__item {
        opacity: 1;
        transition: color .2s;
        color: var(--white);

        &:hover {
            color: var(--turquoise);
        }
    }
}

& .footer__aside {
    grid-auto-flow: row;
    text-align: left;
    gap: 0.3125rem;

    @media screen and (max-width: 860px) {
        text-align: center;
    }

    & .text-extra-small-muted-inverse p {
        font-size: inherit;
        color: inherit;
        line-height: inherit;

        & a {
            color: var(--white);
            text-decoration: underline;

            &:hover {
                color: var(--turquoise);
            }
        }
    }
}

& .back-to-top {
    background: url(/cdn/shop/files/icon-to-top.svg?v=1667561490);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.75rem auto;
    background-color: var(--turquoise);
    height: 3rem;
    width: 3rem;
    position: fixed;
    bottom: 4.75rem;
    left: calc(50% - 1.5rem);
    z-index: 100;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
}

/** shopify-section--collection-banner */

.shopify-section--collection-banner {
    & .content-over-media {
        @media screen and (max-width: 699px) {
            --content-over-media-height: 18rem;
        }

        & .overlay-box {
            border-radius: 0.75rem;
            box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.2);
            background: var(--banner-overlay-box-background-color);
            backdrop-filter: blur(0.625rem);
            -webkit-backdrop-filter: blur(0.625rem);

            & h1.h1-center-inverse, p.text-large-inverse-center {
                text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
            }

            & p.text-large-inverse-center {
                margin-block-start: 0.125rem;
            }

            @media screen and (max-width: 860px) {
                backdrop-filter: blur(0.15rem);

                & h1.h1-center-inverse {
                    font-size: 2.6rem;
                }
            }
        }
    }

    & .breadcrumb-bar {
        min-height: 2.8125rem;
        border-bottom: solid 0.0625rem rgba(0, 0, 0, 0.1);
        display: grid;
        justify-content: center;
        align-items: center;

        & .breadcrumb--floating {
            display: block !important;
            position: relative;
            inset-block-start: unset;
            inset-inline-start: unset;
        }

        & .breadcrumb__list-item {
            & .smallcaps {
                font-size: 0.875rem;
                font-weight: normal;
                font-stretch: normal;
                font-style: normal;
                line-height: normal;
                letter-spacing: normal;
                color: rgba(14, 9, 0, 0.5);
                text-transform: none;

                &:not([aria-current="page"]):hover {
                    color: var(--black-primary);
                    text-decoration: underline;
                }

                &[aria-current="page"] {
                    color: var(--black-primary);
                    font-weight: 600;
                }
            }

            &+.breadcrumb__list-item::before {
                content: "»";
                color: var(--black-primary);
                font-size: 1.125rem;
            }
        }
    }
}


/** shopify-section--main-search */

.shopify-section--main-search .collection-banner .prose p.h3 {
    color: var(--white);
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
}

.main-search__tabs .result-pages,
.main-search__tabs .result-articles {
    padding-block-end: 5rem;
}

.shopify-section--main-search .content-tabs::part(tab-list) {
    margin-block-start: 3rem;
    margin-block-end: 3rem;
}

/** filte-buttton icons */

.collection-toolbar .collection-toolbar__button,
.facets-drawer .facets .accordion-list .accordion .accordion__toggle.h6 {
    --icon-size: 0;

    &[data-icon-type="filter"] {
        padding: 0 1.125rem;

        &::before {
            display: none;
        }
    }

    &[data-icon-type="sortby"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/icon-shop-filter-sortieren.svg?v=1737036516);
        min-width: max-content;
    }

    &[data-icon-type="farbe"] {
        --icon-size: 1.625rem;
        --icon-url: url(/cdn/shop/files/icon-shop-filter-farbe.png?v=1741775154);
    }

    &[data-icon-type="form"] {
        --icon-size: 1.375rem;
        --icon-url: url(/cdn/shop/files/icon-shop-filter-form.svg?v=1737380670);
    }

    &[data-icon-type="preis"] {
        --icon-size: 1.375rem;
        --icon-url: url(/cdn/shop/files/icon-shop-filter-preis.svg?v=1737037857);
    }

    &[data-icon-type="material"] {
        --icon-size: 1.375rem;
        --icon-url: url(/cdn/shop/files/icon-shop-filter-material.svg?v=1738235496);
    }
}

.collection-toolbar .popover[data-popover-type="form"] .checkbox-control,
.collection-toolbar .popover[data-popover-type="material"] .checkbox-control,
.facets-drawer .facets .accordion-list .accordion .accordion__content .checkbox-control {
    --popover-arrow-icon: url(/cdn/shop/files/icon-filter-dropdown-selected.svg?v=1737446143);
    --popover-arrow-icon-size: 0.75rem;

    & label[data-title="xxl-sitzsack"] {
        --icon-size: 1.3125rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-xxl.svg?v=1737383826);
    }

    & label[data-title="comfort-sitzsack"] {
        --icon-size: 1.4375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-comfort.svg?v=1676479802);
    }

    & label[data-title="drops-sitzsack"] {
        --icon-size: 1.375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-drops.svg?v=1676479803);
    }

    & label[data-title="lounge-sitzsack"] {
        --icon-size: 1.5625rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-lounge.svg?v=1676479802);
    }

    & label[data-title="2-in-1 sitzsack"] {
        --icon-size: 1.625rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-2-in-1.svg?v=1676479800);
    }

    & label[data-title="hocker / poufs"] {
        --icon-size: 1.4375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-poufs.svg?v=1737385300);
    }

    & label[data-title="möbel-sets"] {
        --icon-size: 1.4375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-modular-sets.svg?v=1737385332);
    }

    & label[data-title="sessel"] {
        --icon-size: 1.625rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-modular-sessel.svg?v=1737385392);
    }

    & label[data-title="mittelteile"] {
        --icon-size: 1.5625rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-modular-mittelteile.svg?v=1737385427);
    }

    & label[data-title="eckteile"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-modular-eckteile.svg?v=1737385460);
    }

    & label[data-title="kinder-sitzsäcke"] {
        --icon-size: 1.375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-kinder.svg?v=1737385495);
    }

    & label[data-title="cord-sitzsäcke"] {
        --icon-size: 1.3125rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown_Cordsessel.svg?v=1712732073);
    }

    & label[data-title="gaming day!"] {
        --icon-size: 1.4375rem;
        --icon-url: url(/cdn/shop/files/icon-dropdown-sitzsack-gameday.svg?v=1737385626);
    }

    /** Material Icons */

    & label[data-title="cord"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-cord.png?v=1736862579);

        &::before {
            border-radius: 100%;
        }
    }

    & label[data-title="outdoor"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-outdoor-indoor.png?v=1736862578);

        &::before {
            border-radius: 100%;
        }
    }

    & label[data-title="indoor"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-indoor.png?v=1736862579);

        &::before {
            border-radius: 100%;
        }
    }

    & label[data-title="fluffy-kunstfell"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-fluffy-kunstfell.png?v=1736862579);

        &::before {
            border-radius: 100%;
        }
    }

    & label[data-title="microvelour"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-microvelour.png?v=1736862579);

        &::before {
            border-radius: 100%;
        }
    }

    & label[data-title="teddyfleece"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/filter-material-teddyfleece.png?v=1736862579);

        &::before {
            border-radius: 100%;
        }
    }
}

.shopify-section--main-collection .collection-toolbar,
.shopify-section--main-search .collection-toolbar,
.facets-drawer .facets .accordion-list .accordion .accordion__content {
    & .color-swatch {

        &[data-tooltip="Weiß"],
        &[data-tooltip="Weiss"],
        &[data-tooltip="weiss"],
        &[data-tooltip="weiß"] {
            background: #fff;
        }
    }
}

/** main-collection-toolbar / main-search-toolbar */

.shopify-section--main-collection,
.shopify-section--main-search {
    & .collection-toolbar {
        box-shadow: none;
        margin-top: 1rem;
        flex-direction: row;
        margin-inline-start: 0;
        margin-inline-end: 0;
        padding: 0.75rem 0;

        @media screen and (min-width: 700px) {
            padding: 0.75rem 0 0.75rem 1.25rem;
            margin-top: 1.75rem;
        }

        & .collection-toolbar__button-list,
        & .facets {
            gap: 1.25rem;
        }

        & .collection-toolbar__button-list {
            @media screen and (max-width: 699px) {
                max-width: 28.75rem;
            }

            @media screen and (max-width: 380px) {
                gap: 0.625rem;
            }
        }

        & .collection-toolbar__button-container {
            border: none;
        }

        & .collection-toolbar__button {
            height: 2.5rem;
            border-radius: 1.25rem;
            box-shadow: 0 0.0625rem 0.125rem #00000014;
            border: solid 0.0625rem var(--black-primary);
            padding-inline: 0;
            display: grid;
            opacity: 1;
            align-content: center;
            justify-content: center;
            padding: 0 1.125rem 0 calc(1.5rem + var(--icon-size));

            & span {
                position: relative;
                font-size: 1rem;
                font-weight: normal;
                font-stretch: normal;
                font-style: normal;
                line-height: normal;
                letter-spacing: normal;
                color: var(--black-primary);
                text-transform: uppercase;
                padding-bottom: 0.1875rem;

                &::before {
                    content: "";
                    position: absolute;
                    height: var(--icon-size);
                    width: var(--icon-size);
                    top: calc(50% - (var(--icon-size) / 2));
                    left: calc(-1 * (var(--icon-size) + 0.5rem));
                    background: var(--icon-url) center / contain no-repeat;
                }
            }

            @media screen and (max-width: 440px) {
                height: 2.4rem;

                & span {
                    font-size: 0.75rem;
                }
            }
        }

        & .collection-toolbar__button:not([aria-expanded="true"]):hover span {
            color: var(--turquoise);
        }

        @media screen and (min-width: 1000px) {
            & .popover {
                --popover-block-offset: 0.625rem;
                --popover-width: 16.25rem;
                --popover-body-padding-inline: 1.875rem;

                padding-bottom: 2.5rem;
                border: 0.0625rem solid var(--black-primary);
                border-radius: 0.5rem;
                overflow: hidden;
                left: 0;
                right: unset;

                & .popover-footer {
                    position: absolute;
                    bottom: 0;
                    background: var(--light-grey);
                    left: 0;
                    width: 100%;
                    height: 2.5rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all .2s;

                    & span {
                        transition: all .2s;
                    }

                    & .facets-clear-all {
                        margin-inline-start: 0;
                        display: flex;

                        &:hover span {
                            color: var(--turquoise);
                        }
                    }
                }

                &::part(content) {
                    width: var(--popover-width);
                    max-width: var(--popover-width);
                    max-height: min(60vh, 25rem);
                    border: none;
                }

                & .popover__value-list {

                    & .h-stack.wrap.gap-2 {
                        flex-wrap: nowrap;
                        flex-direction: column;
                        align-items: flex-start;
                    }

                    & .color-swatch.rounded-full:not(:last-child)::before,
                    & .checkbox-control:not(:last-child)::before {
                        content: "";
                        position: absolute;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                        left: 0;
                        width: calc(var(--popover-width) - (2 * var(--popover-body-padding-inline)));
                    }

                    & .checkbox-control:not(:last-child)::before {
                        bottom: -.25rem;
                    }
                }
            }

            & [data-tooltip]::after {
                content: attr(data-tooltip);
                position: absolute;
                inset-block-end: 0;
                border-radius: 0;
                background: none;
                width: max-content;
                max-width: unset;
                color: var(--black-primary);
                visibility: visible;
                opacity: 1;
                pointer-events: auto;
                padding: 0;
                font-size: 0.875rem;
                translate: unset;
                scale: unset;
                text-transform: uppercase;
                left: 0;
                bottom: 0;
            }

            /** color swatch */

            & .popover[data-popover-type="farbe"] {
                --popover-width: 18.75rem;

                & .popover__value-list .h-stack.wrap.gap-2 {
                    --value-gap: 1.1875rem;
                    gap: var(--value-gap);
                }

                & .color-swatch {
                    --swatch-offset: 0.125rem;
                    --swatch-size: 1.5rem;
                }

                & .color-swatch:hover::after {
                    color: var(--turquoise);
                }

                & input[checked]+.color-swatch::after {
                    font-weight: 600;
                }

                & input[checked]+.color-swatch .marker {
                    right: calc(-1 * (var(--popover-width) - 5.625rem));
                    position: absolute;
                    width: var(--popover-arrow-icon-size);
                    height: var(--popover-arrow-icon-size);
                    background: var(--popover-arrow-icon) center / contain no-repeat;
                }

                & .color-swatch.rounded-full::before {
                    bottom: calc(-1 * (var(--value-gap) / 2));
                }

                & [data-tooltip]::after {
                    left: 2.25rem;
                }
            }

            /** form / material filter */

            & .popover[data-popover-type="form"],
            & .popover[data-popover-type="material"] {

                & .popover__value-list .v-stack {
                    --value-gap: 1.625rem;
                    gap: var(--value-gap);
                }

                & .checkbox-control .dot-checkbox:checked {
                    opacity: 0;
                }

                & .checkbox-control label {
                    font-size: 0.875rem;
                    font-weight: normal;
                    font-stretch: normal;
                    font-style: normal;
                    line-height: normal;
                    letter-spacing: normal;
                    color: var(--black-primary);
                    text-transform: uppercase;
                    padding-left: 2.375rem;
                    display: flex;
                    align-items: center;
                    opacity: 1;
                }

                & .checkbox-control:hover label {
                    color: var(--turquoise);
                }

                & .dot-checkbox:focus~label {
                    outline: none;
                }

                & .checkbox-control label::before {
                    content: "";
                    position: absolute;
                    left: calc(0.8125rem - (var(--icon-size) / 2));
                    height: var(--icon-size);
                    width: var(--icon-size);
                    background: var(--icon-url) center / contain no-repeat;
                }

                & .checkbox-control:has(.dot-checkbox:checked) label {
                    font-weight: 600;
                    transform: none;

                    &::after {
                        content: '';
                        position: absolute;
                        left: calc(var(--popover-width) - 4.875rem);
                        width: var(--popover-arrow-icon-size);
                        height: var(--popover-arrow-icon-size);
                        background: var(--popover-arrow-icon) center / contain no-repeat;
                    }
                }

                & .checkbox-control:not(:last-child)::before {
                    bottom: calc(-1 * (var(--value-gap) / 2));
                }
            }

            & #sort-by-popover {
                padding-bottom: 0;

                & .popover__value-list {
                    --value-gap: 1.625rem;
                    gap: var(--value-gap);

                    & .popover__value-option {
                        position: relative;
                        display: inline-flex;
                        align-items: center;

                        &::before {
                            content: "";
                            position: absolute;
                            border-bottom: 0.0625rem solid rgba(0, 0, 0, .1);
                            bottom: calc(-1 * (var(--value-gap) / 2));
                            left: 0;
                            width: calc(var(--popover-width) - (2 * var(--popover-body-padding-inline)));
                        }
                    }

                    & .popover__value-option[data-sort-option='best-selling'] {
                        order: 1;
                    }

                    & .popover__value-option[data-sort-option='created-descending'] {
                        order: 2;
                    }

                    & .popover__value-option[data-sort-option='price-ascending'] {
                        order: 3;
                    }

                    & .popover__value-option[data-sort-option='price-descending'] {
                        order: 4;

                        &::before {
                            display: none;
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 1200px) {
            justify-content: center;
        }
    }

    & .facets-bar .facets {
        display: flex;
    }
}

.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="farbe"]:has(+ .popover input:checked),
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="farbe"]:has(+ .popover input:checked),
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="form"]:has(+ .popover input:checked),
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="form"]:has(+ .popover input:checked),
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="material"]:has(+ .popover input:checked),
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="material"]:has(+ .popover input:checked),
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[aria-expanded="true"],
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[aria-expanded="true"] {
    box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16), inset 0 0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.42);
    border: solid 0.0625rem rgba(0, 0, 0, 0.1);
}

.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="farbe"]:has(+ .popover input:checked) span,
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="farbe"]:has(+ .popover input:checked) span,
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="form"]:has(+ .popover input:checked) span,
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="form"]:has(+ .popover input:checked) span,
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="material"]:has(+ .popover input:checked) span,
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="material"]:has(+ .popover input:checked) span,
.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[aria-expanded="true"] span,
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[aria-expanded="true"] span {
    font-weight: 600;
}

.shopify-section--main-collection .collection-toolbar .collection-toolbar__button[data-icon-type="preis"]:has(+ .popover .popover__value-list .price-range.active),
.shopify-section--main-search .collection-toolbar .collection-toolbar__button[data-icon-type="preis"]:has(+ .popover .popover__value-list .price-range.active) {
    box-shadow: 0 0.125rem 0 0 var(--white), inset 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16), inset 0 0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.42);
    border: solid 0.0625rem rgba(0, 0, 0, 0.1);

    & span {
        font-weight: 600;
    }
}

@media screen and (min-width: 1000px) {

    .shopify-section--main-collection .collection-toolbar .popover .popover-footer:has(.facets-clear-all:hover),
    .shopify-section--main-search .collection-toolbar .popover .popover-footer:has(.facets-clear-all:hover) {
        background: var(--black-primary);

        & span {
            color: var(--white);
        }
    }

    .shopify-section--main-collection .collection-toolbar .popover:has(.popover__value-list)::part(body),
    .shopify-section--main-search .collection-toolbar .popover:has(.popover__value-list)::part(body) {
        padding-inline-end: var(--popover-body-padding-inline);
    }
}


/** main-collection / main-search sidebar */

.shopify-section--main-collection,
.shopify-section--main-search {
    @media screen and (min-width: 1000px) {
        & .collection {
            --collection-gap: 5.125rem;
            --collection-sidebar-width: 13rem;

            @media screen and (max-width: 1430px) {
                --collection-gap: 4rem;
            }
        }
    }

    & .facets-sidebar {
        & .v-stack {
            gap: 2.5rem;
        }

        & .first-menu p.h6-muted {
            margin-bottom: 1rem;
        }

        & ul {
            list-style: none;
            margin-inline-start: unset;
            gap: 1.25rem;
            display: flex;
            flex-direction: column;

            & li {
                padding-inline-start: 0;

                &.active {
                    font-weight: 600;
                }

                &:not(.active):hover {
                    color: var(--turquoise);
                }

                & .sidebar-menu {
                    font-weight: inherit;
                    display: grid;
                    grid-template-columns: auto 0.625rem;

                    & a:hover {
                        color: var(--turquoise);
                    }
                }

                &.sidebar-menu:has(+ ul li.active) {
                    font-weight: 600;
                }

                & ul {
                    gap: 0.8125rem;

                    & li {
                        padding-inline-start: 1.25rem;
                    }
                }
            }
        }

        & .second-menu {
            & p.h6-muted {
                margin-bottom: 1.25rem;
            }

            & ul {
                gap: 1.25rem;

                & li {
                    position: relative;
                    padding-left: 2.875rem;
                    display: flex;
                    align-items: center;
                    --icon-corr: 0rem;

                    &::before {
                        content: '';
                        position: absolute;
                        width: var(--icon-size);
                        height: var(--icon-size);
                        background: var(--icon-url) center / contain no-repeat;
                        left: calc((16px - (var(--icon-size) / 2)) + var(--icon-corr));
                    }
                }
            }
        }
    }

    & .facets-sidebar {
        & .first-menu .menu .sidebar-menu {
            & .toggle-icon {
                display: flex;
                align-items: center;
                height: 1.25rem;
                width: 1.25rem;
                justify-content: center;
                cursor: pointer;
            }
        }

        & .first-menu .menu .sidebar-menu .toggle-icon .close,
        & .first-menu .menu .sidebar-menu.open .toggle-icon .open,
        & .first-menu .menu .sidebar-menu.active .toggle-icon .open {
            display: none;
        }

        & .first-menu .menu .sidebar-menu.open .toggle-icon .close,
        & .first-menu .menu .sidebar-menu.active .toggle-icon .close {
            display: inline;
        }

        & .first-menu .menu .sidebar-menu .sidebar-menu-lvl2 {
            overflow: hidden;
            max-height: 0;
        }

        & .first-menu .menu .sidebar-menu.open .sidebar-menu-lvl2 {
            max-height: unset;
            margin-top: 0.9375rem;
        }
    }

    @media screen and (min-width: 1000px) {
        & .facets-sidebar {
            margin-top: 2.5rem;
        }
    }

    @media screen and (max-width: 1200px) {
        & .facets-sidebar {
            display: none;
        }
    }
}

.shopify-section--main-collection .facets-sidebar .first-menu .menu .sidebar-menu:has(+ ul.sidebar-menu-lvl2 .sidebar-menu-lvl2.active) {
    font-weight: 600;
}


/** shopify-section--main-collection / shopify-section--main-search */

.shopify-section--main-collection,
.shopify-section--main-search {

    @media screen and (min-width: 1000px) and (max-width: 1200px) {
        --collection-items-per-row-medium: 4 !important;
    }

    & .container {
        --container-max-width: var(--default-container-width);
    }

    & .collection {
        margin-block-start: 0;

        & .collection__main {
            @media screen and (min-width: 700px) {
                margin-right: -1.25rem;
                margin-left: -1.25rem;
            }

            row-gap: 1.25rem;

            & .active-facets {
                padding-left: 1.25rem;

                & .removable-facet {
                    border-radius: 1.25rem;
                    height: 2.5rem;
                    padding: 0 .875rem;
                    background: var(--light-grey);
                    box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.08);

                    & span.text-subdued {
                        padding-bottom: 0.125rem;
                    }
                }

                & .facets-clear-all.text-subdued:hover {
                    color: var(--turquoise);
                }
            }

            /** pagination */

            & .pagination {
                & .pagination__link.h6 {
                    font-size: 1rem;
                    font-weight: normal;
                    line-height: normal;
                }

                & .pagination__link:not(.pagination__link--disabled).h6:hover {
                    color: var(--grey);
                }
            }

            & .product-list .product-card .product-card__info .button {
                @media screen and (min-width: 1400px) and (max-width: 1500px) {
                    width: calc(100% - 5rem);
                    min-width: 8rem;
                }

                @media screen and (min-width: 1000px) and (max-width: 1200px) {
                    width: calc(100% - 5rem);
                    min-width: 8rem;
                }

                @media screen and (min-width: 700px) and (max-width: 860px) {
                    width: calc(100% - 5rem);
                    min-width: 8rem;
                }

                @media screen and (max-width: 580px) {
                    width: calc(100% - 5rem);
                    min-width: 8rem;
                }
            }

            @media screen and (max-width: 440px) {
                & .product-list {
                    margin-left: -1rem;
                    margin-right: -1rem;
                }
            }
        }

        @media screen and (max-width: 1200px) {
            --collection-grid-template: minmax(0, 1fr) !important;
        }
    }
}

/** facets-drawer */

.facets-drawer .facets .accordion-list .accordion {
    & .accordion__toggle.h6 {
        font-family: var(--heading-font-family);
        font-size: .875rem;
        font-weight: 500;
        line-height: 1.29;
        color: var(--black-primary);
        text-transform: uppercase;
        padding-left: 2.5rem;

        & span {
            position: relative;

            &::before {
                content: "";
                position: absolute;
                height: var(--icon-size);
                width: var(--icon-size);
                top: calc((50% - (var(--icon-size) / 2)) + 0.125rem);
                left: calc(-1 * (var(--icon-size) + .75rem));
                background: var(--icon-url) center / contain no-repeat;
            }
        }
    }

    & .accordion__content {
        margin-block-start: 0.5rem;

        & .v-stack {
            gap: 1rem;
        }

        & .checkbox-control {
            & label {
                font-size: 0.875rem;
                font-weight: normal;
                font-stretch: normal;
                font-style: normal;
                line-height: normal;
                letter-spacing: normal;
                color: var(--black-primary);
                text-transform: uppercase;
                padding-left: 2.25rem;
                display: flex;
                align-items: center;
                margin-left: 1.25rem;
                min-width: 11.875rem;

                &::before {
                    content: "";
                    position: absolute;
                    left: calc(.8125rem - (var(--icon-size) / 2));
                    height: var(--icon-size);
                    width: var(--icon-size);
                    background: var(--icon-url) center / contain no-repeat;
                }
            }

            & .dot-checkbox:checked {
                opacity: 0;

                &+label {
                    transform: none;

                    &::after {
                        content: "";
                        position: absolute;
                        width: var(--popover-arrow-icon-size);
                        height: var(--popover-arrow-icon-size);
                        background: var(--popover-arrow-icon) center / contain no-repeat;
                        right: 0;
                    }
                }
            }
        }
    }
}


/** product page */

.shopify-section--main-product .container.container--lg {
    --container-max-width: 65.625rem;
}

.shopify-section--main-product .product-gallery {
    align-items: center;
    --product-gallery-thumbnail-size: 4.375rem;
    --product-gallery-gap: 2.5rem;

    & .product-gallery__zoom-button {
        --size-multiplier: 1;
        width: 2.25rem;
        height: 2.25rem;
    }
}

.product-gallery__thumbnail {
    border: solid 0.125rem transparent;
    border-radius: 0.25rem;
    transition: .2s border-color ease-in-out;
}

.product-gallery__thumbnail[aria-current="true"] {
    border-color: var(--black-primary);
}

.product-info__block-list .product-info__block-item[data-block-type="title"] .badges {
    display: flex;
    column-gap: 0.75rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;

    @media screen and (max-width: 999px) {
        justify-content: center;
    }

    & .badge {
        font-size: 0.8125rem;
        padding: 0.1875rem 0.625rem;
        border-radius: 0.25rem;

        &.badge--custom {
            color: var(--white);

            &.badge--bestseller,
            &.badge--topseller {
                background: var(--black-primary);
            }

            &.badge--neu,
            &.badge--neuheit {
                background: var(--apple-green);
            }

            &.badge--im-angebot {
                background: rgb(var(--on-sale-badge-background));
            }
        }
    }
}

.product-info__block-list .product-info__block-item[data-block-type="liquid"] .teaser-wrapper {
    min-height: 2rem;

    & p {
        font-family: var(--text-font-family);
        color: var(--black-primary);

        & a {
            background: linear-gradient(to right,currentColor,currentColor) 0 min(100%,1.2lh) / 100% 1px no-repeat;
            transition: background-size .3s ease-in-out;
            &:hover  {
                background-size: 0 1px;
            }
        }
    }
}

.product-info__block-list .product-info__block-item[data-block-type="description"] ul {
    margin-inline-start: 0;
    list-style: none;
    row-gap: 0;
}

.product-info__block-list .product-info__block-item[data-block-type="description"] ul li {
    position: relative;
    --icon-size: 1.125rem;
    padding-left: calc(var(--icon-size) + 0.875rem);
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--black-primary);
}

.product-info__block-list .product-info__block-item[data-block-type="description"] ul li::before {
    content: '';
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    top: 0.25rem;
    left: 0;
    background: url(/cdn/shop/files/icon-list-check.svg?v=1737983769) center / contain no-repeat;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] .v-stack {
    row-gap: 0.625rem;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] .v-stack .price-list--product {
    row-gap: 0.375rem;

    & .price-old {
        text-decoration: line-through;
    }
}

.product-info__block-list .product-info__block-item[data-block-type="price"] p.text-small-muted {
    margin-block-start: 0.25rem;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] p.text-small-muted.tax-wrap {
    width: 100%;
    margin-block-start: 0;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] p.free-shipping-de {
    width: 100%;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] p.free-shipping-de strong {
    font-weight: 500;
}

.product-info__block-list .product-info__block-item[data-block-type="price"] p.text-small-muted a.link:hover {
    color: var(--turquoise);
}

.product-info__block-list .product-info__block-item[data-block-type="quantity-selector"] {
    margin-block-start: 1.875rem;
    margin-block-end: 1.875rem;
}

.product-info__block-list .product-info__block-item[data-block-type="quantity-selector"] p.h6 {
    margin-bottom: .5rem;
}

.product-info__block-list .product-info__block-item[data-block-type="buy-buttons"] {
    margin-block-start: 1.875rem;
}

.product-info__block-list .product-info__block-item[data-block-type="variant-picker"] {
    & .variant-picker__option-info {
        & legend {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
    }

    & .variant-picker__option-values {
        & .thumbnail-swatch {
            border-radius: .25rem;

            &>img {
                transform: scale(0.85);

                @media screen and (max-width: 640px) {
                    transform: scale(0.9);
                }
            }

            &.is-disabled::before {
                z-index: +1;
            }

            &.sale::before {
                content: attr(data-sale-value);
                position: absolute;
                right: -0.3125rem;
                z-index: +1;
                background: rgb(var(--on-sale-badge-background));
                color: var(--white);
                font-weight: 600;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                text-transform: uppercase;
                font-size: 0.8125rem;
                top: -0.3125rem;
                height: 1.5rem;
                width: 1.5rem;
                align-items: center;
            }

            @media screen and (max-width: 699px) {
                &.sale::before {
                    font-size: 0.6875rem;
                    height: 1.25rem;
                    width: 1.25rem;
                }
            }
        }
    }

    @media screen and (max-width: 999px) {
        & .variant-picker__option {
            grid-template-columns: minmax(0, 35rem);
            justify-self: center;
            justify-items: center;
        }

        & .variant-picker__option-values {
            justify-content: center;
        }
    }
}

.product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] {
    & p.text-strong {
        margin-bottom: 12px;
    }

    & .btn-grp {
        display: grid;
        grid-template-columns: repeat(var(--btn-cnt), 5.625rem);
        gap: 0.875rem;

        @media screen and (min-width: 1000px) and (max-width: 1140px) {
            grid-template-columns: repeat(2, 5.625rem);
        }

        @media screen and (max-width: 440px) {
            grid-template-columns: repeat(2, 5.625rem);
        }

        @media screen and (max-width: 999px) {
            justify-self: center;
        }

        & .button {
            min-width: 5.625rem;
            min-height: 3.125rem;
            display: flex;
            flex-direction: column;
            padding: unset;
            font-family: var(--text-font-family);
            font-size: 0.9375rem;
            font-weight: 500;
            line-height: normal;
            text-align: center;
            color: var(--black-primary);
            background: var(--white);
            border-radius: 0.25rem;
            border: solid 0.0625rem #c0c0c0;
            text-transform: none;
            transition: all .2s ease-in-out;

            & span.discount {
                font-size: 13px;
                color: #459006;
            }

            &:focus,
            &.active {
                background: var(--black-primary);
                border-color: var(--black-primary);
                color: var(--white);

                & span.discount {
                    color: var(--yellow-green);
                }
            }

            &:not(.active):hover {
                background: var(--turquoise);
                border-color: var(--turquoise);
                color: var(--white);

                & span.discount {
                    animation: blink 1.6s ease-in-out 0s infinite;
                    color: var(--white);
                }
            }
        }
    }
}

@keyframes blink {
    50% {
        opacity: 0.6;
    }
}

.product-info__block-list .product-info__block-item[data-block-type="inventory"] {
    --icon-width: 2.0625rem;

    @media screen and (max-width: 999px) {
        display: grid;
        justify-content: center;
    }

    & .grid-wrapper {
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: start;
        gap: 0.4375rem;
        position: relative;
        margin-left: calc(var(--icon-width) + 0.875rem);

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: calc(-1 * (var(--icon-width) + 0.875rem));
            width: var(--icon-width);
            height: calc(var(--icon-width) * .606060);
            background: url(/cdn/shop/files/icon-produkt-lieferzeit.svg?v=1737982720) center / contain no-repeat;
        }

        .inventory.text-warning {
            color: var(--orange);
        }

        .inventory.text-error {
            color: var(--red);
        }

        .inventory.text-success {
            color: #459006;
        }

        .grid-section p {
            font-size: 0.875rem;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.57;
            letter-spacing: normal;
            color: var(--black-primary);

            & strong {
                font-weight: 600;
            }
        }
    }
}

.product-info__block-list .product-info__block-item[data-block-type="rating"] {
    @media screen and (max-width: 999px) {
        display: grid;
        justify-content: center;
    }
}


.product-content-below-gallery .accordion:first-of-type {
    border-top: none;
}

.product-content-below-gallery .accordion:last-of-type {
    border-bottom: none;
}

.product-content-below-gallery .accordion .accordion__toggle.h6 {
    padding-block: 1.375rem;
    font-size: 1.625rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    color: var(--black);
}

.shopify-section--main-product .product-sticky-bar {
    background: rgba(255, 255, 255, 0.9);
    padding-block: .5rem;
}

.shopify-section--main-product .product-sticky-bar .price-grid.text-subdued.line-through {
    font-size: 0.8125rem;
}

/** share overlay */

.shopify-section--main-product .product-gallery .product-gallery__image-list {
    position: relative;

    & .share-overlay {
        position: absolute;
        right: 1.125rem;
        bottom: 1.375rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.12);
        padding: 0.5rem;
        border-radius: 50%;
        display: grid;
        justify-content: center;
        transition: opacity .2s ease-in-out;

        @media screen and (max-width: 999px) {
            right: 0rem;
        }

        & span.share {
            & .icon.icon-share {
                width: 1.25rem;
            }
        }

        & ul {
            list-style: none;
            margin-inline-start: 0;
            display: none;
            opacity: 0;
            gap: 1.125rem;
            transition: opacity .2s ease-in-out;
            position: relative;

            @media screen and (max-width: 640px) {
                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
            }

            &.go::before {
                display: none;
            }

            & li {
                padding-inline-start: 0;
                display: inherit;
                justify-content: center;

                & .ico-wrapper {
                    transition: all .1s ease-in-out;
                }

                &:hover {
                    .ico-wrapper {
                        transform: scale(1.12);
                    }
                }
            }
        }

        &:hover,
        &.active {
            padding: 0.875rem 0.5rem;
            border-radius: 1.25rem;

            & span.share {
                display: none;
            }

            & ul {
                display: grid;
                opacity: 1;
            }
        }
    }
}

@media screen and (max-width: 999px) {

    .shopify-section--main-product .product-info__block-list,
    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="title"] .product-title.h1 {
        text-align: center;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="description"] ul {
        text-align: left;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="description"] ul,
    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="price"] .price-list,
    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="share-buttons"] .share-buttons {
        justify-content: center;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="buy-buttons"] .v-stack.gap-4,
    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="quantity-selector"] .v-stack.gap-1 {
        justify-items: center;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="buy-buttons"] .button {
        min-width: 25rem;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="description"] {
        max-width: 44rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 580px) {
    .product-info__block-list .product-info__block-item[data-block-type="title"] .product-title.h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .product-info__block-list .product-info__block-item[data-block-type="title"] .product-title.h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 440px) {
    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="buy-buttons"] .v-stack.gap-4 {
        justify-items: normal;
    }

    .shopify-section--main-product .product-info__block-list .product-info__block-item[data-block-type="buy-buttons"] .button {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .product-content-below-gallery .accordion .accordion__toggle.h6 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 360px) {
    .shopify-section--main-product .product-info__block-list .product-info__block-item .product-title.h2 {
        font-size: 2.7rem;
    }
}

/** shopify-section--related-product-variants */

.shopify-section--related-product-variants {
    & .section-spacing {
        padding-block-start: 3.75rem;
    }

    & .section-stack {
        row-gap: 1.875rem;
    }

    & .section-header h2.h2 {
        margin-block-start: 0.25rem;
    }

    & .splide__arrows .splide__arrow--prev {
        left: -3.75rem;
    }

    & .splide__arrows .splide__arrow--next {
        right: -3.75rem;
    }

    @media screen and (max-width: 1580px) {
        & .splide__arrows {
            opacity: 0;
            transition: none;

            &:has(+ .splide__track:hover) {
                opacity: 1;
            }

            &:hover {
                opacity: 1;
            }
        }

        & .splide__arrows .splide__arrow--prev {
            left: 0;
            top: 40%;
        }

        & .splide__arrows .splide__arrow--next {
            right: 0;
            top: 40%;
        }
    }

    @media screen and (min-width: 1141px) and (max-width: 1420px) {
        & .product-card .product-card__info .button {
            width: calc(100% - 5rem);
            min-width: 8rem;
        }
    }

    @media screen and (min-width: 861px) and (max-width: 999px) {
        & .product-card .product-card__info .button {
            width: calc(100% - 5rem);
            min-width: 8rem;
        }
    }

    @media screen and (max-width: 640px) {
        & .product-card .product-card__info .button {
            width: calc(100% - 5rem);
            min-width: 8rem;
        }
    }

    @media screen and (max-width: 580px) {
        & .container {
            margin-inline-start: 0;
            margin-inline-end: 0;

            & .section-header {
                margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
                margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
            }
        }

        & .splide__pagination {
            bottom: -1rem;
        }
    }

    @media screen and (max-width: 480px) {
        & .product-card {
            --card-distance: .75rem;
        }
    }
}

/** shopify-section--page-banner / search banner */

.shopify-section--page-banner,
.shopify-section--main-search {

    & .content-over-media {
        @media screen and (max-width: 699px) {
            --content-over-media-height: 18rem !important;
        }
    }

    & .content-over-media .overlay-box {
        border-radius: 0.75rem;
        box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(0.625rem);
        -webkit-backdrop-filter: blur(0.625rem);

        & .h1, & p.text-large {
            text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
        }

        & .h1 {
            font-family: var(--heading-font-family);
            font-size: 3rem;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: center;
            color: var(--white);
        }

        & p.text-large {
            margin-block-start: 0.125rem;
            font-family: var(--text-font-family);
            font-size: 1.25rem;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.4;
            letter-spacing: normal;
            text-align: center;
            color: var(--white);
        }

        @media screen and (max-width: 860px) {
            backdrop-filter: blur(0.15rem);

            & .h1 {
                font-size: 2.6rem;
            }
        }
    }
}

/** sitzsack-tooltips */

.sitzsack-tooltips {
    background: url(/cdn/shop/files/icon-bg-petrol.jpg?v=1738159095) center / cover no-repeat;
    padding: 4.0625rem 0 0 0 !important;
}

.sitzsack-tooltips .section-header h2.h2-center-inverse {
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
}

.sitzsack-tooltips .flex-wrapper {
    margin-top: -3.75rem;
    align-items: center;
}

.sitzsack-tooltips .flex-wrapper .flex-section {
    width: calc((100% - 43.125rem) / 2);
}

.sitzsack-tooltips .flex-wrapper .flex-section.mobil {
    display: none;
}

.sitzsack-tooltips .flex-wrapper .flex-section.left {
    display: flex;
    justify-content: flex-end;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center {
    width: 43.125rem;
    position: relative;
    align-self: flex-end;
}

.sitzsack-tooltips .flex-wrapper .flex-section.right {
    display: flex;
    justify-content: flex-start;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul {
    list-style: none;
    margin-inline-start: 0;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul li {
    display: flex;
    align-items: center;
    margin: 3.125rem 0;
    padding-inline-start: 0;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul li:first-child {
    margin-top: 0;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul li:last-child {
    margin-bottom: 0;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul li img {
    margin-right: 1.25rem;
}

.sitzsack-tooltips .flex-wrapper .flex-section ul li p.text-large-inverse {
    text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip {
    position: absolute;
    width: 15.625rem;
    min-height: 10rem;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.left .dot {
    top: 9.0625rem;
    right: -4.375rem;
    left: unset;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.right .dot {
    top: 9.0625rem;
    left: -4.375rem;
    right: unset;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip .tooltip-inner {
    display: none;
    border-radius: 0.25rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.15);
    padding-bottom: 1.1875rem;
    z-index: +1;
    position: absolute;
    width: 15.625rem;
    height: 21.25rem;
    border-radius: 0.75rem;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip .dot {
    position: absolute;
    content: '';
    height: 3.125rem;
    width: 3.125rem;
    background: url(/cdn/shop/files/icon-popover-plus-black.svg?v=1738161902);
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.2);
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip .dot {
    top: -4.375rem;
    left: calc(50% - 1.5625rem);
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.active {
    z-index: +1;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.active .tooltip-inner {
    display: block;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.active .dot {
    background: url(/cdn/shop/files/icon-popover-plus-turquoise.svg?v=1738161901);
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white);
    box-shadow: 0.125rem 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.45)
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip.active .dot::after {
    position: absolute;
    content: '';
    background-color: #bdf5f4;
    height: 3.75rem;
    width: 3.75rem;
    top: -0.3125rem;
    left: -0.3125rem;
    border-radius: 50%;
    animation: glow 1.2s infinite ease;
    z-index: -1;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip .tooltip-inner img {
    margin-bottom: 1rem;
}

.sitzsack-tooltips .flex-wrapper .flex-section.center .tooltip .tooltip-inner p {
    margin: 0 1.1875rem;
}


@media screen and (max-width: 1360px) {
    .sitzsack-tooltips .flex-wrapper .flex-section:not(.center) {
        margin-bottom: 2.5rem;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li {
        flex-direction: column;
        justify-content: center;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li img {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li p.text-large-inverse {
        text-align: center;
    }
}

@media screen and (max-width: 1140px) {
    .sitzsack-tooltips .flex-wrapper {
        flex-wrap: wrap;
        margin-top: 1.875rem;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.left {
        order: 1;
        width: 100%;
        max-width: 45rem;
        margin-left: auto;
        margin-right: auto;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.right {
        order: 2;
        width: 100%;
        max-width: 45rem;
        margin-left: auto;
        margin-right: auto;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.center {
        order: 3;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li {
        width: calc(100% / 3);
        margin: 1.875rem 0;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li img {
        margin-bottom: .75rem;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li p {
        text-align: center;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li:first-child {
        margin-top: auto;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li:last-child {
        margin-bottom: auto;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.center {
        margin-left: auto;
        margin-right: auto;
        margin-top: -4.5rem;
    }
}

@media screen and (max-width: 880px) {
    .sitzsack-tooltips {
        padding: 3.625rem 0 2.25rem !important;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section:not(.center) {
        margin-bottom: 0;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.center {
        display: none;
    }
}

@media screen and (max-width: 580px) {

    .sitzsack-tooltips .flex-wrapper .flex-section.left,
    .sitzsack-tooltips .flex-wrapper .flex-section.right {
        display: none;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.mobil {
        display: block;
        width: 100%;
        max-width: 23.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section.mobil ul {
        flex-wrap: wrap;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .sitzsack-tooltips .flex-wrapper .flex-section ul li img {
        margin-bottom: 0.75rem;
        max-width: 4.5rem;
    }
}

@media screen and (max-width: 380px) {
    .sitzsack-tooltips .flex-wrapper {
        margin-top: 0.625rem;
    }

    .sitzsack-tooltips .flex-wrapper .flex-section ul li .text-large {
        font-size: 1.125rem;
    }
}

/** contact-form */

:is(.input:focus, .textarea:focus, .select:focus-visible) {
    border-color: var(--black-primary);
}

.shopify-section--contact .button {
    justify-self: center;
    min-width: 25rem;
}

.shopify-section--contact .form .agree_contact {
    margin-block-end: 1rem;
    display: flex;
    gap: 8px;
    justify-self: center;

    & label {
        display: block;
    }
}

.shopify-section--contact .form .agree_contact a {
    color: var(--black-primary);

    &:hover {
        color: var(--turquoise);
    }
}

@media screen and (max-width: 480px) {
    .shopify-section--contact .button {
        min-width: 100%;
        max-width: 100%;
    }
}

/** cart */

.header__cart-dot {
    color: var(--red);
}

.cart-drawer__footer p.text-subdued {
    font-family: var(--text-font-family);
    font-size: .875rem;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    color: rgb(var(--text-color) / .65);
}

.cart-drawer__footer .agree-agb {
    color: rgb(var(--text-color) / .65);

    & a {
        color: var(--black-primary);
        text-decoration: underline;
    }
}

.cart-drawer__footer .agree-agb a:hover {
    color: var(--turquoise);
}

/** shopify-section--faq */

.shopify-section--faq .accordion__toggle.text-lg>* {
    font-family: var(--text-font-family);
    font-size: 1.25rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    color: var(--black);
}

.shopify-section--faq .faq__content .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6.25rem;
    margin-block-end: 1.875rem;
}

.shopify-section--faq .faq__content .grid-wrapper .grid-section.sec-left .accordion:first-child,
.shopify-section--faq .faq__content .grid-wrapper .grid-section.sec-right .accordion:first-child {
    border-top: none;
}

.shopify-section--faq .faq__content .grid-wrapper .grid-section.sec-left .accordion:last-child,
.shopify-section--faq .faq__content .grid-wrapper .grid-section.sec-right .accordion:last-child {
    border-bottom: none;
}

/** shopify-section--faq */

.shopify-section--faq {
    & .section-header h2.h2 {
        font-family: var(--heading-font-family);
        font-size: 3rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: var(--black-primary);
    }

}

/** sitespeak */

#sitespeak-launcher {
    --launcher-size: 4.375rem;

    @media screen and (max-width: 760px) {
        --launcher-size: 3.75rem;
    }

    @media screen and (max-width: 480px) {
        --launcher-size: 3rem;
    }

    z-index: 3 !important;
    width: var(--launcher-size) !important;
    height: var(--launcher-size) !important;
    min-width: var(--launcher-size) !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    background-color: var(--blue-lilac) !important;
    bottom: calc(1.375rem + var(--sitespeak-distance)) !important;
    right: 1.375rem !important;

    @media screen and (max-width: 480px) {
        bottom: calc(1rem + var(--sitespeak-distance)) !important;
        right: 1.125rem !important;
    }

    & #sitespeak-launcher-inner {
        width: var(--launcher-size) !important;
        min-width: var(--launcher-size) !important;
        height: var(--launcher-size) !important;
        background-color: var(--blue-lilac) !important;

        & svg {
            display: none;
        }

        & span {
            background: url(/cdn/shop/files/icon-ai-stars-button.png?v=1744701349) center / contain no-repeat;
            padding: 0 !important;
            margin-top: -0.3125rem !important;
            margin-left: 0.1875rem !important;
            color: transparent;
            width: 2.375rem;
            border-color: transparent !important;

            @media screen and (max-width: 480px) {
                width: 1.875rem;
                margin-top: -0.25rem !important;
                margin-left: 0.125rem !important;
            }
        }
    }

    &::after {
        content: '';
        position: absolute;
        background: #bdf5f4;
        --hot-spot-after-size: calc(var(--launcher-size) + 0.5rem);
        animation: 1.4s both linear infinite glow;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 50%;
    }

    &.loaded.open {
        --launcher-size: 3.375rem;

        &::after {
            animation: none;
        }
    }
}

/** Accessibility Assistant */

.aa-cc-body-fix-compliance-part {
    z-index: 9999 !important;
}

@media screen and (max-width: 760px) {
    .aa-cc-fix-icon-body {
        bottom: 1.625rem !important;
        left: 0.875rem !important;
        transition: none !important;
    }
}

@media screen and (max-width: 700px) {
    .aa-cc-fix-icon-body {
        bottom: calc(1.25rem + var(--accessibility-distance)) !important;
    }

    .aa-cc-fix-icon-body .aa-cc-iconimg,
    .aa-cc-fix-icon-body .aa-cc-iconimg svg {
        width: 3.75rem !important;
        height: 3.75rem !important;
    }
}

@media screen and (max-width: 480px) {
    .aa-cc-fix-icon-body {
        bottom: calc(0.25rem + var(--accessibility-distance)) !important;
        left: 0.625rem !important;
    }

    .aa-cc-fix-icon-body .aa-cc-iconimg,
    .aa-cc-fix-icon-body .aa-cc-iconimg svg {
        width: 3rem !important;
        height: 3rem !important;
    }
}