/** 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;
}

.price-list:has(compare-at-price) sale-price {
    color: var(--red);
}

/** buttons */

.button {
    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--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--secondary {
        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--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--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--disabled,
    &.w-full[disabled] {
        color: var(--white);
        background: #616161;

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

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

.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;
    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);
    }
}

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

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

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

.circle-button {
    --circle-button-size: 3rem;
    --size-multiplier: 1;
    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);
    }

    &:hover 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);
    }

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

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

.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);
        }

        &:hover: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);
        }
    }

    .splide__arrow 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,
    .textarea {
        position: relative;
        border-radius: 0.25rem;

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

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

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

html.is-app .announcement-bar .content.mobil p {
    font-size: 0.75rem !important;
}

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

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

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

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

    .grid-wrapper p:first-child {
        font-size: var(--announcement-bar-font-size);
    }

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

    .content.mobil p {
        font-size: var(--announcement-bar-font-size);
    }

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

    carousel-prev-button button svg,
    carousel-next-button button svg {
        max-height: 0.875rem;
    }

    @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:hover {

    carousel-prev-button 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;
    }
}

.announcement-bar .countdown-wrapper .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;
    }

    p 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;
    }
}

#mobil-announcement .announcement-bar {
    padding-block: 0;

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

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

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

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

#mobil-announcement .announcement-bar .announcement-bar__carousel {
    max-width: 100%;
}

#mobil-announcement .announcement-bar .announcement-bar__carousel .prose.cd {
    visibility: visible !important;
    margin: 1.5rem auto 1.75rem;
}

#mobil-announcement .announcement-bar .announcement-bar__carousel .prose.cd .grid-wrapper {
    grid-template-columns: auto !important;
    justify-items: center;
    row-gap: .5rem;
}

#mobil-announcement .announcement-bar .announcement-bar__carousel .prose.cd .grid-wrapper .countdown-wrapper {
    margin-block-start: 0;

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

    .countdown-container p {
        margin-block-start: 0 !important;
    }

    .countdown-container p span {
        text-shadow: none;
    }

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

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

#mobil-announcement .announcement-bar .announcement-bar__carousel .prose.cd .grid-wrapper .button {
    margin-block-start: .5rem;
}

#mobil-announcement .announcement-bar .announcement-bar__carousel .prose.mess .grid-wrapper {
    grid-template-columns: auto !important;
    justify-items: center;
    row-gap: .5rem;

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

/** header */

.shopify-section--header {
    --header-grid: "primary-nav logo secondary-nav" / minmax(0, auto) auto minmax(0, 1fr) !important;

    background: var(--white);
    box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.1);

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

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

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

    .header__secondary-nav .header__search-link .search {
        display: grid;
        grid-template-columns: auto auto;
        gap: 0.5rem;
        align-items: center;
    }

    .header__secondary-nav .header__search-link .search span.main-nav {
        font-size: 0.875rem;
        font-weight: 500;

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

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

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

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

    .header__secondary-nav .header__ki-link .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;
        }

        &:hover::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;
        }
    }

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

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

    @media screen and (max-width:699px) {
        .header__secondary-nav .header__search-link::after {
            right: -1.17rem;
        }

        .header__secondary-nav .header__ki-link::after {
            right: -1.12rem;
        }
    }

    @media screen and (max-width:460px) {
        .header__secondary-nav .header__search-link .search {
            display: inline;
        }

        .header__secondary-nav .header__search-link {
            margin-right: 0;

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

    @media screen and (max-width: 420px) {
        .header__secondary-nav .header__ki-link {
            margin-right: 0;

            &::after {
                display: none;
            }
        }

        .header__secondary-nav .header__ki-link .ki-assist span {
            display: none;
        }
    }
}

@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__linklist.divide-y .header-sidebar__nested-linklist {
    margin-block-end: calc(1rem + var(--header-linklist-padding-block));
}

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

    .header-sidebar__nested-linklist a.dropdown-level-2 {
        --icon-size-multiplier: .7;
        position: relative;
        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: 0.5rem;
    }

    .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;
    }

    &.subs .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;

    }

    &.subs: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);
    overflow: hidden;
    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: 2.0625rem;
        flex: 0 1 49.375rem;
        justify-content: flex-start;
    }

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

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

        &::after {
            position: absolute;
            content: '';
            height: calc(var(--mega-menu-min-height) + 5rem);
            left: calc(var(--column-width) - 0.625rem);
            top: -2.5rem;
            width: 0.625rem;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
        }
    }

    .mega-menu__linklist li a.h6 {
        position: relative;
        padding-left: 3.625rem;
        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);
        z-index: +1;

        &: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;
            z-index: -1;
        }

        &: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;
        }
    }

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

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

    .mega-menu__linklist li ul li:not(:last-child) {
        margin-bottom: 0.25rem;
    }

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

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

        &: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)));
        }
    }

    .mega-menu__linklist li.v-stack {
        display: contents;
        position: absolute;
    }

    .mega-menu__linklist li.v-stack a.h6 {
        max-width: 14rem;
    }

    .mega-menu__linklist li.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;
        padding-left: 0;

        &::before {
            display: none;
        }

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

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

    .mega-menu__linklist li a+ul {
        row-gap: 2.5rem;
        overflow: visible;
    }

    .mega-menu__linklist li a.h6:hover+ul,
    .mega-menu__linklist li a.h6:active+ul,
    .mega-menu__linklist li ul:hover,
    .mega-menu__linklist li a.h6.default-selected+ul,
    .mega-menu__linklist li a.h6.active+ul,
    .mega-menu__linklist li 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;
        }
    }

    .mega-menu__promo .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;
        }
    }

    .mega-menu__promo .promo-item .overflow-hidden {
        border-radius: 0.5rem;
    }
}

.mega-menu.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 {
        --icon-size-multiplier: 1;
        max-width: unset;
        display: flex;
        align-items: center;
        padding-left: 4.625rem;
        text-transform: none;

        @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:not(.only-first) .mega-menu__linklist li a:not(.dropdown-level-1-show-all)::after {
    background-color: #0000000a;
    border-radius: .5rem 0 0 .5rem;
}

.mega-menu:not(.only-first) .mega-menu__linklist li.v-stack a.h6::before {
    --icon-width: 1.625rem;
    --icon-height: 1.625rem;
    --icon-size-multiplier: 1;
    content: "";
    position: absolute;
    top: calc(50% - (var(--icon-height) / 2));
    left: calc(30px - (var(--icon-width) / 2));
    width: calc(var(--icon-width) * var(--icon-size-multiplier));
    height: calc(var(--icon-height) * var(--icon-size-multiplier));
    background: var(--icon-url) center / contain no-repeat;
}

.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,
.mega-menu .mega-menu__linklist.unstyled-list li[data-title="ratgeber"] a.h6:hover {
    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,
.mega-menu .mega-menu__linklist.unstyled-list li[data-title="ratgeber"] a.h6:hover::after {
    border-right: 0.0625rem solid var(--white);
    z-index: -1;
    background-color: var(--white);
    box-shadow: -0.125rem 0.1875rem 0.25rem 0 rgba(0, 0, 0, 0.08);
}

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

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

.mega-menu .ratgeber {
    opacity: 0;
    pointer-events: none;
    position: absolute;

    &:not(.visible) {
        width: 0;
        height: 0;
    }

    .ratgeber-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(480px, 33.25rem));
        gap: 0.625rem;
    }

    &.visible {
        opacity: 1;
        pointer-events: auto;
        flex: 0 1 73.25rem;
        margin-left: -41.875rem;
        position: relative;
        padding-left: 1.6875rem;

        @media screen and (max-width: 1490px) {
            margin-left: -47%;
        }

        @media screen and (max-width: 1399px) {
            margin-left: -40%;
            padding-left: 1rem;
        }

        @media screen and (max-width: 1380px) {
            margin-left: -47%;
        }

        @media screen and (max-width: 1280px) {
            margin-left: -46%;
        }
    }

    .rat-item {
        padding: 1.125rem 0.9375rem;
        border-radius: 0.5rem;
        border: solid 1px transparent;

        &:hover {
            box-shadow: -2px 3px 4px 0 rgba(0, 0, 0, 0.08);
            border: solid 1px #e5e5e5;
        }
    }

    .rat-item .rat-inner {
        display: flex;
        max-width: 500px;
        gap: 27px;
    }

    .rat-item .rat-inner a.img-wrapper {
        max-width: 130px;
        display: block;
    }

    .rat-item .rat-inner .block-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .rat-item .rat-inner .block-content p.h3,
    .rat-item .rat-inner .block-content p.text,
    .rat-item .rat-inner .block-content a.link {
        text-transform: none;
    }

    .rat-item .rat-inner .block-content a.link {
        align-self: flex-start;
    }
}

/** 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) {
    .shopify-section--slideshow .slideshow__slide .content-over-media> :not(img, video, iframe, svg, video-media, picture, style) {

        &.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) {
    .shopify-section--slideshow .slideshow__slide .content-over-media> :not(img, video, iframe, svg, video-media, picture, style) {

        &.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;
    }
}

@media screen and (max-width: 820px) {
    .shopify-section--slideshow .slideshow__slide-content .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) {
    .shopify-section--slideshow .slideshow__slide-content .prose {
        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);
    }

    .grid-section.sec-header .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);
        }
    }

    .grid-section.sec-header .filter-bar .btn-grp {
        display: flex;
        gap: 1.25rem;
        align-items: center;
    }

    .grid-section.sec-header .filter-bar .btn-grp .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;
        }
    }

    .grid-section.sec-header .filter-bar .btn-grp .button.filter-btn:not(.active):hover {
        color: var(--turquoise);
        box-shadow: 0 0.0625rem 0.1875rem 0 rgba(17, 77, 76, 0.2);
    }

    .grid-section.sec-header .filter-bar .btn-grp .button.filter-btn:not(.active):hover::after {
        border: solid 0.125rem var(--black-primary);
    }

    .grid-section.sec-header .filter-bar .btn-grp .button.filter-btn .icon-wrapper img {
        max-height: 1.75rem;
    }

    .grid-section.sec-header .filter-bar .btn-grp .button.filter-btn:active,
    .grid-section.sec-header .filter-bar .btn-grp .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);
        }
    }

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

    .splide.color-chooser .splide__slide__row {
        justify-content: center;
    }

    .splide.color-chooser .splide__slide {
        padding-top: 0.625rem;
    }

    .splide.color-chooser .splide__slide .color-swatch {
        --swatch-size: 4.5rem;
        --swatch-offset: 0.25rem;
    }

    .splide.color-chooser .splide__slide .color-swatch: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);
    }

    .splide.color-chooser .splide__slide .color-swatch: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);
    }

    .splide.color-chooser .splide__slide .color-swatch[data-tooltip="Weiß"] {
        border: none;
        background: var(--white);
        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.item_chooser .splide__slide {
        padding: 0.625rem;
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .splide.item_chooser .splide__slide .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;

        &: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;
        }
    }

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

    .splide.item_chooser .splide__slide .filter-item: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);
    }

    .splide.item_chooser .splide__slide .filter-item.style-icon .img-wrapper {
        display: flex;
        align-items: center;
        margin-top: 1.375rem;
        z-index: +1;
    }

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

    .splide.item_chooser .splide__slide .filter-item.style-full .img-wrapper img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .splide.item_chooser .splide__slide .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: 960px) {
        .grid-section.sec-header {
            grid-template-columns: auto;
            row-gap: 2rem;
        }

        .grid-section.sec-header h2.h2 {
            text-align: center;
        }

        .grid-section.sec-header .filter-bar::before {
            display: none;
        }
    }

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

        .splide.color-chooser .splide__slide {
            padding-top: 0.5rem;
        }

        .splide.color-chooser .splide__slide .color-swatch {
            --swatch-size: 4rem;
        }

        .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;
        }

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

        .container .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 (max-width: 640px) {
        .grid-section.sec-header .filter-bar {
            grid-template-columns: auto;
            justify-content: center;
        }

        .grid-section.sec-header .filter-bar p.h6-muted {
            text-align: center;
        }
    }

    @media screen and (max-width: 520px) {
        .splide.item_chooser .splide__slide .filter-item {
            --item-size: 8rem;
        }

        .splide.item_chooser .splide__slide .filter-item.style-icon .img-wrapper {
            transform: scale(.9);
            margin-top: .8rem;
        }

        .splide.item_chooser .splide__slide .filter-item.style-full .img-wrapper {
            max-height: 5.8rem;
        }
    }

    @media screen and (max-width: 500px) {
        .splide.color-chooser .splide__slide {
            padding-top: 1.5rem;
        }

        .splide.color-chooser .splide__slide .color-swatch {
            --swatch-size: 6rem;
        }
    }

    @media screen and (pointer: fine) {
        .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;
    }

    .container.side-block .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;
    }

    .container.side-block .teaser-block .image-wrapper,
    .container.side-block .teaser-block .video-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .container.side-block .teaser-block .video-wrapper {
        padding-bottom: 0;
    }

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

    .container.side-block .teaser-block .teaser-content {
        z-index: +1;
        position: relative;
        padding: 1.25rem;
        text-align: center;
    }

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

    .container.side-block .teaser-block .teaser-content h2.h2-category {
        margin-bottom: 2.5rem;
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
    }

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

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

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

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

    @media screen and (min-width: 1481px) {
        .container.side-block {
            min-height: 33.125rem;
        }
    }

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

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

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

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

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

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

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

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

    @media screen and (max-width: 860px) {
        .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);
        }

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

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

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

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

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

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

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

/** product-item */

.product-card {
    --bottom-distance: 1.9375rem;
    --card-distance: 1.25rem;
    padding: var(--card-distance) var(--card-distance) calc(var(--card-distance) + var(--bottom-distance) + 2.625rem + 3.8rem) 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;
    }

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

    .product-card__figure .badge-list .badge.badge--custom {
        color: var(--white);
    }

    .product-card__figure .badge-list .badge.badge--custom.badge--bestseller,
    .product-card__figure .badge-list .badge.badge--custom.badge--topseller {
        background: var(--black-primary);
    }

    .product-card__figure .badge-list .badge.badge--custom.badge--neu,
    .product-card__figure .badge-list .badge.badge--custom.badge--neuheit {
        background: var(--apple-green);
    }

    .product-card__figure .badge-list .badge.badge--custom.badge--im-angebot,
    .product-card__figure .badge-list .badge.badge--custom.badge--black-deal,
    .product-card__figure .badge-list .badge.badge--custom.badge--bestpreis,
    .product-card__figure .badge-list .badge.badge--custom.badge--spar-set,
    .product-card__figure .badge-list .badge.badge--custom.badge--x-mas-deal {
        background: rgb(var(--on-sale-badge-background));
    }

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

    .product-card__info .product-title {
        text-wrap: balance;
    }

    .product-card__info .price-list {
        margin-top: 0.25rem;
        position: absolute;
        column-gap: 1.25rem;
        bottom: calc(var(--bottom-distance) + var(--card-distance) + 3.75rem);
    }

    .product-card__info .price-list sale-price.price-grid {
        position: relative;
    }

    .product-card__info .price-list sale-price.price-grid span.from {
        font-size: 0.875rem;
    }

    .product-card__info .price-list sale-price.price-grid.b4b-compare-at-price span.from {
        display: none;
    }

    .product-card__info .price-list unit-price.price-grid {
        flex: 1 1 100%;
        text-align: center;
        font-size: 0.875rem;
        color: var(--grey);
        margin-top: 0.125rem;
    }

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

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

    .product-card__info fieldset {
        max-width: 12.5rem;
        margin-top: 0.125rem;
    }

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

    .product-card__info fieldset .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;
        }
    }

    .product-card__info fieldset.visible .color-swatch.hidden {
        display: grid;
    }

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

    .product-card__info .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);
    }

    &.variable-products[data-unavailable="true"] .product-card__figure>.badge-list>.badge.badge--sold-out {
        display: flex !important;
    }

    @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.5rem;
            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;
        }
    }

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

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

/** savings */

.saving-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-rows: 1.25rem;

    .percent-val {
        background: #c64b5c;
        color: var(--white);
        display: flex;
        align-items: center;
        border-radius: 2px 0px 0px 2px;
        padding: 0px 0.25rem 0px 0.25rem;
    }

    .percent-val span {
        font-size: 0.625rem;
        font-weight: 500;
    }

    .money-val {
        display: flex;
        align-items: center;
        border: solid 1px #2e393b19;
        border-left: none;
        padding: 0px 0.5rem 0px 0.375rem;
        border-radius: 2px;
    }

    .money-val span {
        font-size: 0.625rem;
        font-weight: 500;
        line-height: normal;
    }

    .money-val span>span {
        font-weight: 600;
        color: #c64b5c;
    }
}

.product-info .saving-wrapper {
    margin-bottom: 0.625rem;

    @media screen and (min-width: 1000px) {
        margin-right: auto;
    }
}

/** wf-wishlist */

.wf-wishlist-collection-icon {
    width: 1.5rem !important;

    &.wg-icon-top-left {
        left: calc(0.625rem + var(--card-distance)) !important;
        top: calc(0.625rem + var(--card-distance)) !important;
    }
}

.wf-wishlist-collection-icon .collection_icon_new,
.wf-wishlist-collection-icon .collection_icon_new_selected {
    height: 1.5rem !important;
    width: 1.5rem !important;

    .wg-heart-icon-outline-solid.wg-collectionIcon {
        background-image: url(/cdn/shop/files/icon-product-wishlist_002ac0cc-ee6b-4fa4-8ab0-a10dac35e44e.svg?v=1774342424) !important;
        background-size: contain;
        border: none !important;
        height: 1.5rem !important;
        width: 1.5rem !important;
        filter: none !important;
    }

    .wg-collectionIcon.selected {
        background-image: url(/cdn/shop/files/icon-product-wishlist-selected.svg?v=1774342425) !important;
        background-size: contain;
        border: none !important;
        height: 1.5rem !important;
        width: 1.5rem !important;
        background-color: transparent !important;
    }
}

/** 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--horizontal .before-after__after-image .before-after__content-wrapper {
        justify-items: center;
        inset-inline-end: 0;
        inset-block-end: 4.875rem;
        width: 50%;
        text-align: center;
    }

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

    .before-after--horizontal .before-after__cursor {
        --icon-size: 4.25rem;
        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);
        }
    }

    .before-after--horizontal .before-after__cursor .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;

        &::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);
        }
    }

    .before-after--horizontal .before-after__cursor .cursor-icon svg {
        max-width: 2.125rem;
        z-index: +1;
    }

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

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

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

        .before-after--horizontal .before-after__before-image .before-after__content-wrapper .h1-hero,
        .before-after--horizontal .before-after__after-image .before-after__content-wrapper .h1-hero {
            font-size: 3rem;
        }

        .before-after--horizontal .before-after__cursor {
            --icon-size: 4rem;
        }

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

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

        .before-after--horizontal .before-after__before-image .before-after__content-wrapper .h1-hero,
        .before-after--horizontal .before-after__after-image .before-after__content-wrapper .h1-hero {
            font-size: 2.6rem;
        }
    }

    @media screen and (max-width: 480px) {
        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;
    }

    .anchor-wrapper>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;
    }

    .multi-column__item .rounded {
        border-radius: 0.75rem;
    }

    .multi-column__item .gradient-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

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

.shopify-section--shop-the-look {
    .section-spacing {
        padding-block-start: 5rem !important;
    }

    .product-card {
        margin: -0.625rem -0.625rem 0 -0.625rem;
    }

    .product-card .button {
        min-width: unset;
        width: calc(100% - 5rem);
    }

    .anchor {
        position: relative;
    }

    .anchor>div {
        position: absolute;
        top: -2.5rem;
    }

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

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

    .shop-the-look__carousel:not(.is-expanded) .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;

        &::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 {
            --hot-spot-after-size: calc(var(--hot-spot-size) + 0.5rem);
            background: #bdf5f4;
            animation: 1.4s both linear infinite glow;
        }
    }

    @media screen and (pointer: fine) {
        .shop-the-look__hot-spot:hover {
            transform: scale(1.33);
        }
    }

    .shop-the-look__hot-spot[aria-current="true"] {
        transform: scale(1.33);
    }

    @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;
        }
    }

    @media screen and (max-width: 999px) {
        .section-spacing {
            padding-block-start: 3rem !important;
        }

        .button.w-full {
            max-width: 16rem;
            margin: 0 auto;
        }
    }

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

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

@media screen and (max-width: 999px) {
    .shop-the-look__popover.popover .shop-the-look__item-product.w-full {
        width: auto;
        min-width: 18rem;
    }
}

/** shopify-section--newsletter */

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

    .section-spacing .anchor-wrapper {
        position: relative;
    }

    .section-spacing .anchor-wrapper>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;
    }

    .content-over-media .custom-content,
    .content-over-media .newsletter-content {
        grid-area: unset;
    }

    .content-over-media .custom-content h2.h4,
    .content-over-media .newsletter-content h2.h4,
    .content-over-media .custom-content p.h4,
    .content-over-media .newsletter-content p.h4 {
        margin-block-end: 1.125rem;
    }

    .content-over-media .custom-content p:not(.h4),
    .content-over-media .newsletter-content p:not(.h4) {
        margin-block-start: 0;
    }

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

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

    .content-over-media .custom-content .grid-wrapper {
        grid-template-columns: auto;
        gap: 3.75rem;

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

    .content-over-media .custom-content .grid-wrapper .grid-section {
        display: grid;
        align-items: center;
        grid-template-columns: 1.125rem max-content;
        gap: 0.6875rem;
    }

    .content-over-media .custom-content .grid-wrapper .grid-section a.link:hover {
        color: var(--turquoise);
    }

    .content-over-media .newsletter-content .form.justify-self-center {
        row-gap: 0.6875rem;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row .button {
        min-width: 10.25rem;
        max-width: 10.25rem;
        padding: 0 1rem;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row .form-control {
        column-gap: 1rem;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row .form-control .input {
        border-radius: 1.3125rem;
        padding: 0 1.3125rem;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row.newsletter-check {
        gap: 0.5rem;
        display: flex;
        align-items: end;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row.newsletter-check label {
        display: block;
    }

    .content-over-media .newsletter-content .form.justify-self-center .form-row.newsletter-check label a {
        text-decoration: underline;
        color: var(--black-primary);

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

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

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

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

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

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

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

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

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

        .content-over-media .newsletter-content .form-row:not(.newsletter-check) .form-control {
            flex: 1 0 100%;
        }

        .content-over-media .newsletter-content .form-row:not(.newsletter-check) .form-control input {
            min-height: 2.625rem;
        }

        .content-over-media .newsletter-content .form-row:not(.newsletter-check) .button {
            min-width: 100% !important;
            max-width: 100% !important;
        }
    }

    @media screen and (max-width: 380px) {
        .content-over-media .newsletter-content .form.justify-self-center .form-row.newsletter-check {
            align-items: start;
        }

        .content-over-media .newsletter-content .form.justify-self-center .form-row.newsletter-check label {
            max-width: 12.5rem;
            text-align: left;
            display: block;
        }
    }
}

/** Footer */

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

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

    .footer .container:first-of-type .footer__inner {
        row-gap: 2.5rem;
    }

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

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

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

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

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

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

    .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;
    }

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

    .footer__aside .text-extra-small-muted-inverse p a {
        color: var(--white);
        text-decoration: underline;

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

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

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

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

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

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

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

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

    @media screen and (max-width: 860px) {
        .footer .container:first-of-type .footer__inner {
            max-width: 37.5rem;
            margin: 0 auto;
        }

        .footer__block-list {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 3rem;
        }

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

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

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

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

        .footer__block-list .footer__block.footer__block--social_media:nth-child(4) .social-media--list {
            justify-content: center;
        }

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

        .footer__block-list .footer__block.footer__block--payment:nth-child(5) .payment-methods {
            justify-content: center;
        }

        .footer__aside {
            text-align: center;
        }
    }

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

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

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

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

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

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

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

.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 .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);
    }

    .content-over-media .overlay-box h1.h1-center-inverse {
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
    }

    .content-over-media .overlay-box p.text-large-inverse-center {
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
        margin-block-start: 0.125rem;
    }

    .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-bar .breadcrumb--floating {
        display: block !important;
        position: relative;
        inset-block-start: unset;
        inset-inline-start: unset;
    }

    .breadcrumb-bar .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;
    }

    .breadcrumb-bar .breadcrumb__list-item .smallcaps:not([aria-current="page"]):hover {
        color: var(--black-primary);
        text-decoration: underline;
    }

    .breadcrumb-bar .breadcrumb__list-item .smallcaps[aria-current="page"] {
        color: var(--black-primary);
        font-weight: 600;
    }

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

    @media screen and (max-width: 860px) {
        .content-over-media .overlay-box {
            backdrop-filter: blur(0.15rem);
        }

        .content-over-media .overlay-box h1.h1-center-inverse {
            font-size: 2.6rem;
        }
    }

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

/** 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;
    }

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

/** filter-button 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.5rem;
        --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 classic"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-xxlclassic.svg?v=1776863780);
    }

    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"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-drops.svg?v=1776863780);
    }

    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"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-2in1.svg?v=1776863780);
    }

    label[data-title="hocker & poufs"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-hockerpoufs.svg?v=1776863780);
    }

    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.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-loungemoebel-sessel.svg?v=1776863780);
    }

    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="kids"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-kidsteens.svg?v=1776863781);
    }

    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="play"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-kidsplay.svg?v=1776863780);
    }

    label[data-title="flex & float"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-flexfloat.svg?v=1776863780);
    }

    label[data-title="giant"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-giant.svg?v=1776863780);
    }

    label[data-title="triangle"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-sitzsack-triangle.svg?v=1776863780);
    }

    label[data-title="sofas & module"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-loungemoebel-sofasmodule.svg?v=1776863780);
    }

    label[data-title="hundemöbel"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-tiermoebel-hund.svg?v=1776863780);
    }

    label[data-title="katzenmöbel"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-tiermoebel-katze.svg?v=1776863780);
    }

    label[data-title="eps perlen"] {
        --icon-size: 1.5rem;
        --icon-url: url(/cdn/shop/files/shop-filter-form-zubehoer-eps.svg?v=1776863780);
    }

    /** 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%;
        }
    }

    label[data-title="feincord"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Feincord.jpg?v=1776678719);

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

    label[data-title="leinenstruktur"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Leinen.jpg?v=1776678836);

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

    label[data-title="plüsch"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Fluffy.jpg?v=1776685414);

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

    label[data-title="stretch jersey"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Flexi.jpg?v=1777985687);

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

    label[data-title="breitcord"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Breitcord.jpg?v=1776677131);

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

    label[data-title="funktionsgewebe"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Outdoor.jpg?v=1776685580);

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

    label[data-title="microvelours"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Microvelours.jpg?v=1776678817);

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

    label[data-title="teddystruktur"] {
        --icon-size: 1.25rem;
        --icon-url: url(/cdn/shop/files/Stoffkachel_Teddy.jpg?v=1776678770);

        &::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ß"],
    .color-swatch[data-tooltip="Weiss"],
    .color-swatch[data-tooltip="weiss"],
    .color-swatch[data-tooltip="weiß"] {
        background: var(--white);
    }
}

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

.shopify-section--main-collection .collection-toolbar,
.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;

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

    .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));
    }

    .collection-toolbar__button 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;
        }
    }

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

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

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

    @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 .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;
        }

        .popover .popover-footer span {
            transition: all .2s;
        }

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

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

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

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

        .popover .popover__value-list .color-swatch.rounded-full:not(:last-child)::before,
        .popover .popover__value-list .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)));
        }

        .popover .popover__value-list .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;
        }

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

        .popover[data-popover-type="farbe"] .popover__value-list .h-stack.wrap.gap-2 {
            --value-gap: 1.1875rem;
            gap: var(--value-gap);
        }

        .popover[data-popover-type="farbe"] .color-swatch {
            --swatch-offset: 0.125rem;
            --swatch-size: 1.5rem;
        }

        .popover[data-popover-type="farbe"] .color-swatch:hover::after {
            color: var(--turquoise);
        }

        .popover[data-popover-type="farbe"] input[checked]+.color-swatch::after {
            font-weight: 600;
        }

        .popover[data-popover-type="farbe"] 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;
        }

        .popover[data-popover-type="farbe"] .color-swatch.rounded-full::before {
            bottom: calc(-1 * (var(--value-gap) / 2));
        }

        .popover[data-popover-type="farbe"] [data-tooltip]::after {
            left: 2.25rem;
        }

        .popover[data-popover-type="form"] .popover__value-list .v-stack,
        .popover[data-popover-type="material"] .popover__value-list .v-stack {
            --value-gap: 1.625rem;
            gap: var(--value-gap);
        }

        .popover[data-popover-type="form"] .checkbox-control .dot-checkbox:checked,
        .popover[data-popover-type="material"] .checkbox-control .dot-checkbox:checked {
            opacity: 0;
        }

        .popover[data-popover-type="form"] .checkbox-control label,
        .popover[data-popover-type="material"] .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;
        }

        .popover[data-popover-type="form"] .checkbox-control:hover label,
        .popover[data-popover-type="material"] .checkbox-control:hover label {
            color: var(--turquoise);
        }

        .popover[data-popover-type="form"] .dot-checkbox:focus~label,
        .popover[data-popover-type="material"] .dot-checkbox:focus~label {
            outline: none;
        }

        .popover[data-popover-type="form"] .checkbox-control label::before,
        .popover[data-popover-type="material"] .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;
        }

        .popover[data-popover-type="form"] .checkbox-control:has(.dot-checkbox:checked) label,
        .popover[data-popover-type="material"] .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;
            }
        }

        .popover[data-popover-type="form"] .checkbox-control:not(:last-child)::before,
        .popover[data-popover-type="material"] .checkbox-control:not(:last-child)::before {
            bottom: calc(-1 * (var(--value-gap) / 2));
        }

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

        #sort-by-popover .popover__value-list {
            --value-gap: 1.625rem;
            gap: var(--value-gap);
        }

        #sort-by-popover .popover__value-list .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)));
            }
        }

        #sort-by-popover .popover__value-list .popover__value-option[data-sort-option='best-selling'] {
            order: 1;
        }

        #sort-by-popover .popover__value-list .popover__value-option[data-sort-option='created-descending'] {
            order: 2;
        }

        #sort-by-popover .popover__value-list .popover__value-option[data-sort-option='price-ascending'] {
            order: 3;
        }

        #sort-by-popover .popover__value-list .popover__value-option[data-sort-option='price-descending'] {
            order: 4;

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

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

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

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

        .collection-toolbar__button span {
            font-size: 0.75rem;
        }
    }

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

.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);
    }
}

#sort-by-popover .popover__value-list {
    text-align: center;
}

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

.shopify-section--main-collection,
.shopify-section--main-search {
    .facets-sidebar .v-stack {
        gap: 2.5rem;
    }

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

    .facets-sidebar ul {
        list-style: none;
        margin-inline-start: unset;
        gap: 1.25rem;
        display: flex;
        flex-direction: column;
    }

    .facets-sidebar ul li {
        padding-inline-start: 0;
    }

    .facets-sidebar ul li.active {
        font-weight: 600;
    }

    .facets-sidebar ul li:not(.active):hover {
        color: var(--turquoise);
    }

    .facets-sidebar ul li .sidebar-menu {
        font-weight: inherit;
        display: grid;
        grid-template-columns: auto 0.625rem;
    }

    .facets-sidebar ul li .sidebar-menu a:hover {
        color: var(--turquoise);
    }

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

    .facets-sidebar ul li ul {
        gap: 0.8125rem;
    }

    .facets-sidebar ul li ul li {
        padding-inline-start: 1.25rem;
    }

    .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;
    }

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

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

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

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

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

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

    .second-menu ul {
        gap: 1.25rem;
    }

    .second-menu ul 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));
        }
    }

    @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 {
            margin-top: 2.5rem;
        }
    }

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

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

.shopify-section--main-collection .container,
.shopify-section--main-search .container {
    --container-max-width: var(--default-container-width);
}

.shopify-section--main-collection .collection,
.shopify-section--main-search .collection {
    margin-block-start: 0;

    .collection__main {
        row-gap: 1.25rem;
    }

    .collection__main .active-facets {
        padding-left: 1.25rem;
    }

    .collection__main .active-facets .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);
    }

    .collection__main .active-facets .removable-facet span.text-subdued {
        padding-bottom: 0.125rem;
    }

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

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

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

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

    @media screen and (min-width: 1400px) and (max-width: 1500px),
    screen and (min-width: 1000px) and (max-width: 1200px),
    screen and (min-width: 700px) and (max-width: 860px),
    screen and (max-width: 580px) {
        .collection__main .product-list .product-card .product-card__info .button {
            width: calc(100% - 5rem);
            min-width: 8rem;
        }
    }

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

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

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

    .shopify-section--main-collection,
    .shopify-section--main-search {
        --collection-items-per-row-medium: 4 !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;
    }

    .accordion__toggle.h6 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;
    }

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

    .accordion__content .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;
        }
    }

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

    .accordion__content .checkbox-control .dot-checkbox:checked+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;
    }

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

    .product-gallery .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;
    }

    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge {
        font-size: 0.8125rem;
        padding: 0.1875rem 0.625rem;
        border-radius: 0.25rem;
    }

    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom {
        color: var(--white);
    }

    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--bestseller,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--topseller {
        background: var(--black-primary);
    }

    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--neu,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--neuheit {
        background: var(--apple-green);
    }

    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--im-angebot,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--black-deal,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--bestpreis,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--spar-set,
    .product-info__block-list .product-info__block-item[data-block-type="title"] .badges .badge.badge--custom.badge--x-mas-deal {
        background: rgb(var(--on-sale-badge-background));
    }

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

    .product-info__block-list .product-info__block-item[data-block-type="liquid"] .teaser-wrapper p {
        font-family: var(--text-font-family);
        color: var(--black-primary);
    }

    .product-info__block-list .product-info__block-item[data-block-type="liquid"] .teaser-wrapper p 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 {
        --icon-size: 1.125rem;
        position: relative;
        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);

        &::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;
    }

    .product-info__block-list .product-info__block-item[data-block-type="price"] .v-stack .price-list--product .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;
    }

    .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch {
        border-radius: .25rem;
    }

    .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch>img {
        transform: scale(0.85);
    }

    .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch.is-disabled::before {
        z-index: +1;
    }

    .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch.sale:not(.is-disabled)::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;
        left: unset;
    }

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

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp {
        display: grid;
        grid-template-columns: repeat(var(--btn-cnt), 5.625rem);
        gap: 0.875rem;
    }

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .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;

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

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .button span.discount {
        font-size: 0.8125rem;
        color: #459006;
    }

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .button:focus span.discount,
    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .button.active span.discount {
        color: var(--yellow-green);
    }

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .button:not(.active):hover {
        background: var(--turquoise);
        border-color: var(--turquoise);
        color: var(--white);
    }

    .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp .button:not(.active):hover span.discount {
        animation: blink 1.6s ease-in-out 0s infinite;
        color: var(--white);
    }

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

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .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;
        }
    }

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .grid-wrapper .inventory.text-warning {
        color: var(--orange);
    }

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .grid-wrapper .inventory.text-error {
        color: var(--red);
    }

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .grid-wrapper .inventory.text-success {
        color: #459006;
    }

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .grid-wrapper .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);
    }

    .product-info__block-list .product-info__block-item[data-block-type="inventory"] .grid-wrapper .grid-section p strong {
        font-weight: 600;
    }

    .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);
    }

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

    .product-sticky-bar .v-stack:has(.saving-wrapper .percent-val) {
        align-items: center;
        gap: 0.25rem 1rem;

    }

    .product-sticky-bar .v-stack:has(.saving-wrapper .percent-val) span.h6 {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }

    .product-sticky-bar .v-stack:has(.saving-wrapper .percent-val) .saving-wrapper {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }

    .product-sticky-bar .v-stack:has(.saving-wrapper .percent-val) .price-list {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
    }

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

    .product-gallery .product-gallery__image-list {
        position: relative;
    }

    .product-gallery .product-gallery__image-list .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;
    }

    .product-gallery .product-gallery__image-list .share-overlay span.share .icon.icon-share {
        width: 1.25rem;
    }

    .product-gallery .product-gallery__image-list .share-overlay ul {
        list-style: none;
        margin-inline-start: 0;
        display: none;
        opacity: 0;
        gap: 1.125rem;
        transition: opacity .2s ease-in-out;
        position: relative;
    }

    .product-gallery .product-gallery__image-list .share-overlay ul.go::before {
        display: none;
    }

    .product-gallery .product-gallery__image-list .share-overlay ul li .ico-wrapper {
        transition: all .1s ease-in-out;
    }

    .product-gallery .product-gallery__image-list .share-overlay ul li {
        padding-inline-start: 0;
        display: inherit;
        justify-content: center;

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

    .product-gallery .product-gallery__image-list .share-overlay:hover,
    .product-gallery .product-gallery__image-list .share-overlay.active {
        padding: 0.875rem 0.5rem;
        border-radius: 1.25rem;
    }

    .product-gallery .product-gallery__image-list .share-overlay:hover span.share,
    .product-gallery .product-gallery__image-list .share-overlay.active span.share {
        display: none;
    }

    .product-gallery .product-gallery__image-list .share-overlay:hover ul,
    .product-gallery .product-gallery__image-list .share-overlay.active ul {
        display: grid;
        opacity: 1;
    }

    @media screen and (min-width: 1000px) and (max-width: 1140px),
    screen and (max-width: 440px) {
        .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp {
            grid-template-columns: repeat(2, 5.625rem);
        }
    }

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

        .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option {
            grid-template-columns: minmax(0, 35rem);
            justify-self: center;
            justify-items: center;
        }

        .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values {
            justify-content: center;
        }

        .product-info__block-list .product-info__block-item[data-block-type="quantity-buttons"] .btn-grp {
            justify-self: center;
        }

        .product-info__block-list .product-info__block-item[data-block-type="inventory"] {
            display: grid;
            justify-content: center;
        }

        .product-info__block-list .product-info__block-item[data-block-type="rating"] {
            display: grid;
            justify-content: center;
        }

        .product-info__block-list .product-info__block-item[data-block-type="price"] .saving-wrapper {
            max-width: max-content;
            justify-self: center;
        }

        .product-gallery .product-gallery__image-list .share-overlay {
            right: 0rem;
        }

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

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

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

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

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

        .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: 699px) {
        .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch.sale::before {
            font-size: 0.6875rem;
            height: 1.25rem;
            width: 1.25rem;
        }
    }

    @media screen and (max-width: 640px) {
        .product-info__block-list .product-info__block-item[data-block-type="variant-picker"] .variant-picker__option-values .thumbnail-swatch>img {
            transform: scale(0.9);
        }

        .product-gallery .product-gallery__image-list .share-overlay ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
    }

    @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;
        }

        .product-content-below-gallery .accordion .accordion__toggle.h6 {
            font-size: 1.6rem;
        }
    }

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

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

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

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

/** 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),
    screen and (min-width: 861px) and (max-width: 999px),
    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;
        }

        .container .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 .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);
    }

    .content-over-media .overlay-box .h1,
    .content-over-media .overlay-box p.text-large {
        text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
    }

    .content-over-media .overlay-box .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);
    }

    .content-over-media .overlay-box 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) {
        .content-over-media .overlay-box {
            backdrop-filter: blur(0.15rem);
        }

        .content-over-media .overlay-box .h1 {
            font-size: 2.6rem;
        }
    }

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

/** 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;

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

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

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

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

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

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

    &.mobil {
        display: none;
    }

    &.left {
        display: flex;
        justify-content: flex-end;
    }

    &.center {
        width: 43.125rem;
        position: relative;
        align-self: flex-end;
    }

    &.right {
        display: flex;
        justify-content: flex-start;
    }

    ul {
        list-style: none;
        margin-inline-start: 0;
    }

    ul li {
        display: flex;
        align-items: center;
        margin: 3.125rem 0;
        padding-inline-start: 0;

        &:first-child {
            margin-top: 0;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    ul li img {
        margin-right: 1.25rem;
    }

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

    &.center .tooltip {
        position: absolute;
        width: 15.625rem;
        min-height: 10rem;
    }

    &.center .tooltip.left .dot {
        top: 9.0625rem;
        right: -4.375rem;
        left: unset;
    }

    &.center .tooltip.right .dot {
        top: 9.0625rem;
        left: -4.375rem;
        right: unset;
    }

    &.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;
    }

    &.center .tooltip .dot {
        position: absolute;
        content: '';
        height: 3.125rem;
        width: 3.125rem;
        top: -4.375rem;
        left: calc(50% - 1.5625rem);
        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);
    }

    &.center .tooltip.active {
        z-index: +1;
    }

    &.center .tooltip.active .tooltip-inner {
        display: block;
    }

    &.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);

        &::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;
        }
    }

    &.center .tooltip .tooltip-inner img {
        margin-bottom: 1rem;
    }

    &.center .tooltip .tooltip-inner p {
        margin: 0 1.1875rem;
    }

    @media screen and (max-width: 1360px) {
        &:not(.center) {
            margin-bottom: 2.5rem;
        }

        ul li {
            flex-direction: column;
            justify-content: center;
        }

        ul li img {
            margin-right: 0;
            margin-bottom: 1.25rem;
        }

        ul li p.text-large-inverse {
            text-align: center;
        }
    }

    @media screen and (max-width: 1140px) {
        &.left {
            order: 1;
            width: 100%;
            max-width: 45rem;
            margin-left: auto;
            margin-right: auto;
        }

        &.right {
            order: 2;
            width: 100%;
            max-width: 45rem;
            margin-left: auto;
            margin-right: auto;
        }

        &.center {
            order: 3;
            margin-left: auto;
            margin-right: auto;
            margin-top: -4.5rem;
        }

        ul {
            display: flex;
            flex-direction: row;
            width: 100%;
        }

        ul li {
            width: calc(100% / 3);
            margin: 1.875rem 0;

            &:first-child {
                margin-top: auto;
            }

            &:last-child {
                margin-bottom: auto;
            }
        }

        ul li img {
            margin-bottom: .75rem;
        }

        ul li p {
            text-align: center;
        }
    }

    @media screen and (max-width: 880px) {
        &:not(.center) {
            margin-bottom: 0;
        }

        &.center {
            display: none;
        }
    }

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

        &.left,
        &.right {
            display: none;
        }

        &.mobil {
            display: block;
            width: 100%;
            max-width: 23.75rem;
            margin-left: auto;
            margin-right: auto;
        }

        &.mobil ul {
            flex-wrap: wrap;
        }

        ul li {
            width: 50%;
        }
    }

    @media screen and (max-width: 480px) {
        ul li img {
            margin-bottom: 0.75rem;
            max-width: 4.5rem;
        }
    }

    @media screen and (max-width: 380px) {
        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;
    }

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

    .form .agree_contact label {
        display: block;
    }

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

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

    @media screen and (max-width: 480px) {
        .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);
    }

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

    .agree-agb a {
        color: var(--black-primary);
        text-decoration: underline;

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

/** 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);
    }

    .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);
    }

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

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

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

/** sitespeak */

#sitespeak-launcher {
    --launcher-size: 4.375rem;
    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;

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

    #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;
    }

    #sitespeak-launcher-inner svg {
        display: none;
    }

    #sitespeak-launcher-inner 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;
    }

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

        &::after {
            animation: none;
        }
    }

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

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

        #sitespeak-launcher-inner span {
            width: 1.875rem;
            margin-top: -0.25rem !important;
            margin-left: 0.125rem !important;
        }
    }
}

/** 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;
    }
}