/** Shopify CDN: Minification failed

Line 18404:13 Expected identifier but found whitespace
Line 18404:20 Unexpected ";"

**/
/**
 * NOTE: most of the CSS variables used are defined in the "css-variables.liquid" snippet file
 */

@media screen and (max-width: 740px) {
    .hidden-phone {
        display: none !important;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .hidden-tablet {
        display: none !important;
    }
}

@media screen and (min-width: 741px) {
    .hidden-tablet-and-up {
        display: none !important;
    }
}

@media screen and (max-width: 999px) {
    .hidden-pocket {
        display: none !important;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
    .hidden-lap {
        display: none !important;
    }
}

@media screen and (min-width: 1000px) {
    .hidden-lap-and-up {
        display: none !important;
    }
}

@media screen and (min-width: 1200px) {
    .hidden-desk {
        display: none !important;
    }
}

@media screen and (min-width: 1400px) {
    .hidden-wide {
        display: none !important;
    }
}

@media screen and (pointer: fine) {
    .hidden-no-touch {
        display: none !important;
    }
}

@media not screen and (pointer: fine) {
    .hidden-touch {
        display: none !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */

*,
*::before,
*::after {
    box-sizing: border-box !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 35px;
    font-family: sans-serif;
    text-size-adjust: 100%;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
    margin: 0;
}

[hidden] {
    display: none;
}

blockquote:first-child,
ul:first-child,
ol:first-child,
p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0 !important;
}

blockquote:last-child,
ul:last-child,
ol:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
}

button,
[type='submit'] {
    touch-action: manipulation;
    cursor: pointer;
    overflow: visible;
    padding: 0;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

img,
video {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border-style: none;
}

/* By default Firefox show the alt tag of image while image is loading, which is often not desirable */
img:-moz-loading {
    visibility: hidden;
}

iframe {
    border: 0;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

.flickity-enabled {
    position: relative;
    overflow: visible !important;
}

.flickity-enabled:focus {
    outline-offset: 2px;
}

.flickity-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.flickity-enabled.is-draggable:not(.is-hovering-right, .is-hovering-left) .flickity-viewport {
    cursor: grab;
}

.flickity-enabled.is-draggable:not(.is-hovering-right, .is-hovering-left) .flickity-viewport.is-pointer-down {
    cursor: grabbing;
}

.flickity-enabled.is-hovering-right .flickity-viewport {
    cursor:
        var(--arrow-right-svg-url) 17 14,
        e-resize;
}

.flickity-enabled.is-hovering-left .flickity-viewport {
    cursor:
        var(--arrow-left-svg-url) 17 14,
        w-resize;
}

.flickity-rtl .flickity-page-dots {
    direction: rtl;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
    transition: visibility 0.2s linear; /* this is a hotfix for Safari mobile */
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
}

.flickity-enabled.is-fade .flickity-slider > :not(.is-selected) {
    visibility: hidden;
}

/**
 * -------------------------------------------------------------
 * GENERAL TYPOGRAPHY
 * -------------------------------------------------------------
 */

html {
    font-family: 'Helvetica Neue', var(--text-font-family);
    font-size: calc(var(--base-font-size) - 1px);
    font-weight: var(--text-font-weight);
    font-style: var(--text-font-style);
    line-height: 1.7142857143;
    color: rgb(var(--text-color));
    background: rgb(var(--background));
}

:lang(ar) * {
    letter-spacing: normal !important; /* Arabic should never have letter spacing as it makes it unreadable on some fonts */
}

p strong,
p b {
    font-weight: var(--text-font-bold-weight);
}

.heading,
.heading span,
.blockquote,
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6,
.rte blockquote {
    display: block;
    font-family: 'ITC Avant Garde Pro XLt', var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    color: rgb(var(--heading-color));
    text-shadow: 1px 1px 1px rgb(0 0 0 / 0.4%);
    text-transform: var(--heading-text-transform);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: subpixel-antialiased !important;
}

.text--small {
    font-size: calc(var(--base-font-size) - 2px);
    line-height: 1.6923076923;
}

.text--xsmall {
    font-size: calc(var(--base-font-size) - 3px);
    line-height: 1.5;
}

.text--xxsmall {
    font-size: calc(var(--base-font-size) - 5px);
    line-height: 1.5;
}

.text--large {
    font-size: calc(var(--base-font-size) + 1px);
}

.text--subdued {
    color: rgba(var(--text-color), 0.7);
}

[dir='ltr'] .text--left {
    text-align: left;
}

[dir='rtl'] .text--left {
    text-align: right;
}

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

[dir='ltr'] .text--right {
    text-align: right;
}

[dir='rtl'] .text--right {
    text-align: left;
}

.text--strong {
    font-weight: var(--text-font-bold-weight);
}

.text--underlined {
    text-decoration: underline;
    text-decoration-color: currentcolor;
    text-underline-offset: 3px;
}

p a:not(.button),
.rte a:not(.button),
.link {
    text-decoration: underline;
    text-decoration-color: rgba(var(--text-color), 0.35);
    text-underline-offset: 2px;
    transition:
        color 0.2s ease-in-out,
        -webkit-text-decoration-color 0.2s ease-in-out;
    transition:
        text-decoration-color 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        text-decoration-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-text-decoration-color 0.2s ease-in-out;
}

/* When the link class is assigned to the heading--small, we have to force increase the line height to prevent the line to overlap */
.heading--small.link {
    line-height: 1.8;
}

@media screen and (pointer: fine) {
    p a:not(.button):hover,
    .rte a:not(.button):hover,
    .link:hover {
        color: rgb(var(--text-color));
        text-decoration-color: rgb(var(--text-color));
    }
}

/* Animated link */
.link--animated {
    position: relative;
    display: block;
    width: max-content;
}

.link--animated::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    transform-origin: var(--transform-origin-end);
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 0.3s;
}
.header__linklist-link.link--animated::after {
    bottom: calc(50% - 16px);
}

.text--underlined.link--animated {
    text-decoration: none;
}

.text--underlined.link--animated::after {
    transform: scaleX(1);
}

@media screen and (pointer: fine) {
    .link--animated[aria-expanded='true'],
    .link--animated:hover,
    .link--animated.link--is-active,
    .link--animated.link--is-active:hover,
    .link--faded.link--is-active,
    .mega-menu__title.link--is-active {
        font-weight: 600;
    }
    .link--animated[aria-expanded='true'],
    .link--animated:hover{
        letter-spacing: -0.7px;
    }
    .link--animated.link--is-active,
    .link--animated.link--is-active:hover {
        letter-spacing: -0.7px;
    }
    
    /* .link--animated[aria-expanded='true']::after,
    .link--animated:hover::after {
        transform-origin: var(--transform-origin-start);
        transform: scaleX(1);
    }

    @keyframes textUnderlinedAnimatedKeyframes {
        0% {
            transform-origin: var(--transform-origin-end);
            transform: scaleX(1);
        }

        50% {
            transform-origin: var(--transform-origin-end);
            transform: scaleX(0);
        }

        51% {
            transform-origin: var(--transform-origin-start);
        }

        100% {
            transform: scaleX(1);
        }
    }

    .text--underlined.link--animated:hover::after {
        animation: textUnderlinedAnimatedKeyframes 0.6s;
    } */
}

/* Reduced opacity linked */
.link--faded {
    transition: opacity 0.25s ease-in-out;
}

.link--faded:hover {
    opacity: 0.7;
}
.link--faded > strong {
    font-weight: 600;
}
/* Hide a text visually without removing it from screen readers (mostly used for accessibility) */
.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip: rect(0 0 0 0);
    border: 0;
}

/* Headings */

@media screen and (min-width: 741px) {
    html {
        font-size: var(--base-font-size);
        line-height: 1.7333333333;
    }

    .text--small {
        font-size: calc(var(--base-font-size) - 1px);
        line-height: 1.714285713;
    }

    .text--xsmall {
        font-size: calc(var(--base-font-size) - 2px);
        line-height: 1.5384615385;
    }

    .text--xxsmall {
        font-size: calc(var(--base-font-size) - 4px);
        line-height: 1.5384615385;
    }

    .text--large {
        font-size: calc(var(--base-font-size) + 5px);
    }
}

/**
 * -------------------------------------------------------------
 * RTE STYLES
 *
 * NOTE: In Focal, all text are spaced consistently in RTE fields (those written in text editor of Shopify). However,
 *       we also re-use internally in the theme for most section the same spacing between elements. In order to space
 *       those, a "text-container" class is introduced and allow to introduce a consistent spacing.
 * -------------------------------------------------------------
 */

.heading {
    font-family: 'ITC Avant Garde Pro XLt', var(--heading-font-family);
}

.heading:first-child {
    margin-top: 0;
}

.heading:last-child {
    margin-bottom: 0;
}

/*
 * IMPLEMENTATION NOTE: while those are called "heading--small", they are actually using the text font and not the heading
 * font. The reason is that we found out that due to their small size, the body font usually works better visually. Of
 * course if both heading and body font are the same, this won't change anything.
 */
.heading--small,
.heading--xsmall,
.heading--xxsmall {
    font-family: var(--text-font-family);
    font-weight: var(--text-font-bold-weight);
    font-style: var(--text-font-style);
    line-height: 1.4663636;
    text-transform: uppercase; /* Small headings are always uppercase */
    letter-spacing: 1px;
}

.heading--xxsmall {
    font-size: var(--heading-xxsmall-font-size);
}

.heading--xsmall {
    font-size: var(--heading-xsmall-font-size);
}

.heading--small {
    font-size: var(--heading-small-font-size);
    line-height: 1.5; /* Slightly bigger line height */
}

.heading--large,
.rte .heading--large {
    font-size: var(--heading-large-font-size);
    line-height: 1.11111111;
    letter-spacing: -0.9px;
}

.h1,
.rte h1 {
    font-size: var(--heading-h1-font-size);
    line-height: 1.11111111;
    letter-spacing: -0.9px;
}

.h2,
.rte h2 {
    font-size: var(--heading-h2-font-size);
    line-height: 1.13333333;
    letter-spacing: -0.6px;
}

.h3,
.rte h3 {
    font-size: var(--heading-h3-font-size);
    line-height: 1.1538461538;
    letter-spacing: -0.4px;
}

.h4,
.rte h4 {
    font-size: var(--heading-h4-font-size);
    line-height: 1.1666666667;
    letter-spacing: -0.3px;
}

.h5,
.rte h5 {
    font-size: var(--heading-h5-font-size);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.h6,
.rte h6 {
    font-size: var(--heading-h6-font-size);
    line-height: 1.25;
}

.blockquote,
.rte blockquote {
    position: relative;
    padding: 24px 24px 0;
    font-size: var(--heading-h4-font-size);
    line-height: 1.1666666667;
    letter-spacing: -0.3px;
}

[dir='ltr'] .blockquote::before,
[dir='ltr'] .rte blockquote::before {
    left: calc(50% - (71px / 2));
}

[dir='rtl'] .blockquote::before,
[dir='rtl'] .rte blockquote::before {
    right: calc(50% - (71px / 2));
}

.blockquote::before,
.rte blockquote::before {
    content: '';
    position: absolute;
    top: -10px;
    width: 71px;
    height: 56px;
    opacity: 0.15;
    background: rgb(var(--text-color));
    mask-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDEgODAiPiAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgNDEuNzdWMGg0MS42MDR2NDEuNzdMMjAuMDI2IDgwSC45ODdMMjEuNzIgNDEuNzdIMHptNTkuMzk2IDBWMEgxMDF2NDEuNzdMNzkuNDIyIDgwSDYwLjM4M2wyMC43MzItMzguMjNINTkuMzk2eiIgZmlsbD0iY3VycmVudENvbG9yIiAvPjwvc3ZnPg==');
    mask-repeat: no-repeat;
    mask-size: 71px 56px;
}

[dir='ltr'] .unordered-list,
[dir='ltr'] .text-container ul,
[dir='ltr'] .rte ul {
    margin-right: 0;
    margin-left: 1.25em;
}

[dir='rtl'] .unordered-list,
[dir='rtl'] .text-container ul,
[dir='rtl'] .rte ul {
    margin-right: 1.25em;
    margin-left: 0;
}

.unordered-list,
.text-container ul,
.rte ul {
    padding: 0;
    list-style-type: square;
}

[dir='ltr'] .ordered-list,
[dir='ltr'] .text-container ol,
[dir='ltr'] .rte ol {
    margin-right: 0;
    margin-left: 1em;
}

[dir='rtl'] .ordered-list,
[dir='rtl'] .text-container ol,
[dir='rtl'] .rte ol {
    margin-right: 1em;
    margin-left: 0;
}

.ordered-list,
.text-container ol,
.rte ol {
    padding: 0;
}

[dir='ltr'] .unordered-list li,
[dir='ltr'] .text-container ul li,
[dir='ltr'] .rte ul li {
    padding: 2px 0 2px 5px;
}

[dir='rtl'] .unordered-list li,
[dir='rtl'] .text-container ul li,
[dir='rtl'] .rte ul li {
    padding: 2px 5px 2px 0;
}

[dir='ltr'] .ordered-list li,
[dir='ltr'] .text-container ol li,
[dir='ltr'] .rte ol li {
    padding: 3px 0 3px 9px;
}

[dir='rtl'] .ordered-list li,
[dir='rtl'] .text-container ol li,
[dir='rtl'] .rte ol li {
    padding: 3px 9px 3px 0;
}

.unordered-list li::marker,
.text-container ul li::marker,
.rte ul li::marker {
    font-size: 16px;
    color: inherit;
}

.ordered-list li::marker,
.text-container ol li::marker,
.rte ol li::marker {
    font-size: 11px;
    color: inherit;
}

/* Minimal table styling, with a bordered variation */

.table-wrapper {
    overflow-x: auto;
}

.table,
.rte table {
    --table-spacing: 16px;

    width: 100%;
}

.table--loose {
    --table-spacing: 24px;
}

[dir='ltr'] .table th:not([class*='text--']),
[dir='ltr'] .rte table th:not([class*='text--']) {
    text-align: left;
}

[dir='rtl'] .table th:not([class*='text--']),
[dir='rtl'] .rte table th:not([class*='text--']) {
    text-align: right;
}

.table th,
.rte table th {
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(var(--border-color));
}

.table th,
.rte table th {
    padding-right: var(--table-spacing);
    padding-left: var(--table-spacing);
}

.table td.half-spaced,
.rte table td.half-spaced {
    padding: calc(var(--table-spacing) / 2);
}

.table td,
.rte table td {
    padding: var(--table-spacing);
    padding-bottom: 0;
}

.table tr[onclick] {
    cursor: pointer;
}

[dir='ltr'] .table th:first-child,
[dir='ltr'] .rte table th:first-child,
[dir='ltr'] .table td:first-child,
[dir='ltr'] .rte table td:first-child {
    padding-left: 0;
}

[dir='rtl'] .table th:first-child,
[dir='rtl'] .rte table th:first-child,
[dir='rtl'] .table td:first-child,
[dir='rtl'] .rte table td:first-child {
    padding-right: 0;
}

[dir='ltr'] .table th:last-child,
[dir='ltr'] .rte table th:last-child,
[dir='ltr'] .table td:last-child,
[dir='ltr'] .rte table td:last-child {
    padding-right: 0;
}

[dir='rtl'] .table th:last-child,
[dir='rtl'] .rte table th:last-child,
[dir='rtl'] .table td:last-child,
[dir='rtl'] .rte table td:last-child {
    padding-left: 0;
}

.table tfoot tr:first-child td,
.rte table tfoot tr:first-child td {
    border-top: 1px solid rgb(var(--border-color));
}

.table tfoot tr:not(:first-child) td,
.rte table tfoot tr:not(:first-child) td {
    padding-top: 8px;
}

.table--bordered td {
    padding-bottom: var(--table-spacing);
    border-top: 1px solid rgb(var(--border-color));
}

.table--footered tbody tr:last-child td {
    padding-bottom: var(--table-spacing);
}

@media screen and (max-width: 740px) {
    .table tfoot td,
    .rte table tfoot td {
        padding-top: 16px;
    }
}

@media screen and (min-width: 741px) {
    .ordered-list li::marker,
    .text-container ol li::marker,
    .rte ol li::marker {
        font-size: 12px;
    }

    .heading--xsmall {
        line-height: 1.466666666;
    }

    .heading--small {
        line-height: 1.2307692308;
    }

    .heading--large {
        line-height: 1;
    }

    .h1,
    .rte h1 {
        line-height: 1.0416666667;
        letter-spacing: -1px;
    }

    .h2,
    .rte h2 {
        line-height: 1.1052631579;
        letter-spacing: -1px;
    }

    .h3,
    .rte h3 {
        line-height: 1.0625;
        letter-spacing: -0.8px;
    }

    .h4,
    .rte h4 {
        line-height: 1.1666666667;
        letter-spacing: -0.6px;
    }

    .h5,
    .rte h5 {
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .h6,
    .rte h6 {
        line-height: 1.2222222222;
    }

    [dir='ltr'] .blockquote,
    [dir='ltr'] .rte blockquote {
        padding-right: 0;
        padding-left: 49px;
    }

    [dir='rtl'] .blockquote,
    [dir='rtl'] .rte blockquote {
        padding-right: 49px;
        padding-left: 0;
    }

    .blockquote,
    .rte blockquote {
        min-height: 63px;
        line-height: 1.1666666667;
        letter-spacing: -0.6px;
    }

    [dir='ltr'] .blockquote--center {
        padding-left: 0;
    }

    [dir='rtl'] .blockquote--center {
        padding-right: 0;
    }

    [dir='ltr'] .blockquote:not(.blockquote--center)::before,
    [dir='ltr'] .rte blockquote:not(.blockquote--center)::before {
        left: 0;
    }

    [dir='rtl'] .blockquote:not(.blockquote--center)::before,
    [dir='rtl'] .rte blockquote:not(.blockquote--center)::before {
        right: 0;
    }

    .blockquote:not(.blockquote--center)::before,
    .rte blockquote:not(.blockquote--center)::before {
        top: 0;
        width: 80px;
        height: 63px;
        mask-size: 80px 63px;
    }

    [dir='ltr'] .unordered-list li,
    [dir='ltr'] .text-container ul li,
    [dir='ltr'] .rte ul li {
        padding: 4px 0 4px 5px;
    }

    [dir='rtl'] .unordered-list li,
    [dir='rtl'] .text-container ul li,
    [dir='rtl'] .rte ul li {
        padding: 4px 5px 4px 0;
    }

    [dir='ltr'] .ordered-list li,
    [dir='ltr'] .text-container ol li,
    [dir='ltr'] .rte ol li {
        padding: 4px 0 4px 9px;
    }

    [dir='rtl'] .ordered-list li,
    [dir='rtl'] .text-container ol li,
    [dir='rtl'] .rte ol li {
        padding: 4px 9px 4px 0;
    }
}

@media screen and (min-width: 1000px) {
    /* The rich text table keep the smaller padding as merchant often use RTE with lot of columns */
    .table {
        --table-spacing: 24px;
    }

    .table--loose {
        --table-spacing: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .heading--large,
    .rte .heading--large {
        line-height: 1;
    }

    .h1,
    .rte h1 {
        line-height: 1.0714285714;
        letter-spacing: -1px;
    }

    .h2,
    .rte h2 {
        line-height: 1.0833333333;
        letter-spacing: -1px;
    }

    .h3,
    .rte h3 {
        line-height: 1.1111111111;
        letter-spacing: -0.8px;
    }

    .h4,
    .rte h4 {
        line-height: 1.1333333333;
        letter-spacing: -0.7px;
    }

    .h5,
    .rte h5 {
        line-height: 1.1666666667;
        letter-spacing: -0.4px;
    }

    .h6,
    .rte h6 {
        line-height: 1.2222222222;
    }

    [dir='ltr'] .blockquote,
    [dir='ltr'] .rte blockquote {
        padding-left: 69px;
    }

    [dir='rtl'] .blockquote,
    [dir='rtl'] .rte blockquote {
        padding-right: 69px;
    }

    .blockquote,
    .rte blockquote {
        min-height: 80px;
        line-height: 1.1333333333;
        letter-spacing: -0.7px;
    }

    [dir='ltr'] .blockquote--center,
    [dir='ltr'] .rte .blockquote--center {
        padding-left: 0;
    }

    [dir='rtl'] .blockquote--center,
    [dir='rtl'] .rte .blockquote--center {
        padding-right: 0;
    }

    .blockquote:not(.blockquote--center)::before,
    .rte blockquote:not(.blockquote--center)::before {
        width: 101px;
        height: 81px;
        mask-size: 101px 81px;
    }
}

/**
 * -------------------------------------------------------------
 * RTE SPACING
 *
 * NOTE: to have the same spacing as in an RTE field, you can wrap
 *       the element by a div with the class "text-container"
 * -------------------------------------------------------------
 */

.text-container p:not(.heading) + p,
.rte p:not(.heading) + p,
.text-container p + form,
.rte p + form {
    margin-top: 24px;
}

.text-container .heading--large,
.rte .heading--large {
    margin: 48px 0 40px;
}

.text-container .h1,
.rte h1 {
    margin: 48px 0 24px;
}

.text-container .h2,
.rte h2,
.text-container .h3,
.rte h3,
.text-container .h4,
.rte h4,
.text-container .h5,
.rte h5,
.text-container .h6,
.rte h6 {
    margin: 40px 0 16px;
}

.text-container .heading--small,
.rte .heading--small {
    margin: 16px 0;
}

.text-container .heading--xsmall,
.rte .heading--xsmall {
    margin: 12px 0;
}

.blockquote,
.rte blockquote {
    margin: 48px 0 64px;
}

.text-container img:not([style*='float']),
.rte img:not([style*='float']) {
    display: block;
    margin: 34px 0;
}

.text-container ul,
.rte ul,
.text-container ol,
.rte ol {
    margin-top: 1em;
    margin-bottom: 1em;
}

@media screen and (min-width: 1000px) {
    .text-container p + form,
    .rte p + form {
        margin-top: 32px;
    }

    .text-container .h1,
    .rte h1 {
        margin: 48px 0 32px;
    }

    .text-container .h2,
    .rte h2,
    .text-container .h3,
    .rte h3,
    .text-container .h4,
    .rte h4 {
        margin: 48px 0 24px;
    }

    .text-container .h5,
    .rte h5,
    .text-container .h6,
    .rte h6 {
        margin: 40px 0 16px;
    }

    .blockquote,
    .rte blockquote {
        margin: 80px 0 96px;
    }
}

/* We remove the spacing for first item and last item */

.rte > :first-child,
.text-container > :first-child {
    margin-top: 0;
}

.rte > :last-child,
.text-container > :last-child {
    margin-bottom: 0;
}

/**
 * -------------------------------------------------------------
 * SPACING COMBINATIONS
 *
 * NOTE: this define common combination in order to provide a consistent
 *       styling throughout the theme
 * -------------------------------------------------------------
 */

.heading--small + .heading--large {
    margin-top: 32px;
}

.heading--small + p,
.heading--xsmall + p {
    margin-top: 16px;
}

.heading--small + p,
.heading--small + .h1,
.heading--small + h1,
.heading--small + .h2,
.heading--small + h2,
.heading--small + .h3,
.heading--small + h3,
.heading--small + .h4,
.heading--small + h4,
.heading--small + .h5,
.heading--small + h5,
.heading--small + .h6,
.heading--small + h6 {
    margin-top: 16px;
}

.heading--xsmall + p,
.heading--xsmall + .h1,
.heading--xsmall + h1,
.heading--xsmall + .h2,
.heading--xsmall + h2,
.heading--xsmall + .h3,
.heading--xsmall + h3 {
    margin-top: 16px;
}

.heading--xsmall + .h4,
.heading--xsmall + h4,
.heading--xsmall + .h5,
.heading--xsmall + h5,
.heading--xsmall + .h6,
.heading--xsmall + h6 {
    margin-top: 12px;
}

.heading + .button-wrapper,
.heading + .button-group,
p + .button-wrapper,
p + .button-group,
.button-wrapper + p,
.button-group + p {
    margin-top: 32px;
}

@media screen and (min-width: 741px) {
    .heading--small + p,
    .heading--small + .h1,
    .heading--small + h1,
    .heading--small + .h2,
    .heading--small + h2,
    .heading--small + .h3,
    .heading--small + h3,
    .heading--small + .h4,
    .heading--small + h4 {
        margin-top: 24px;
    }

    .heading--small + .h5,
    .heading--small + h5,
    .heading--small + .h6,
    .heading--small + h6 {
        margin-top: 16px;
    }

    .heading--xsmall + .h1,
    .heading--xsmall + h1,
    .heading--xsmall + .h2,
    .heading--xsmall + h2 {
        margin-top: 24px;
    }
}

/**
 * -------------------------------------------------------------
 * SHOPIFY SECTION
 * -------------------------------------------------------------
 */

.shopify-section {
    scroll-margin-top: calc(
        var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar)
    );
    color: rgb(var(--text-color)); /* Allow easy override of per-section color */
}

/**
 * -------------------------------------------------------------
 * TABBING MANAGEMENT
 * -------------------------------------------------------------
 */

.js .no-focus-outline *:focus {
    outline: none;
}

/**
 * -------------------------------------------------------------
 * LOCK UTILITY
 * -------------------------------------------------------------
 */

.lock-all {
    touch-action: none;
    overflow: hidden;
}

@media screen and (max-width: 740px) {
    .lock-mobile {
        touch-action: none;
        overflow: hidden;
    }
}

/**
 * -------------------------------------------------------------
 * CONTAINER
 * -------------------------------------------------------------
 */

/* Implementation note: the double selector for policy container allows to increase selector specificity to override
   Shopify default style */
.container,
.shopify-policy__container.shopify-policy__container {
    --container-outer-margin: 0px; /* Inside a container only the gutter remains as margin */

    width: 100%;
    max-width: var(--container-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--container-gutter);
    padding-left: var(--container-gutter);
}

.container--small {
    max-width: 930px;
}

@media screen and (max-width: 999px) {
    /* Variation that remove the padding on small devices */
    .container--flush {
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (min-width: 1400px) {
    .container--medium {
        padding-right: calc(
            var(--container-gutter) + var(--grid-column-width) + var(--grid-gap)
        ); /* Medium container just adds an extra column on left and top */

        padding-left: calc(var(--container-gutter) + var(--grid-column-width) + var(--grid-gap));
    }
}

/**
 * --------------------------------------------------------------------
 * NON-JS AND REVEAL ELEMENTS
 * --------------------------------------------------------------------
 */

.js .no-js {
    display: none !important;
}

[reveal] {
    opacity: 0;
}

[reveal-visibility] {
    visibility: hidden;
}

.no-js [reveal] {
    opacity: 1;
}

.no-js [reveal-visibility] {
    visibility: visible;
}

/**
 * --------------------------------------------------------------------
 * ACCESSIBILITY
 * --------------------------------------------------------------------
 */

.skip-to-content:focus {
    z-index: 10000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px;
    color: rgb(var(--text-color));
    opacity: 1;
    background-color: rgb(var(--background));
    clip: auto;
    transition: none;
}

/**
 * --------------------------------------------------------------------
 * VERTICAL BREATHER
 * --------------------------------------------------------------------
 */

.vertical-breather {
    padding-top: var(--vertical-breather);
    padding-bottom: var(--vertical-breather);
}

.vertical-breather--tight {
    padding-top: var(--vertical-breather-tight);
    padding-bottom: var(--vertical-breather-tight);
}

.vertical-breather--margin {
    margin-top: var(--vertical-breather);
    margin-bottom: var(--vertical-breather);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.vertical-breather--margin.vertical-breather--tight {
    margin-top: var(--vertical-breather-tight);
    margin-bottom: var(--vertical-breather-tight);
}

@media screen and (min-width: 741px) {
    .vertical-breather--extra-tight {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .vertical-breather--margin.vertical-breather--extra-tight {
        margin-top: 48px;
        margin-bottom: 48px;
    }
}

/**
 * -------------------------------------------------------------
 * ANCHOR
 * Doc: https://gomakethings.com/how-to-prevent-anchor-links-from-scrolling-behind-a-sticky-header-with-one-line-of-css/
 * -------------------------------------------------------------
 */

.anchor {
    scroll-margin-top: calc(
        var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar) + var(--anchor-offset, 20px)
    );
}

.anchor.vertical-breather:not(.vertical-breather--margin) {
    --anchor-offset: 0px; /* There is already lot of space brought by vertical breather so no need for extra one */
}

.anchor.vertical-breather--margin {
    --anchor-offset: var(--vertical-breather); /* This is used to compensate the margin */
}

.anchor.vertical-breather--tight.vertical-breather--margin {
    --anchor-offset: var(--vertical-breather-tight);
}

/**
 * --------------------------------------------------------------------
 * ICON
 * --------------------------------------------------------------------
 */

.icon {
    pointer-events: none;
    overflow: visible;
    display: block;
    vertical-align: middle;
    background: none;
}

.icon--inline {
    display: inline-block;
}

/* Simple component allowing to align a text with an icon */
.icon-text {
    display: flex;
    align-items: center;
}

[dir='ltr'] .icon-text svg,
[dir='ltr'] .icon-text img {
    margin-right: 12px;
}

[dir='rtl'] .icon-text svg,
[dir='rtl'] .icon-text img {
    margin-left: 12px;
}

@supports (scale: 1) {
    [dir='rtl'] .icon--direction-aware {
        scale: -1 1; /* Allows to have better support if it is combined with other transforms */
    }
}

@supports not (scale: 1) {
    [dir='rtl'] .icon--direction-aware {
        transform: scale(-1, 1);
    }
}

/**
 * -------------------------------------------------------------
 * LIST
 * -------------------------------------------------------------
 */

.list--unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}

/**
 * --------------------------------------------------------------------
 * LOADING BAR
 * --------------------------------------------------------------------
 */

.loading-bar {
    pointer-events: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    width: 100%;
    height: 3px;
    opacity: 0;
    background: rgb(var(--loading-bar-background));
    transition: transform 0.25s ease-in-out;
}

.loading-bar.is-visible {
    opacity: 1;
}

/**
 * -------------------------------------------------------------
 * SECTION
 * -------------------------------------------------------------
 */

.section {
    padding: 15px 0;
}

@media screen and (min-width: 741px) {
    .section {
        padding: 40px 0;
    }
}

.section--tight {
    margin-top: var(--vertical-breather-tight);
    margin-bottom: var(--vertical-breather-tight);
}

.section:empty {
    display: none;
}

/* This class is actually not really useful as you could just remove the "section" class to remove the padding. However
   for clarity, I preferred to assign the class "section" to every section, and then add an extra class conditionally to
   flush, as it makes it clear in the code that it is a section */
.section--flush {
    margin-top: 0;
    margin-bottom: 0;
}

.section__color-wrapper {
    position: relative;
    display: flow-root; /* Modern clearfix */
    background: rgb(var(--section-background, var(--background)));
}

.section__color-wrapper--boxed {
    border-radius: var(--block-border-radius);
}

.section__headings {
    max-width: 1000px;
    margin-right: auto;
    margin-bottom: min(32px, var(--vertical-breather));
    margin-left: auto;
    text-align: center;
}

.section__headings:only-child {
    margin-bottom: 0;
}

.section__headings--tight {
    max-width: 800px;
}

[dir='ltr'] .section__headings--left {
    text-align: left;
}

[dir='rtl'] .section__headings--left {
    text-align: right;
}

.section__headings--left {
    margin-left: 0;
}

[dir='ltr'] .section__headings--right {
    text-align: right;
}

[dir='rtl'] .section__headings--right {
    text-align: left;
}

.section__headings--right {
    margin-right: 0;
}

.section__footer {
    margin-top: 32px;
    text-align: center;
}

@media screen and (min-width: 741px) {
    .section__headings {
        margin-bottom: min(40px, var(--vertical-breather));
    }

    .section__footer {
        margin-top: min(40px, var(--vertical-breather));
    }
}

@media screen and (min-width: 1000px) {
    .section__headings {
        margin-bottom: min(48px, var(--vertical-breather));
    }

    .section__footer {
        margin-top: min(48px, var(--vertical-breather));
    }
}

/**
 * -------------------------------------------------------------
 * PAGE
 * -------------------------------------------------------------
 */

.page-header {
    position: relative;
    text-align: center;
}

.page-header--secondary {
    background: rgb(var(--secondary-background));
}

.page-header--clear::after,
.page-header::before {
    content: '';
    clear: left;
    display: table;
}

.page-header__text-wrapper {
    max-width: 850px;
    margin: 38px auto;
}

.page-header--small .page-header__text-wrapper {
    margin-top: 24px;
    margin-bottom: 24px;
}

.page-header--alone .page-header__text-wrapper {
    margin-bottom: 72px;
}

.page-content,
.shopify-policy__body {
    max-width: 1200px;
    margin-right: auto;
    margin-bottom: min(var(--vertical-breather), 80px);
    margin-left: auto;
}

.page-content--medium,
.shopify-policy__body {
    max-width: 670px;
}

.page-content--small {
    max-width: 460px;
}

.page-content--fluid {
    max-width: none;
}

.page-content__wrapper {
    position: relative;
}

@media screen and (min-width: 741px) {
    .page-header__text-wrapper {
        margin-top: 68px;
        margin-bottom: 68px;
    }

    .page-header--small .page-header__text-wrapper {
        margin-top: 48px;
        margin-bottom: 40px;
    }

    .page-header--alone .page-header__text-wrapper {
        margin-bottom: 120px;
    }

    /* When the page header is immediately preceded by a floating breadcrumb, we increase the size */
    .breadcrumb--floating + .page-header__text-wrapper {
        margin-top: 80px;
    }
}

/**
 * -------------------------------------------------------------
 * BREADCRUMB
 * -------------------------------------------------------------
 */

.breadcrumb {
    z-index: 1;
}

[dir='ltr'] .breadcrumb--floating {
    left: 0;
}

[dir='rtl'] .breadcrumb--floating {
    right: 0;
}

.breadcrumb--floating {
    position: absolute;
    top: 0;
}

.breadcrumb__list {
    display: inline-flex;
    margin: 0;
    padding: 26px 0;
    list-style: none;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    float: left;
    margin: 0 4px;
    opacity: 0.7;
}

.breadcrumb__link {
    transition: opacity 0.2s ease-in-out;
}

.breadcrumb__link:not([aria-current='page'], :hover) {
    opacity: 0.7;
}

[dir='rtl'] .breadcrumb__item + .breadcrumb__item::before {
    float: right;
}

/**
 * -------------------------------------------------------------
 * PAGINATION
 * -------------------------------------------------------------
 */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination__nav {
    display: table;
    table-layout: fixed;
    border-collapse: separate;
}

.pagination__nav-item {
    position: relative;
    display: table-cell;
    width: 47px;
    height: 47px;
    text-align: center;
    vertical-align: middle;
    box-shadow:
        1px 0 0 0 rgb(var(--border-color)),
        0 1px 0 0 rgb(var(--border-color)),
        1px 1px 0 0 rgb(var(--border-color)),
        1px 0 0 0 rgb(var(--border-color)) inset,
        0 1px 0 0 rgb(var(--border-color)) inset;
}

[dir='ltr'] .pagination__nav-item:first-child,
[dir='ltr'] .pagination__nav-item:first-child::before {
    border-top-left-radius: var(--button-border-radius);
}

[dir='rtl'] .pagination__nav-item:first-child,
[dir='rtl'] .pagination__nav-item:first-child::before {
    border-top-right-radius: var(--button-border-radius);
}

[dir='ltr'] .pagination__nav-item:first-child,
[dir='ltr'] .pagination__nav-item:first-child::before {
    border-bottom-left-radius: var(--button-border-radius);
}

[dir='rtl'] .pagination__nav-item:first-child,
[dir='rtl'] .pagination__nav-item:first-child::before {
    border-bottom-right-radius: var(--button-border-radius);
}

[dir='ltr'] .pagination__nav-item:last-child,
[dir='ltr'] .pagination__nav-item:last-child::before {
    border-top-right-radius: var(--button-border-radius);
}

[dir='rtl'] .pagination__nav-item:last-child,
[dir='rtl'] .pagination__nav-item:last-child::before {
    border-top-left-radius: var(--button-border-radius);
}

[dir='ltr'] .pagination__nav-item:last-child,
[dir='ltr'] .pagination__nav-item:last-child::before {
    border-bottom-right-radius: var(--button-border-radius);
}

[dir='rtl'] .pagination__nav-item:last-child,
[dir='rtl'] .pagination__nav-item:last-child::before {
    border-bottom-left-radius: var(--button-border-radius);
}

.pagination__nav-item svg {
    margin: 0 auto;
}

.pagination__nav-item[aria-current]::before {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    inset: 2px 0 0 2px;
    max-width: calc(100% - 3px);
    max-height: calc(100% - 3px);
    box-shadow: 0 0 0 2px currentcolor;
}

@media screen and (min-width: 741px) {
    .pagination {
        margin-top: 48px;
    }

    .pagination__nav-item {
        width: 56px;
        height: 56px;
    }
}

/**
 * -------------------------------------------------------------
 * LINKLIST
 * -------------------------------------------------------------
 */

.linklist__item:not(:first-child) {
    padding-top: 12px;
}

.linklist__item a {
    display: inline-block;
    word-break: break-word;
}

@media screen and (min-width: 1000px) {
    .linklist__item:not(:first-child) {
        padding-top: 6px; /* On desktop we use less space as we do not have as much constraint for tap area */
    }
}

/**
 * -------------------------------------------------------------
 * ANIMATED PLUS
 * -------------------------------------------------------------
 */

.animated-plus {
    position: relative;
    width: 10px;
    height: 10px;
}

.animated-plus::before,
.animated-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: currentcolor;
    transition:
        transform 0.4s ease-in-out,
        opacity 0.4s ease-in-out;
}

.animated-plus::before {
    width: 10px;
    height: 2px;
    opacity: 1;
}

.animated-plus::after {
    width: 2px;
    height: 10px;
}

[aria-expanded='true'] > .animated-plus::before {
    opacity: 0;
}

[aria-expanded='true'] > .animated-plus::before,
[aria-expanded='true'] > .animated-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/**
 * --------------------------------------------------------------------
 * ASPECT RATIO
 * --------------------------------------------------------------------
 */

.aspect-ratio {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* The aspect-ratio can also contain a native HTML5 video element */
.aspect-ratio img,
.aspect-ratio video,
.aspect-ratio svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.aspect-ratio--square img,
.aspect-ratio--short img,
.aspect-ratio--tall img {
    position: absolute;
    top: 50%;
    left: 50%; /* We must use this and not logical property here */
    transform: translate(-50%, -50%) !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aspect-ratio--square {
    padding-bottom: 100% !important;
}

.aspect-ratio--short {
    padding-bottom: 75% !important;
}

.aspect-ratio--tall {
    padding-bottom: 150% !important;
}

@supports (aspect-ratio: 1 / 1) {
    .aspect-ratio {
        aspect-ratio: var(--aspect-ratio);
        padding-bottom: 0 !important;
    }

    .aspect-ratio--natural img,
    .aspect-ratio--natural video,
    .aspect-ratio--natural svg {
        position: relative;
        width: auto;
    }

    .aspect-ratio--square {
        aspect-ratio: 1;
    }

    .aspect-ratio--short {
        aspect-ratio: 4 / 3;
    }

    .aspect-ratio--tall {
        aspect-ratio: 2 / 3;
    }
}

/**
 * -------------------------------------------------------------
 * PLACEHOLDER
 * -------------------------------------------------------------
 */

.placeholder-image {
    position: relative;
    padding-bottom: 75%;
    background-color: rgb(var(--secondary-background));
}

.placeholder-background {
    background-color: rgb(var(--secondary-background));
}

[dir='ltr'] .placeholder-image svg {
    left: 0;
}

[dir='rtl'] .placeholder-image svg {
    right: 0;
}

.placeholder-image svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1000px) {
    .placeholder-image {
        padding-bottom: 45%;
    }
}

/**
 * -------------------------------------------------------------
 * PROGRESS BAR
 * -------------------------------------------------------------
 */

.progress-bar {
    position: relative;
    display: block;
    height: 2px;
    background: rgba(var(--text-color), 0.15);
}

[dir='ltr'] .progress-bar::before {
    left: 0;
}

[dir='rtl'] .progress-bar::before {
    right: 0;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    transform-origin: var(--transform-origin-start);
    transform: translateX(calc(var(--transform-logical-flip) * var(--transform, 0%) * (var(--divider) - 1)));
    width: calc(100% / var(--divider));
    height: 100%;
    background: rgb(var(--text-color));
}

/**
 * -------------------------------------------------------------
 * CUSTOM DRAG CURSOR
 * -------------------------------------------------------------
 */

[draggable].is-scrollable {
    cursor: none;
}

.custom-drag-cursor {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0; /* Must not use logical properties here !! */
    display: block;
    width: 60px;
    height: 60px;
    visibility: visible;
    transition: visibility 0.15s linear;
}

.custom-drag-cursor svg {
    transform: scale(1);
    opacity: 1;
    transition:
        transform 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
}

.custom-drag-cursor[hidden] svg {
    transform: scale(0.5);
    opacity: 0;
}

@media screen and (max-width: 999px), not screen and (pointer: fine) {
    .custom-drag-cursor {
        display: none;
    }
}

/**
 * -------------------------------------------------------------
 * TAP AREA (this allows to increase the tap area on mobile)
 * -------------------------------------------------------------
 */

.tap-area {
    position: relative;
}

[dir='ltr'] .tap-area::before {
    right: -6px;
}

[dir='rtl'] .tap-area::before {
    left: -6px;
}

[dir='ltr'] .tap-area::before {
    left: -6px;
}

[dir='rtl'] .tap-area::before {
    right: -6px;
}

.tap-area::before {
    content: '';
    position: absolute;
    top: -6px;
    bottom: -6px;
}

[dir='ltr'] .tap-area--large::before {
    right: -10px;
}

[dir='rtl'] .tap-area--large::before {
    left: -10px;
}

[dir='ltr'] .tap-area--large::before {
    left: -10px;
}

[dir='rtl'] .tap-area--large::before {
    right: -10px;
}

.tap-area--large::before {
    top: -10px;
    bottom: -10px;
}

/**
 * --------------------------------------------------------------------
 * SCROLLER (only for mobile and desktop)
 * --------------------------------------------------------------------
 */

@media screen and (max-width: 999px) {
    .scroller {
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        overflow-y: hidden;
        margin-right: calc(
            -1 * var(--container-gutter)
        ); /* On mobile we remove the container gutter to make sure the scroll is edge to edge */

        margin-left: calc(-1 * var(--container-gutter));
    }

    .scroller::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome and Safari */
    }

    .scroller__inner {
        min-width: min-content;
        margin-right: auto; /* margin rules allow to center the content if there are not enough elements to scroll */
        margin-left: auto;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

/**
 * -------------------------------------------------------------
 * HIDE SCROLLBAR
 * -------------------------------------------------------------
 */

.hide-scrollbar {
    scrollbar-width: none; /* For Firefox */
    overflow-x: auto;
    overflow-y: hidden;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none; /* For Chrome and Safari */
}

/**
 * --------------------------------------------------------------------
 * ANIMATION
 * --------------------------------------------------------------------
 */

.js .animated-element {
    visibility: hidden; /* An animated element will be an element that is dynamically transitioned */
}

/**
 * --------------------------------------------------------------------
 * SQUARE SEPARATOR
 * --------------------------------------------------------------------
 */

.square-separator {
    position: relative;
    display: inline-block;
    flex-shrink: 0; /* in case it is a flex children */
    width: 4px;
    height: 4px;
    margin: 0 8px;
    vertical-align: middle;
    background: currentcolor;
}

.square-separator--block {
    top: 1px;
    margin-right: 12px;
    margin-left: 12px;
}

.square-separator--subdued {
    opacity: 0.5;
}

/**
 * --------------------------------------------------------------------
 * PREV NEXT BUTTONS (used in different places to navigate in scrollable elements)
 * --------------------------------------------------------------------
 */

/* Animation states that we apply to those buttons */
@keyframes prevNextButtonKeyframe {
    0% {
        transform: translateX(0%) scale(var(--transform-logical-flip), 1);
    }

    50% {
        transform: translateX(calc(50% + 10px)) scale(var(--transform-logical-flip), 1);
    }

    51% {
        transform: translateX(calc(-50% - 10px)) scale(var(--transform-logical-flip), 1);
    }

    100% {
        transform: translateX(0%) scale(var(--transform-logical-flip), 1);
    }
}

.prev-next-buttons {
    pointer-events: none;
    display: inline-grid;
}

.prev-next-buttons--row {
    grid-auto-flow: column;
}

.prev-next-button {
    pointer-events: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgb(var(--prev-next-button-color, var(--root-text-color)));
    background: rgb(var(--prev-next-button-background, var(--root-background)));
    border: 1px solid rgba(var(--prev-next-button-color, var(--root-text-color)), 0.15);
    border-radius: var(--button-border-radius);
    transition: color 0.2s ease-in-out;
}

.prev-next-button[disabled] {
    color: rgba(var(--prev-next-button-color), 0.3);
}

.prev-next-button svg {
    width: 100%;
}

[dir='ltr'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:first-child {
    border-bottom-right-radius: 0;
}

[dir='rtl'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:first-child {
    border-bottom-left-radius: 0;
}

[dir='ltr'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:first-child {
    border-bottom-left-radius: 0;
}

[dir='rtl'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:first-child {
    border-bottom-right-radius: 0;
}

[dir='ltr'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:last-child {
    border-top-right-radius: 0;
}

[dir='rtl'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:last-child {
    border-top-left-radius: 0;
}

[dir='ltr'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:last-child {
    border-top-left-radius: 0;
}

[dir='rtl'] .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:last-child {
    border-top-right-radius: 0;
}

[dir='ltr'] .prev-next-buttons--row .prev-next-button:first-child {
    border-bottom-right-radius: 0;
}

[dir='rtl'] .prev-next-buttons--row .prev-next-button:first-child {
    border-bottom-left-radius: 0;
}

[dir='ltr'] .prev-next-buttons--row .prev-next-button:first-child {
    border-top-right-radius: 0;
}

[dir='rtl'] .prev-next-buttons--row .prev-next-button:first-child {
    border-top-left-radius: 0;
}

[dir='ltr'] .prev-next-buttons--row .prev-next-button:last-child {
    border-bottom-left-radius: 0;
}

[dir='rtl'] .prev-next-buttons--row .prev-next-button:last-child {
    border-bottom-right-radius: 0;
}

[dir='ltr'] .prev-next-buttons--row .prev-next-button:last-child {
    border-top-left-radius: 0;
}

[dir='rtl'] .prev-next-buttons--row .prev-next-button:last-child {
    border-top-right-radius: 0;
}

@media screen and (min-width: 741px) {
    .prev-next-button:not(.prev-next-button--small) {
        width: 56px;
        height: 56px;
    }

    .prev-next-buttons:not(.prev-next-buttons--row) .prev-next-button:last-child {
        border-top: none;
    }

    .prev-next-buttons--row .prev-next-button:last-child {
        border-left: none;
    }
}

@media screen and (pointer: fine) {
    .prev-next-button--prev:hover svg {
        animation: prevNextButtonKeyframe 0.3s ease-in-out reverse forwards;
    }

    .prev-next-button--next:hover svg {
        animation: prevNextButtonKeyframe 0.3s ease-in-out forwards;
    }
}

/**
 * --------------------------------------------------------------------
 * DOT NAVIGATION
 * --------------------------------------------------------------------
 */

.dots-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -6px;
}

.dots-nav--centered {
    justify-content: center;
}

.dots-nav__item {
    position: relative;
    width: 6px;
    height: 6px;
    margin: 6px;
    opacity: 0.3;
    background: rgb(var(--text-color));
    border-radius: min(var(--button-border-radius), 6px);
    transition: opacity 0.2s ease-in-out;
}

.dots-nav__item[aria-current='true'] {
    opacity: 1;
}

/**
 * -------------------------------------------------------------
 * PRICE
 * -------------------------------------------------------------
 */

.price-list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-right: 1rem;
}

.price-list--centered {
    justify-content: center;
}

.price-list--stack {
    display: inline-grid;
}

[dir='ltr'] .price-list:not(.price-list--stack) > .price:not(:last-child) {
    margin-right: 10px;
}

[dir='rtl'] .price-list:not(.price-list--stack) > .price:not(:last-child) {
    margin-left: 10px;
}

[dir='ltr'] .price-list > .price--block {
    margin-left: 0 !important;
}

[dir='rtl'] .price-list > .price--block {
    margin-right: 0 !important;
}

.price-list > .price--block {
    flex-basis: 100%;
}

[dir='ltr'] .price-list + .link {
    margin-left: 16px;
}

[dir='rtl'] .price-list + .link {
    margin-right: 16px;
}

.price--highlight {
    color: rgb(var(--product-on-sale-accent));
}

.price--compare {
    text-decoration: line-through;
    opacity: 0.7;
}

.price--large {
    font-size: calc(var(--base-font-size) + 3px);
}

.unit-price-measurement {
    display: inline-flex; /* This allows to remove the space between each elements */
}

@media screen and (min-width: 1000px) {
    .price--large:not(.price--compare) {
        font-size: calc(var(--base-font-size) + 7px);
    }
}

/**
 * --------------------------------------------------------------------
 * LABEL
 * --------------------------------------------------------------------
 */

.label {
    display: inline-block;
    padding: 0 5px;
    font-family: var(--text-font-family);
    font-size: 10px;
    font-weight: var(--text-font-bold-weight);
    font-style: var(--text-font-style);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: top;
    border-radius: min(var(--block-border-radius), 2px);
}

.label--highlight {
    color: rgb(255 255 255);
    background: rgb(var(--product-on-sale-accent));
}

.label--subdued {
    color: rgb(255 255 255);
    background: rgb(0 0 0);
}

.label--custom {
    color: rgb(var(--product-custom-label-text-color));
    background: rgb(var(--product-custom-label-background));
}

.label--custom2 {
    color: rgb(var(--product-custom-label-2-text-color));
    background: rgb(var(--product-custom-label-2-background));
}

.label-list {
    pointer-events: none;
    display: flex;
    flex-direction: column;

    /* align-items: flex-start; */
    align-items: center;
}

.label-list:not(.label-list--horizontal) .label:not(:last-child) {
    margin-bottom: 4px;
}

.label-list--horizontal {
    flex-direction: row;
}

[dir='ltr'] .label-list--horizontal .label:not(:last-child) {
    margin-right: 4px;
}

[dir='rtl'] .label-list--horizontal .label:not(:last-child) {
    margin-left: 4px;
}

@media screen and (min-width: 741px) {
    .label {
        font-size: 12px;
    }
}

/**
 * -------------------------------------------------------------
 * TAG
 * -------------------------------------------------------------
 */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -6px;
}

[dir='ltr'] .tag {
    padding: 7px 14px 8px 13px;
}

[dir='rtl'] .tag {
    padding: 7px 13px 8px 14px;
}

.tag {
    display: flex;
    align-items: center;
    margin: 6px;
    background: rgba(var(--text-color), 0.05);
}

[dir='ltr'] .tag__icon {
    margin: 1px 9px 0 0;
}

[dir='rtl'] .tag__icon {
    margin: 1px 0 0 9px;
}

.tag__icon {
    cursor: pointer;
    position: relative; /* For pixel perfect precision ! */
}

[dir='ltr'] .tag-link {
    padding-left: 6px;
}

[dir='rtl'] .tag-link {
    padding-right: 6px;
}

/**
 * -------------------------------------------------------------
 * SOCIAL MEDIA
 * -------------------------------------------------------------
 */

.social-media {
    display: flex;
    flex-wrap: wrap;
}

.social-media__item {
    position: relative;
    transform: translateZ(0); /* allow to promote on its own layer */
    box-shadow:
        1px 0 0 0 rgb(var(--border-color)),
        0 1px 0 0 rgb(var(--border-color)),
        1px 1px 0 0 rgb(var(--border-color)),
        1px 0 0 0 rgb(var(--border-color)) inset,
        0 1px 0 0 rgb(var(--border-color)) inset;
}

.no-focus-outline .social-media__item {
    overflow: hidden;
}

.social-media__item::before {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    transform-origin: bottom;
    transform: scaleY(0);
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    background: currentcolor;
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
    transition:
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[dir='ltr'] .social-media:not(.social-media--no-radius) .social-media__item:first-child {
    border-top-left-radius: var(--button-border-radius);
}

[dir='rtl'] .social-media:not(.social-media--no-radius) .social-media__item:first-child {
    border-top-right-radius: var(--button-border-radius);
}

[dir='ltr'] .social-media:not(.social-media--no-radius) .social-media__item:first-child {
    border-bottom-left-radius: var(--button-border-radius);
}

[dir='rtl'] .social-media:not(.social-media--no-radius) .social-media__item:first-child {
    border-bottom-right-radius: var(--button-border-radius);
}

[dir='ltr'] .social-media:not(.social-media--no-radius) .social-media__item:last-child {
    border-top-right-radius: var(--button-border-radius);
}

[dir='rtl'] .social-media:not(.social-media--no-radius) .social-media__item:last-child {
    border-top-left-radius: var(--button-border-radius);
}

[dir='ltr'] .social-media:not(.social-media--no-radius) .social-media__item:last-child {
    border-bottom-right-radius: var(--button-border-radius);
}

[dir='rtl'] .social-media:not(.social-media--no-radius) .social-media__item:last-child {
    border-bottom-left-radius: var(--button-border-radius);
}

.social-media__link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: currentcolor;
    transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media screen and (min-width: 741px) {
    .social-media__link {
        width: 55px;
        height: 55px;
    }
}

@media screen and (pointer: fine) {
    .social-media__item:hover .social-media__link {
        color: rgb(var(--background));
    }

    .social-media__item:hover::before {
        transform: scaleY(1);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/**
 * -------------------------------------------------------------
 * BANNER
 * -------------------------------------------------------------
 */

[dir='ltr'] .banner {
    text-align: left;
}

[dir='rtl'] .banner {
    text-align: right;
}

.banner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px 16px;
}

.banner--centered {
    justify-content: center;
}

.banner--margin {
    margin-top: 24px;
}

[dir='ltr'] .banner__ribbon {
    margin-right: 10px;
}

[dir='rtl'] .banner__ribbon {
    margin-left: 10px;
}

.banner__content {
    margin: 0;
}

.banner--success {
    --text-color: rgb(var(--success-color));

    color: rgb(var(--success-color));
    background: rgb(var(--success-background));
}

.banner--error {
    --text-color: rgb(var(--error-color));

    color: rgb(var(--error-color));
    background: rgb(var(--error-background));
}

[dir='ltr'] .banner__content ul {
    padding-left: 10px;
}

[dir='rtl'] .banner__content ul {
    padding-right: 10px;
}

.banner__content ul {
    list-style-position: inside;
}

@media screen and (min-width: 741px) {
    .banner {
        padding: 13px 18px;
    }
}

/**
 * -------------------------------------------------------------
 * TABS (used in product pages and for the collections section)
 * -------------------------------------------------------------
 */

.tabs-nav {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.tabs-nav:not(:first-child) {
    margin-top: 24px;
}

.tabs-nav__scroller {
    display: block;
}

.tabs-nav__scroller-inner {
    position: relative;
    line-height: 1;
}

.tabs-nav__item-list {
    display: inline-grid;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    gap: 32px;
    justify-content: flex-start;
    vertical-align: top;
    box-shadow: 0 -1px rgb(var(--border-color)) inset;
}

.tabs-nav__item {
    padding-bottom: 18px;
    opacity: 0.7;
    transition: opacity 0.25s ease-in-out;
}

.tabs-nav__item[aria-expanded='true'] {
    opacity: 1;
}

[dir='ltr'] .tabs-nav__position {
    left: 0;
}

[dir='rtl'] .tabs-nav__position {
    right: 0;
}

.tabs-nav__position {
    position: absolute;
    bottom: 0;
    transform-origin: left; /* Make sure to always use left here even in RTL, as the calculation is based on LTR */
    transform: scaleX(var(--scale, 0)) translateX(var(--translate, 0));
    width: 100%;
    height: 2px;
    background: currentcolor;
}

.tabs-nav__position.is-initialized {
    transition: transform 0.4s ease-in-out;
}

@supports (scale: 0) {
    .tabs-nav__position {
        transform: none;
        translate: calc(var(--translate, 0) * var(--scale, 0));
        scale: var(--scale, 0) 1;
    }

    .tabs-nav__position.is-initialized {
        transition:
            scale 0.2s ease-in-out,
            translate 0.4s ease-in-out;
    }
}

/* Center variation */

.tabs-nav--center .tabs-nav__scroller-inner {
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
}

/* Arrow variation */

[dir='ltr'] .tabs-nav__arrows {
    right: 0;
}

[dir='rtl'] .tabs-nav__arrows {
    left: 0;
}

.tabs-nav__arrows {
    position: absolute;
    z-index: 1;
    top: -5px;
    display: none;
}

.tabs-nav__scroller.is-scrollable + .tabs-nav__arrows {
    display: flex;
}

.tabs-nav__arrow-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgb(var(--background));
    border: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .tabs-nav__arrow-item + .tabs-nav__arrow-item {
    border-left: none;
}

[dir='rtl'] .tabs-nav__arrow-item + .tabs-nav__arrow-item {
    border-right: none;
}

.tabs-nav[arrows] .tabs-nav__scroller {
    overflow: hidden; /* Prevent to be manually scrollable as we want to allow scroll with arrows only */
}

[dir='ltr'] .tabs-nav[arrows] .tabs-nav__scroller.is-scrollable::before {
    right: 48px;
}

[dir='rtl'] .tabs-nav[arrows] .tabs-nav__scroller.is-scrollable::before {
    left: 48px;
}

.tabs-nav[arrows] .tabs-nav__scroller.is-scrollable::before {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    top: -2px; /* Prevent to overlap the bottom border */ /* Shift by the arrows size */
    width: 48px;
    height: 100%;
    background: linear-gradient(
        to var(--transform-origin-start),
        rgb(var(--section-background, var(--background))),
        rgba(var(--section-background, var(--background)), 0)
    );
}

[dir='ltr'] .tabs-nav[arrows] .tabs-nav__item-list {
    margin-right: 0;
}

[dir='rtl'] .tabs-nav[arrows] .tabs-nav__item-list {
    margin-left: 0;
}

.tabs-nav[arrows] .tabs-nav__item-list {
    width: 100%; /* In arrow mode we want to extend the list all the time */
    min-width: max-content;
}

.tabs-nav[arrows] .tabs-nav__item-list::after {
    content: '';
    display: block;
    width: 35px;
}

/* No border variation */

.tabs-nav--no-border.tabs-nav--narrow {
    margin-bottom: 24px; /* When there is no bottom border spacing with next elements is closer */
}

.tabs-nav--no-border .tabs-nav__item-list {
    box-shadow: none;
}

.tabs-nav--no-border.tabs-nav--narrow .tabs-nav__item {
    padding-bottom: 5px; /* Due to the lack of border we reduce the spacing with the moving link */
}

@media screen and (max-width: 999px) {
    /* On phone and tablet, when the tab nav is contained within a section header, we stretch it to be edge to edge */
    .tabs-nav--edge2edge {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    .tabs-nav--edge2edge .tabs-nav__scroller-inner {
        min-width: max-content;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) {
    .tabs-nav:not(:first-child) {
        margin-top: 32px;
    }

    .tabs-nav--no-border.tabs-nav--narrow {
        margin-bottom: 32px; /* When there is no bottom border spacing with next elements is closer */
    }

    .tabs-nav__item-list {
        gap: 54px;
    }

    .tabs-nav--loose .tabs-nav__item-list {
        gap: 72px;
    }

    .tabs-nav--narrow .tabs-nav__item-list {
        gap: 40px;
    }
}

/**
 * -------------------------------------------------------------
 * EMPTY STATE
 * -------------------------------------------------------------
 */

.empty-state {
    position: relative;
    margin: 100px 0;
    text-align: center;
}

.empty-state--bottom-only {
    margin-top: 24px;
}

[dir='ltr'] .empty-state__background-text {
    left: 0;
}

[dir='rtl'] .empty-state__background-text {
    right: 0;
}

.empty-state__background-text {
    position: absolute;
    width: 100%;
    margin-top: -20px;
    font-size: 120px;
    font-weight: bold;
    line-height: 0;
    text-align: center;
    opacity: 0.05;
}

@media screen and (min-width: 741px) {
    .empty-state {
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .empty-state--bottom-only {
        margin-top: 50px;
    }

    .empty-state__background-text {
        position: absolute;
        margin-top: -35px;
        font-size: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .empty-state {
        margin-top: 225px;
        margin-bottom: 225px;
    }

    .empty-state--bottom-only {
        margin-top: 50px;
    }
}

/**
 * -------------------------------------------------------------
 * BUBBLE COUNT (used in various places to show a count)
 * -------------------------------------------------------------
 */

.bubble-count {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: var(--text-font-bold-weight);
    font-style: var(--text-font-style);
    line-height: 1;
    color: rgb(var(--background));
    letter-spacing: 0;
    background: rgb(var(--heading-color));
    border-radius: 21px;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}

.bubble-count--top {
    vertical-align: top;
}

/**
 * --------------------------------------------------------------------
 * QUANTITY SELECTOR
 * --------------------------------------------------------------------
 */

.quantity-selector {
    --quantity-selector-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    vertical-align: middle;
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--button-border-radius);
}

.quantity-selector__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--quantity-selector-height);
    height: var(--quantity-selector-height);
}

.quantity-selector__input {
    height: var(--quantity-selector-height);
    padding: 0 10px;
    line-height: var(--quantity-selector-height);
    text-align: center;
    appearance: none;
    background: transparent;
    border: none;
}

.quantity-selector--small {
    --quantity-selector-height: 28px;
}

.quantity-selector--small .quantity-selector__input {
    padding: 0 2px;
}

/**
 * --------------------------------------------------------------------
 * SPINNER
 * --------------------------------------------------------------------
 */

@keyframes spinnerRotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinnerDash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes spinnerColor {
    0% {
        stroke: currentcolor;
    }

    40% {
        stroke: currentcolor;
    }

    66% {
        stroke: currentcolor;
    }

    80%,
    90% {
        stroke: currentcolor;
    }
}

.spinner svg {
    transform-origin: center center;
    margin: auto;
    animation: spinnerRotate 2s linear infinite;
}

.spinner circle {
    animation:
        spinnerDash 1.5s ease-in-out infinite,
        spinnerColor 6s ease-in-out infinite;
}

/**
 * --------------------------------------------------------------------
 * TOOLTIP
 * --------------------------------------------------------------------
 */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    pointer-events: none;
    content: attr(data-tooltip);
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    font-size: calc(var(--base-font-size) - 2px);
    color: rgb(var(--background));
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--heading-color));
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 1px);
    left: calc(50% - 7px);
    transform: rotate(-45deg);
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    border-color: transparent transparent rgb(var(--heading-color)) rgb(var(--heading-color));
    border-style: solid;
    border-width: 6px;
    box-shadow: -1px 1px 1px 0 rgb(0 0 0 / 10%);
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

[data-tooltip-position='bottom-left']::before {
    inset: calc(100% + 4px) -6px auto auto;
    transform: none;
}

[data-tooltip-position='bottom-left']::after {
    top: calc(100% - 1px);
    left: calc(50% - 6px);
    transform: rotate(135deg);
}

/**
 * --------------------------------------------------------------------
 * CART NOTIFICATION
 * --------------------------------------------------------------------
 */

.cart-notification {
    --heading-color: 255, 255, 255;
    --text-color: 255, 255, 255;
    --cart-notification-background: rgb(var(--success-color));

    position: absolute;
    top: 100%;
    transform: translateY(var(--cart-notification-offset, 0));
    overflow: hidden;
    display: block;
    width: 100%;
    color: rgb(var(--text-color));
    visibility: visible;
    transition:
        visibility 0.25s ease-in-out,
        transform 0.25s ease-in-out;
}

.cart-notification--error {
    --cart-notification-background: rgb(var(--error-color));
}

.cart-notification--drawer {
    --cart-notification-offset: 0;

    z-index: 1;
    top: var(--header-height-without-bottom-nav);
}

.cart-notification--fixed {
    position: fixed;
    top: 0;
}

.cart-notification[hidden] {
    visibility: hidden;
}

.cart-notification__overflow {
    transform: translateY(0);
    background: var(--cart-notification-background);
    transition:
        opacity 0.25s ease-in-out,
        transform 0.25s ease-in-out;
}

.cart-notification[hidden] .cart-notification__overflow {
    transform: translateY(-100%);
    opacity: 0;
}

.cart-notification__wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

.cart-notification .icon--cart-notification {
    position: relative;
    top: 2px;
}

[dir='ltr'] .cart-notification__text-wrapper {
    margin-left: 12px;
}

[dir='rtl'] .cart-notification__text-wrapper {
    margin-right: 12px;
}

.cart-notification__text-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

[dir='ltr'] .cart-notification__heading {
    margin-right: 12px;
}

[dir='rtl'] .cart-notification__heading {
    margin-left: 12px;
}

.cart-notification__heading {
    font-size: 14px;
}

[dir='ltr'] .cart-notification__close {
    right: 0;
}

[dir='rtl'] .cart-notification__close {
    left: 0;
}

.cart-notification__close {
    position: absolute;
    margin-top: -1px;
}

.cart-notification--drawer .cart-notification__text-wrapper {
    flex-grow: 1;
    justify-content: space-between;
}

@media screen and (max-width: 740px) {
    .cart-notification__text-wrapper {
        flex-grow: 1;
        justify-content: space-between;
    }
}

@media screen and (max-width: 999px) {
    .cart-notification {
        transform: none !important; /* You cannot have any offset on pocket */
    }
}

@media screen and (min-width: 741px) {
    .cart-notification__wrapper {
        padding-top: 19px;
        padding-bottom: 19px;
    }

    .cart-notification .icon--cart-notification {
        top: 4px;
    }

    [dir='ltr'] .cart-notification__heading {
        margin-right: 16px;
    }

    [dir='rtl'] .cart-notification__heading {
        margin-left: 16px;
    }

    .cart-notification__heading {
        font-size: 16px;
    }

    .cart-notification__close svg {
        width: 15px;
        height: 15px;
    }
}

/**
 * -------------------------------------------------------------
 * PAYMENT METHODS
 * -------------------------------------------------------------
 */

.payment-methods-list {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(auto-fit, 38px);
    gap: 8px;
    padding-left: 0;
}

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

@media screen and (min-width: 741px) {
    .payment-methods-list--auto {
        grid-auto-flow: column;
    }
}

.payment-methods-list .payment-methods-list-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

/**
 * -------------------------------------------------------------
 * LINK BAR (show a list of links usually for tags ; used in collection and blog pages)
 * -------------------------------------------------------------
 */

.link-bar {
    position: relative;
    display: block;
    text-align: center;
    box-shadow:
        0 1px rgb(var(--border-color)),
        0 -1px rgb(var(--border-color));
}

.link-bar__wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.link-bar__scroller {
    scroll-snap-type: x proximity;
}

.link-bar__title {
    position: sticky;
    z-index: 1;
    left: 0;
    flex-shrink: 0;
    background: rgb(var(--background));
}

.link-bar__title::after {
    content: '';
    position: absolute;
    top: 0;
    width: 28px;
    height: 100%;
    background-image: linear-gradient(
        to var(--transform-origin-end),
        rgb(var(--background)) 35%,
        rgba(var(--background), 0)
    );
}

[dir='ltr'] .link-bar__title + .link-bar__scroller {
    padding-left: 28px;
}

[dir='rtl'] .link-bar__title + .link-bar__scroller {
    padding-right: 28px;
}

.link-bar__linklist {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 28px;
    gap: 28px;
    align-items: center;
    min-width: max-content;
}

.link-bar__link-item,
.link-bar__title {
    padding-top: 14px;
    padding-bottom: 14px;
}

.link-bar__link-item--selected {
    scroll-snap-align: center;
}

@media screen and (max-width: 999px) {
    [dir='ltr'] .link-bar__wrapper::after {
        left: 100%;
    }

    [dir='rtl'] .link-bar__wrapper::after {
        right: 100%;
    }

    .link-bar__wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        width: var(--container-gutter);
        height: 100%;
        background-image: linear-gradient(
            to var(--transform-origin-start),
            rgb(var(--background)),
            rgba(var(--background), 0)
        );
    }

    [dir='ltr'] .link-bar__scroller {
        margin-right: calc(-1 * var(--container-gutter));
    }

    [dir='rtl'] .link-bar__scroller {
        margin-left: calc(-1 * var(--container-gutter));
    }

    [dir='ltr'] .link-bar__linklist {
        padding-right: var(--container-gutter);
    }

    [dir='rtl'] .link-bar__linklist {
        padding-left: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .link-bar__title + .link-bar__scroller {
        padding-left: 48px;
    }

    [dir='rtl'] .link-bar__title + .link-bar__scroller {
        padding-right: 48px;
    }

    .link-bar__linklist {
        gap: 40px;
    }

    .link-bar__link-item,
    .link-bar__title {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .link-bar__link-item,
    .link-bar__title {
        padding-top: 27px;
        padding-bottom: 27px;
    }
}

/**
 * -------------------------------------------------------------
 * MOBILE SHARE BUTTONS
 *
 * Those are used in product pages and blog posts
 * -------------------------------------------------------------
 */

.mobile-share-buttons__item {
    display: flex;
    align-items: center;
    margin-right: 24px;
    margin-left: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}

@supports (padding: max(0px)) {
    .mobile-share-buttons {
        padding-bottom: max(20px, env(safe-area-inset-bottom) + 20px);
    }
}

.mobile-share-buttons__item:not(:last-child) {
    border-bottom: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .mobile-share-buttons__item svg {
    margin-right: 16px;
}

[dir='rtl'] .mobile-share-buttons__item svg {
    margin-left: 16px;
}

/**
 * --------------------------------------------------------------------
 * MOBILE TOOLBAR
 *
 * Those are used on collection page and account pages to create links
 * to sub-section
 * --------------------------------------------------------------------
 */

.mobile-toolbar {
    position: sticky;
    z-index: 2;
    top: calc(
        var(--enable-sticky-header) * var(--header-height, 0px) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar)
    );
    display: flex;
    align-items: center;
    visibility: visible;
    transition:
        margin-top 0.2s ease-in-out,
        visibility 0.2s ease-in-out;
}

.mobile-toolbar.is-collapsed {
    margin-top: -48px;
    visibility: hidden;
}

.mobile-toolbar--fixed {
    position: relative;
    top: 0;
}

.mobile-toolbar__item {
    display: flex;
    flex: 1 0 0;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background: rgb(var(--background));
    border-top: 1px solid rgb(var(--border-color));
    border-bottom: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .mobile-toolbar__item + .mobile-toolbar__item {
    border-left: 1px solid rgb(var(--border-color));
}

[dir='rtl'] .mobile-toolbar__item + .mobile-toolbar__item {
    border-right: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .mobile-toolbar__item .icon--chevron {
    margin-left: 10px;
}

[dir='rtl'] .mobile-toolbar__item .icon--chevron {
    margin-right: 10px;
}

/**
 * -------------------------------------------------------------
 * COMBO BOX
 *
 * Implementation note: on mobile the combo-box is largely similar to the
 * popover and therefore re-use lot of styles. I preferred doing some
 * duplication here rather than rely on JavaScript to dynamically transformed
 * a non-popover on desktop to a popover
 * -------------------------------------------------------------
 */

@media screen and (max-width: 740px) {
    [dir='ltr'] .combo-box {
        left: 0;
    }

    [dir='rtl'] .combo-box {
        right: 0;
    }

    .combo-box {
        --heading-color: var(--root-heading-color);
        --text-color: var(--root-text-color);
        --background: var(--root-background);

        position: fixed;
        z-index: 10;
        bottom: 0;
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
        width: 100vw;
        max-height: 75vh;
        color: rgb(var(--text-color));
        visibility: hidden;
        background: rgb(var(--background));
        border-radius: 10px 10px 0 0;
        transition:
            transform 0.7s cubic-bezier(0.75, 0, 0.175, 1),
            visibility 0.7s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .combo-box[open] {
        transform: translateY(0);
        visibility: visible;
    }

    [dir='ltr'] .combo-box__overlay {
        left: 0;
    }

    [dir='rtl'] .combo-box__overlay {
        right: 0;
    }

    .combo-box__overlay {
        content: '';
        position: absolute;
        bottom: calc(
            100% - 10px
        ); /* There is a border radius on the header on mobile so we slightly move down the overlay */

        width: 100%;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        background: #000;
        transition:
            opacity 0.5s ease-in-out,
            visibility 0.5s ease-in-out;
    }

    .combo-box__header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 64px;
        padding: 18px 32px;
        text-align: center;
        border-radius: 10px 10px 0 0;
        box-shadow: 0 1px rgb(var(--border-color));
    }

    .combo-box__header,
    .combo-box__content {
        background: inherit;
    }

    .combo-box__title {
        margin-bottom: 0;
    }

    [dir='ltr'] .combo-box__close-button {
        right: 24px;
    }

    [dir='rtl'] .combo-box__close-button {
        left: 24px;
    }

    .combo-box__close-button {
        position: absolute;
        z-index: 1;
        top: 24px;
    }

    .combo-box[open] > .combo-box__overlay {
        visibility: visible;
        opacity: 0.3;
    }

    .combo-box__option-list {
        overflow-x: hidden;
        overflow-y: auto;
        padding-right: 24px;
        padding-bottom: max(16px, env(safe-area-inset-bottom, 0px) + 16px);
        padding-left: 24px;
    }

    .combo-box__option-item {
        position: relative;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgb(var(--border-color));
    }

    .combo-box__option-item:not([hidden]) {
        display: block;
    }

    .combo-box__option-item:last-child {
        border-bottom: none;
    }

    [dir='ltr'] .combo-box__option-item[aria-selected='true']::after {
        margin-left: 12px;
    }

    [dir='rtl'] .combo-box__option-item[aria-selected='true']::after {
        margin-right: 12px;
    }

    .combo-box__option-item[aria-selected='true']::after {
        content: '';
        display: inline-block;
        width: 12px;
        height: 9px;
        background-color: currentcolor;
        mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMy40TDQuNzQ5MzEgN0wxMSAxIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+');
        mask-repeat: no-repeat;
        mask-size: 12px 9px;
    }

    .combo-box__option-item.is-disabled {
        color: rgba(var(--text-color), 0.5);
    }
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .combo-box {
        left: 0;
    }

    [dir='rtl'] .combo-box {
        right: 0;
    }

    .combo-box {
        position: absolute;
        z-index: 2;
        top: 100%;
        overflow: auto;
        overscroll-behavior: contain;
        display: block;
        width: 100%;
        max-height: 245px;
        padding: 8px 0;
        background: rgb(var(--background));
        border: 1px solid rgb(var(--border-color));
        border-top: none;
        border-radius: 0 0 var(--button-border-radius) var(--button-border-radius);
        transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out;
    }

    .combo-box--top {
        top: auto;
        bottom: 100%;
        border-top: 1px solid rgb(var(--border-color));
        border-bottom: none;
        border-radius: var(--button-border-radius) var(--button-border-radius) 0 0;
    }

    .combo-box:not([open]) {
        visibility: hidden;
        opacity: 0;
    }

    .combo-box__header {
        display: none; /* Nothing on tablet and up */
    }

    .combo-box__option-list {
        min-width: max-content;
    }

    .combo-box__option-item:not([hidden]) {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 8px 18px;
        text-align: left;
        transition: background 0.2s ease-in-out;
    }

    .combo-box__option-item.is-disabled {
        color: rgba(var(--text-color), 0.5);
    }

    .combo-box__option-item:hover,
    .combo-box__option-item:focus {
        background: rgb(var(--secondary-background));
    }

    [dir='ltr'] .combo-box__color-swatch {
        margin-right: 10px;
    }

    [dir='rtl'] .combo-box__color-swatch {
        margin-left: 10px;
    }

    .combo-box__color-swatch {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: var(--color-swatch-border-radius);
    }

    /* Adjustment to the toggle button */
    .combo-box + .select {
        transition: border-radius 0.2s ease-in-out;
    }

    [dir='ltr'] .combo-box[open] + .select {
        border-bottom-left-radius: 0;
    }

    [dir='rtl'] .combo-box[open] + .select {
        border-bottom-right-radius: 0;
    }

    [dir='ltr'] .combo-box[open] + .select {
        border-bottom-right-radius: 0;
    }

    [dir='rtl'] .combo-box[open] + .select {
        border-bottom-left-radius: 0;
    }

    [dir='ltr'] .combo-box--top[open] + .select {
        border-top-left-radius: 0;
    }

    [dir='rtl'] .combo-box--top[open] + .select {
        border-top-right-radius: 0;
    }

    [dir='ltr'] .combo-box--top[open] + .select {
        border-top-right-radius: 0;
    }

    [dir='rtl'] .combo-box--top[open] + .select {
        border-top-left-radius: 0;
    }
}

/**
 * -------------------------------------------------------------
 * PRICE RANGE
 * -------------------------------------------------------------
 */

.price-range {
    display: block;
    padding-top: 5px;
}

.price-range__input-group {
    display: flex;
    align-items: center;
}

.price-range__input {
    flex: 1 0 0;
    min-width: 0; /* Required for Firefox */
}

.price-range__delimiter {
    margin-right: 20px;
    margin-left: 20px;
}

.price-range__range-group {
    position: relative;
    margin-bottom: 15px;
}

.no-js .price-range__range-group {
    display: none !important; /* When JS is disabled we only rely on the input field */
}

@media not screen and (pointer: fine) {
    /* On non-touch device the thumb are bigger so we need to adjust the spacing */
    .price-range {
        padding-top: 7px;
    }

    .price-range__range-group {
        margin-bottom: 18px;
    }
}

/**
 * -------------------------------------------------------------
 * SCROLL SPY
 * -------------------------------------------------------------
 */

.scroll-spy {
    position: sticky;
    top: calc(
        24px + var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar)
    );
    display: block;
}

@media screen and (min-width: 1000px) {
    .scroll-spy {
        scrollbar-color: #191919 #000;
        scrollbar-width: thin;
        overflow-y: auto;
        height: calc(100vh - 140px);
        padding-right: 10px;
    }
}

@media screen and (min-width: 1000px) {
    .template-page-productcard .page-content {
        margin-left: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .template-page-productcard .page-content {
        margin-left: auto;
    }
}

.scroll-spy svg {
    color: #e2a829;
}

.scroll-spy__list {
    padding-left: 6px;
    box-shadow: 1px 0 rgba(var(--text-color), 0.25) inset;
}

.scroll-spy__item {
    opacity: 0.7;
    transition: opacity 0.25s ease-in-out;
}

.scroll-spy__item.is-visible {
    opacity: 1;
}

.scroll-spy__item a {
    color: #fff;
}

.scroll-spy__anchor {
    display: block;
    padding: 10px 24px;
}

[dir='ltr'] .scroll-spy svg {
    left: 0;
}

[dir='rtl'] .scroll-spy svg {
    right: 0;
}

.scroll-spy svg {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
}

.scroll-spy path {
    fill: transparent;
    stroke: currentcolor;
    stroke-dasharray: 0 0 0 1000;
    stroke-linecap: square;
    stroke-width: 2px;
    transition: all 0.3s ease;
}

/**
 * -------------------------------------------------------------
 * SPLIT LINE (custom element)
 * -------------------------------------------------------------
 */

split-lines {
    display: block;
}

/**
 * -------------------------------------------------------------
 * EFFECT
 * -------------------------------------------------------------
 */

@media screen and (pointer: fine) {
    .features--image-zoom .image-zoom img {
        transform: translateZ(0); /* Allow to promote on its own layer */
        transition: transform 0.5s ease;
    }

    .features--image-zoom .image-zoom:hover img {
        transform: scale(1.03);
    }
}

/**
 * -------------------------------------------------------------
 * RATING
 * -------------------------------------------------------------
 */

.rating {
    display: inline-flex;
    align-items: center;
    vertical-align: bottom;
}

.rating__stars {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 2px;
    column-gap: 2px;
}

.rating__star {
    color: rgb(var(--product-star-rating));
}

.rating__star--empty {
    color: rgba(var(--product-star-rating), 0.4);
}

[dir='ltr'] .rating__caption {
    margin-left: 8px;
}

[dir='rtl'] .rating__caption {
    margin-right: 8px;
}

/**
 * -------------------------------------------------------------
 * OPENABLE
 * -------------------------------------------------------------
 */

.openable__overlay {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0; /* We must make sure to not use logical property here */
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: #000;
    transition:
        opacity 0.6s ease-in-out,
        visibility 0.6s ease-in-out;
}

[open] > .openable__overlay {
    visibility: visible;
    opacity: 0.2;
} /* Make sure to keep this order the same as it relies on inheritance */

/*
 * FORM GENERIC
 */

.form__banner:not(:last-child),
.form__info {
    margin-bottom: 24px;
}

.form__info {
    margin-top: 0;
}

.form__submit {
    margin-top: var(--form-submit-margin);
}

.form__submit--closer {
    margin-top: 16px;
}

/* Element that is added below a submit form to provide a secondary, subdued action */
.form__secondary-action {
    display: block;
    width: 100%;
    margin-top: 18px;
    color: #ccc;
    text-align: center;
}

.form__secondary-action .link {
    padding-left: 8px;
}

@media screen and (min-width: 1000px) {
    .form__banner:not(:last-child),
    .form__info {
        margin-bottom: 32px;
    }
}

/*
 * INPUT
 */

.input {
    position: relative;
}

.input + .input,
.input + .input-row,
.input-row + .input-row,
.input-row + .input {
    margin-top: var(--form-input-gap);
}

[dir='ltr'] .input__field,
[dir='ltr'] #shopify-product-reviews .spr-form-input-text,
[dir='ltr'] #shopify-product-reviews .spr-form-input-email,
[dir='ltr'] #shopify-product-reviews .spr-form-input-textarea {
    text-align: left;
}

[dir='rtl'] .input__field,
[dir='rtl'] #shopify-product-reviews .spr-form-input-text,
[dir='rtl'] #shopify-product-reviews .spr-form-input-email,
[dir='rtl'] #shopify-product-reviews .spr-form-input-textarea {
    text-align: right;
}

.input__field,
#shopify-product-reviews .spr-form-input-text,
#shopify-product-reviews .spr-form-input-email,
#shopify-product-reviews .spr-form-input-textarea {
    width: 100%;
    height: var(--form-input-field-height);
    padding: 0 18px;
    line-height: var(--form-input-field-height);
    color: var(--form-input-color);
    appearance: none;
    background: transparent;
    border: 1px solid rgba(var(--text-color), 0.15);
    border-radius: var(--button-border-radius);
    box-shadow: none;
    transition:
        border 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.input__field:focus,
select:focus,
#shopify-product-reviews .spr-form-input-text:focus,
#shopify-product-reviews .spr-form-input-email:focus,
#shopify-product-reviews .spr-form-input-textarea:focus {
    border-color: rgb(var(--text-color));
    outline: none;
    box-shadow: 0 0 0 1px rgb(var(--text-color)) inset;
}

.input__field::placeholder {
    color: rgba(var(--text-color), 0.7);
}

.input__field--transparent {
    background: transparent;
}

.input__field--textarea,
#shopify-product-reviews .spr-form-input-textarea {
    resize: vertical;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: inherit;
    vertical-align: top;
}

[dir='ltr'] .input__label {
    left: 12px;
}

[dir='rtl'] .input__label {
    right: 12px;
}

.input__label {
    pointer-events: none;
    position: absolute;
    top: calc((var(--form-input-field-height) / 2) - 0.5em);
    transform-origin: var(--transform-origin-start) top;
    transform: translateY(0);
    padding: 0 5px;
    line-height: 1;

    /* color: rgba(var(--text-color), 0.7); */
    color: #ccc;
    white-space: nowrap;
    background: rgb(
        var(--section-block-background, var(--section-background, var(--background)))
    ); /* Try to inherit from specific section background first, then global background */

    transition: transform 0.2s ease-in-out;
}

:focus-within ~ .input__label,
.is-filled ~ .input__label {
    transform: scale(0.733) translateY(calc(-24px - 0.5em)) translateX(calc(5px * 0.733));
}

/* Block label is outside the field itself (used on very few forms actually) */
.input__block-label {
    display: inline-block;
    margin-bottom: 8px;
}

/* Used for instance in the login form for the "forgot password" link */
[dir='ltr'] .input__field-link {
    right: 18px;
}

[dir='rtl'] .input__field-link {
    left: 18px;
}

.input__field-link {
    position: absolute;
    top: 1.1em;
}

/* This icon is placed within an input div */
[dir='ltr'] .input__submit-icon {
    right: 20px;
}

[dir='rtl'] .input__submit-icon {
    left: 20px;
}

.input__submit-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input-row .button {
    width: 100%;
}

@media screen and (min-width: 741px) {
    .input-row {
        display: grid;
        grid-gap: var(--form-input-gap);
        grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
        gap: var(--form-input-gap);
    }

    .input-row .input {
        margin-top: 0;
    }

    .input + .input--checkbox,
    .input-row + .input--checkbox {
        margin-top: 30px;
    }

    [dir='ltr'] .input__field-link {
        right: 18px;
    }

    [dir='rtl'] .input__field-link {
        left: 18px;
    }
}

/*
 * INPUT PREFIX (allow to create small input with a prefixed value)
 */

.input-prefix {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .input-prefix__field {
    text-align: right;
}

[dir='rtl'] .input-prefix__field {
    text-align: left;
}

.input-prefix__field {
    width: 100%;
    min-width: 0;
    padding: 0;
    appearance: textfield;
    appearance: none;
    background: transparent;
    border: none;
}

.input-prefix__field::-webkit-outer-spin-button,
.input-prefix__field::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

/*
 * CHECKBOX
 */

.checkbox-container {
    display: flex;
    align-items: baseline;
}

.checkbox-container + .checkbox-container {
    margin-top: 10px;
}

.checkbox {
    cursor: pointer;
    position: relative;
    top: 2px;
    flex: none;
    width: 14px;
    height: 14px;
    appearance: none;
    background-color: rgb(var(--background));
    border: 1px solid rgb(var(--border-color-darker));
    border-radius: 0;
    transition:
        background-color 0.2s ease-in-out,
        border 0.2s ease-in-out;
}

.checkbox:checked {
    background-color: rgb(var(--heading-color));
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgM0w0IDZMOS4wMDE0NiAxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: center;
    border-color: rgb(var(--heading-color));
}

.checkbox:disabled + label {
    cursor: default;
    opacity: 0.7;
}

[dir='ltr'] .checkbox + label {
    padding-left: 12px;
}

[dir='rtl'] .checkbox + label {
    padding-right: 12px;
}

.checkbox + label {
    cursor: pointer;
}

@media screen and (min-width: 1000px) {
    .checkbox-container + .checkbox-container {
        margin-top: 2px;
    }
}

/*
 * SELECT
 */

.select-wrapper {
    position: relative;
}

.select {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--form-input-field-height);
    padding: 0 18px;
    appearance: none; /* Remove default style if applied to a built-in select */
    background: transparent;
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--button-border-radius);
}

[dir='ltr'] .select--collapse-start {
    border-top-left-radius: 0;
}

[dir='rtl'] .select--collapse-start {
    border-top-right-radius: 0;
}

[dir='ltr'] .select--collapse-start {
    border-bottom-left-radius: 0;
}

[dir='rtl'] .select--collapse-start {
    border-bottom-right-radius: 0;
}

[dir='ltr'] .select--collapse-end {
    border-top-right-radius: 0;
}

[dir='rtl'] .select--collapse-end {
    border-top-left-radius: 0;
}

[dir='ltr'] .select--collapse-end {
    border-bottom-right-radius: 0;
}

[dir='rtl'] .select--collapse-end {
    border-bottom-left-radius: 0;
}

[dir='ltr'] .select svg {
    margin-left: 20px;
}

[dir='rtl'] .select svg {
    margin-right: 20px;
}

.select svg {
    transition: transform 0.25s ease-in-out;
}

/* When the select class is applied to a native select, then the svg arrow is positioned absolutely */
[dir='ltr'] .select ~ svg {
    right: 18px;
}

[dir='rtl'] .select ~ svg {
    left: 18px;
}

.select ~ svg {
    position: absolute;
    top: calc(50% - 4px);
}

.select__selected-value {
    position: relative;
    top: -1px; /* Designer want to move by 1px up */
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir='ltr'] .select__color-swatch {
    margin-right: 10px;
}

[dir='rtl'] .select__color-swatch {
    margin-left: 10px;
}

.select__color-swatch {
    position: relative;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: var(--color-swatch-border-radius);
}

.select__color-swatch--white {
    box-shadow: 0 0 0 1px rgba(var(--text-color), 0.3) inset;
}

.select--small {
    height: auto; /* As the input is much smaller we size it with padding instead */
    padding: 6px 12px;
}

[dir='ltr'] .select--small svg {
    margin-left: 10px;
}

[dir='rtl'] .select--small svg {
    margin-right: 10px;
}

.select[aria-expanded='true'] svg {
    transform: rotateZ(180deg);
}

@media screen and (min-width: 741px) {
    .select__selected-value {
        pointer-events: none;
    }
}

/*
 * RANGE ELEMENT
 * Styling range are pretty complex as each browsers has their own way to do it
 */

/* First we revert the styling of range elements */

.range {
    width: 100%; /* Specific width is required for Firefox. */
    appearance: none; /* Hides the slider so that custom slider can be made */
    background: transparent; /* Otherwise white in Chrome */
}

.range::-webkit-slider-thumb {
    appearance: none;
}

/* Chrome and Safari */

.range::-webkit-slider-thumb {
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    margin-top: -5px;
    background: rgb(var(--background));
    border: none;
    border-radius: 100%;
    box-shadow: 0 0 0 5px rgb(var(--text-color)) inset;
}

.range::-webkit-slider-runnable-track {
    cursor: pointer;
    width: 100%;
    height: 6px;
    background: rgb(var(--border-color));
    border: none;
    border-radius: 4px;
}

/* Firefox */

.range::-moz-range-thumb {
    cursor: pointer;
    width: 14px;
    height: 14px;
    background: rgb(var(--background));
    border: none;
    border-radius: 100%;
    box-shadow: 0 0 0 5px rgb(var(--text-color)) inset;
}

.range::-moz-range-progress,
.range::-moz-range-track {
    cursor: pointer;
    width: 100%;
    height: 6px;
    border: none;
    border-radius: 4px;
}

.range::-moz-range-progress {
    background-color: rgba(var(--text-color), 0.7);
}

.range::-moz-range-track {
    background-color: rgb(var(--border-color));
}

/* On non-hover devices, we make the thumb bigger */

@media not screen and (pointer: fine) {
    .range::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
        margin-top: -7px;
        box-shadow: 0 0 0 7px rgb(var(--text-color)) inset;
    }

    .range::-moz-range-thumb {
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 7px rgb(var(--text-color)) inset;
    }
}

/* Range group (when using double range, we need to rely on some clever trick) */

.range-group {
    height: 6px;
    background: linear-gradient(
        to var(--transform-origin-end),
        rgb(var(--border-color)) var(--range-min),
        rgba(var(--text-color), 0.7) var(--range-min),
        rgba(var(--text-color), 0.7) var(--range-max),
        rgb(var(--border-color)) var(--range-max)
    );
    border-radius: 4px;
}

.range-group .range {
    pointer-events: none;
    height: 6px;
    vertical-align: top;
}

.range-group .range::-webkit-slider-runnable-track {
    background: none;
}

.range-group .range::-webkit-slider-thumb {
    pointer-events: auto;
}

.range-group .range::-moz-range-progress,
.range-group .range::-moz-range-track {
    background: none;
}

.range-group .range::-moz-range-thumb {
    pointer-events: auto;
}

[dir='ltr'] .range-group .range:last-child {
    left: 0;
}

[dir='rtl'] .range-group .range:last-child {
    right: 0;
}

.range-group .range:last-child {
    position: absolute;
    top: 0;
}

/*
 * SWITCH CHECKBOX
 * Styling range are pretty complex as each browsers has their own way to do it
 */

.switch-checkbox {
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 20px;
    appearance: none;
    background: rgb(var(--border-color));
    border-radius: 20px;
    transition: background 0.1s ease-in;
}

[dir='ltr'] .switch-checkbox::before {
    left: 3px;
}

[dir='rtl'] .switch-checkbox::before {
    right: 3px;
}

.switch-checkbox::before {
    content: '';
    position: absolute;
    top: 3px;
    display: block;
    width: 14px;
    height: 14px;
    background: rgb(var(--background));
    border-radius: 100%;
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    transition: transform 0.1s ease-in;
}

.switch-checkbox:checked {
    background: rgb(var(--text-color));
}

.switch-checkbox:checked::before {
    transform: translateX(calc(100% + 6px));
}

/**
 * -------------------------------------------------------------
 * BUTTON
 * -------------------------------------------------------------
 */

.button,
.shopify-challenge__button,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    line-height: var(--button-height);
    color: rgb(var(--button-text-color));
    text-align: center;
    text-decoration: none;
    appearance: none;
    background: rgb(var(--button-background));
    border-radius: var(--button-border-radius);
}

.button:not(.button--text),
.shopify-challenge__button,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button {
    font-family: var(--text-font-family);
    font-size: calc(var(--base-font-size) - 3px);
    font-weight: var(--text-font-bold-weight);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 999px;
}

.button--small,
#shopify-product-reviews .spr-summary-actions-newreview {
    padding: 0 20px;
    line-height: var(--button-small-height);
}

.button--primary,
.shopify-challenge__button,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button {
    --button-background: var(--primary-button-background);
    --button-text-color: var(--primary-button-text-color);
}

.button--secondary {
    --button-background: var(--secondary-button-background);
    --button-text-color: var(--secondary-button-text-color);
}

.button--ternary {
    --button-background: var(--secondary-background);
    --button-text-color: var(--root-text-color);
}

.button--ternary:disabled {
    background-position:
        100% 25%,
        100% 100%;
}

.button--disabled {
    background-position:
        100% 25%,
        100% 100%;
}

.button--outline {
    --button-background: var(--background);
    --button-text-color: var(--root-text-color);

    border: 2px solid rgb(var(--border-color)) !important;
    transition: none !important;
}

.button--full {
    width: 100%;
}

/**
 * IMPLEMENTATION NOTE: As of today, when the dynamic checkout button is added on non-product page (for instance
 * drawer or collection page), Shopify forces their style. We therefore need to use !important rules to make sure
 * the theme styling is applied. I did not want to apply that globally to the .button, so I am applying this
 * scoped for this button only, even if this incurs duplicate code
 */

.shopify-payment-button {
    min-height: var(--button-height); /* This prevents a page jump */
}

.shopify-payment-button__button--branded {
    overflow: hidden !important;
    min-height: var(--button-height) !important;
    border-radius: var(--button-border-radius) !important;
}

.shopify-payment-button__button--unbranded {
    --button-background: var(--primary-button-background);
    --button-text-color: var(--primary-button-text-color);

    position: relative !important;
    display: inline-block !important;
    padding: 0 30px !important;
    font-family: var(--text-font-family) !important;
    font-size: calc(var(--base-font-size) - 3px) !important;
    font-weight: var(--text-font-bold-weight) !important;
    line-height: var(--button-height) !important;
    color: rgb(var(--button-text-color)) !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    appearance: none !important;
    background-color: rgb(var(--button-background)) !important;
    border-radius: var(--button-border-radius) !important;
}

.shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
}

@media screen and (min-width: 741px) {
    .button:not(.button--text),
    .shopify-challenge__button,
    #shopify-product-reviews .spr-summary-actions-newreview,
    #shopify-product-reviews .spr-button {
        padding-right: 35px;
        padding-left: 35px;
        font-size: calc(var(--base-font-size) - 2px);
        letter-spacing: 2px;
    }

    .button--small:not(.button--text),
    #shopify-product-reviews .spr-summary-actions-newreview {
        padding-right: 28px;
        padding-left: 28px;
        font-size: calc(var(--base-font-size) - 3px);
    }

    /* Please refer to a comment a few lines before for the reason of those !important */
    .shopify-payment-button__button--unbranded {
        padding-right: 35px !important;
        padding-left: 35px !important;
        font-size: calc(var(--base-font-size) - 2px) !important;
        letter-spacing: 2px !important;
    }
}

/**
 * IMPLEMENTATION NOTE: the design team wanted a specific transition on hover that implies a slightly tilted background
 * with a reduced opacity. Doing that with a pseudo element (with an efficient scale transform) caused to be problematic,
 * because the text would appear below the actual pseudo-element, causing the color to be off. One solution would have
 * been to add an extra <span> wrapping the text itself so that we could set a z-index for the text to be on top. Unfortunately,
 * there are lot of buttons (Shopify Reviews, dynamic checkout button...) for which controlling the markup is not possible.
 * As a consequence, I had to go with a more creating approach that uses multiple linear-gradient and animate the background-position.
 * Animating background-position is known to not be very efficient, but as this is only for desktop and on elements (buttons) whose
 * size is extremely small, this did not cause any visible slugger animation.
 */
@media screen and (pointer: fine) {
    /* Only on super modern browsers, allow to automatically switch to a white color based on contrast */
    @supports (color: color-contrast(wheat vs black, white)) and (color: rgb(from wheat r g b / 0.07)) {
        .button,
        .shopify-challenge__button,
        #shopify-product-reviews .spr-summary-actions-newreview,
        #shopify-product-reviews .spr-button,
        .shopify-payment-button__button {
            --button-overlay-color: rgb(from color-contrast(rgb(var(--button-background)) vs white, black) r g b / 7%);

            background-image: linear-gradient(
                    178deg,
                    rgb(var(--button-background)),
                    rgb(var(--button-background)) 10%,
                    var(--button-overlay-color) 10%,
                    var(--button-overlay-color) 100%
                ),
                linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
        }
    }

    .button,
    .shopify-challenge__button,
    #shopify-product-reviews .spr-summary-actions-newreview,
    #shopify-product-reviews .spr-button,
    .shopify-payment-button__button {
        transform: translateZ(0); /* Make sure to promote the button on its own layer */
        background-image: linear-gradient(
                178deg,
                rgb(var(--button-background)),
                rgb(var(--button-background)) 10%,
                rgb(0 0 0 / 7%) 10%,
                rgb(0 0 0 / 7%) 100%
            ),
            linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
        background-repeat: no-repeat;
        background-position:
            100% -100%,
            100% 100%;
        background-size:
            100% 200%,
            100% 100%;
        transition: background-position 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .button:hover,
    .shopify-challenge__button:hover,
    #shopify-product-reviews .spr-summary-actions-newreview:hover,
    #shopify-product-reviews .spr-button:hover,
    .shopify-payment-button__button:hover {
        background-position:
            100% 25%,
            100% 100%;
    }
}

/**
 * -------------------------------------------------------------
 * LOADER BUTTON
 * -------------------------------------------------------------
 */

.loader-button__text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-button__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
}

/**
 * -------------------------------------------------------------
 * BUTTON GROUP
 * -------------------------------------------------------------
 */

.button-group {
    font-size: 0; /* Collapse margin */
}

@media screen and (max-width: 740px) {
    .button-group .button {
        margin: 12px;
        padding: 0 18px; /* We halve the padding to increase probability to button to fit on same row on mobile */
    }

    .button-group__wrapper {
        margin: -12px;
    }
}

@media screen and (min-width: 741px) {
    /* On tablet as we have more space we want to ensure the button has the same width */
    .button-group__wrapper {
        display: inline-grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/**
 * -------------------------------------------------------------
 * COLLAPSIBLE
 * -------------------------------------------------------------
 */

.collapsible {
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
}

.no-js .collapsible,
.collapsible[open] {
    overflow: visible;
    height: auto;
    visibility: visible;
}

.collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-weight: 400;
    text-transform: uppercase;
}

[dir='ltr'] .collapsible-toggle__selected-value {
    margin-right: 12px;
    margin-left: auto;
}

[dir='rtl'] .collapsible-toggle__selected-value {
    margin-right: auto;
    margin-left: 12px;
}

.collapsible-toggle__selected-value {
    overflow: hidden;
    max-width: 45%;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.collapsible-toggle svg {
    transition: transform 0.2s ease-in-out;
}

.collapsible-toggle[aria-expanded='true'] svg {
    transform: rotateZ(180deg);
}

@media screen and (min-width: 741px) {
    .collapsible-toggle {
        padding: 21px 0;
    }
}

/**
 * -------------------------------------------------------------
 * CONTENT BOX
 *
 * In Focal, a lot of content (especially on home page sections) are aligned
 * according a 10 columns grid (20 on tablet and higher). This special content
 * box has different alignments and three variation styles. As it is used
 * throughout the theme, we create an abstraction here.
 * -------------------------------------------------------------
 */

.content-box {
    position: relative;
    z-index: 1;
}

/* Text alignment variations */

.content-box--text-center {
    text-align: center;
}

[dir='ltr'] .content-box--text-right {
    text-align: right;
}

[dir='rtl'] .content-box--text-right {
    text-align: left;
}

@media screen and (max-width: 740px) {
    /*
     Small and medium variation on mobile have some extra spacing and are not directly based on the grid. We also
     apply extra margin if the content box is contained within a flushed mobile container
   */
    .content-box--small,
    .content-box--medium,
    .container--flush .content-box--large {
        margin-right: 24px;
        margin-left: 24px;
    }

    /* Positional variation */

    [dir='ltr'] .content-box--left {
        margin-right: auto;
    }

    [dir='rtl'] .content-box--left {
        margin-left: auto;
    }

    [dir='ltr'] .content-box--right {
        margin-left: auto;
    }

    [dir='rtl'] .content-box--right {
        margin-right: auto;
    }
}

@media screen and (min-width: 741px) {
    /* On tablet, all sizes are shifted by one column left and right, and span a different number of columns */
    .content-box {
        width: calc(var(--grid-column-width) * 16 + var(--grid-gap) * 15);
        margin-right: auto;
        margin-left: auto;
    }

    .content-box--medium {
        width: calc(var(--grid-column-width) * 14 + var(--grid-gap) * 13);
    }

    .content-box--small {
        width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 9);
    }

    .content-box--fill {
        width: 100% !important;
    }

    /* Positional variations */

    [dir='ltr'] .content-box--left {
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .content-box--left {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='ltr'] .content-box--right {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .content-box--right {
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }
}

@media screen and (min-width: 1000px) {
    .content-box {
        width: calc(var(--grid-column-width) * 14 + var(--grid-gap) * 13);
    }

    .content-box--medium {
        width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 9);
    }

    .content-box--small {
        width: calc(var(--grid-column-width) * 8 + var(--grid-gap) * 7);
    }
}

@media screen and (min-width: 1400px) {
    .content-box--small {
        width: calc(var(--grid-column-width) * 7 + var(--grid-gap) * 6);
    }
}

/**
 * -------------------------------------------------------------
 * DRAWER
 * -------------------------------------------------------------
 */

[dir='ltr'] .drawer {
    right: 0;
}

[dir='rtl'] .drawer {
    left: 0;
}

[dir='ltr'] .drawer {
    text-align: left;
}

[dir='rtl'] .drawer {
    text-align: right;
}

.drawer {
    /* Make sure the drawer component does not inherit values from the section it is included to */
    --heading-color: var(--root-heading-color);
    --text-color: var(--root-text-color);
    --background: var(--root-background);
    --primary-button-background: var(--root-primary-button-background);
    --primary-button-text-color: var(--root-primary-button-text-color);
    --section-background: initial; /* Allows to remove the inheritance */

    position: fixed;
    z-index: 10;
    top: 0;
    transform: translateX(calc(var(--transform-logical-flip) * 100%));
    display: flex;
    flex-direction: column;
    width: 89vw;
    max-width: 400px;
    height: 100%;
    max-height: 100vh;
    font-size: 1rem;
    color: rgb(var(--text-color));
    visibility: hidden;
    background: rgb(var(--background));
    transition:
        transform 0.6s cubic-bezier(0.75, 0, 0.175, 1),
        visibility 0.6s cubic-bezier(0.75, 0, 0.175, 1);
}

[dir='ltr'] .drawer--from-left {
    right: auto;
}

[dir='rtl'] .drawer--from-left {
    left: auto;
}

[dir='ltr'] .drawer--from-left {
    left: 0;
}

[dir='rtl'] .drawer--from-left {
    right: 0;
}

.drawer--from-left {
    transform: translateX(calc(var(--transform-logical-flip) * -100%));
}

.drawer[open] {
    transform: translateX(0);
    visibility: visible;
}

[dir='ltr'] .drawer--from-left .drawer__overlay {
    left: 100%;
}

[dir='rtl'] .drawer--from-left .drawer__overlay {
    right: 100%;
}

[dir='ltr'] .drawer--from-left .drawer__overlay {
    right: auto;
}

[dir='rtl'] .drawer--from-left .drawer__overlay {
    left: auto;
}

.drawer--large {
    max-width: 500px;
}

[dir='ltr'] .drawer__overlay {
    right: 100%;
}

[dir='rtl'] .drawer__overlay {
    left: 100%;
}

.drawer__overlay {
    content: '';
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: #000;
    transition:
        visibility 0.6s ease-in-out,
        opacity 0.6s ease-in-out;
}

.drawer[open] > .drawer__overlay {
    visibility: visible;
    opacity: 0.3;
}

.drawer__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    height: var(--header-height-without-bottom-nav);
    max-height: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgb(var(--root-background)); /* Setting an explicit background allow element to go beyond */
    border-bottom: 1px solid rgb(var(--root-border-color));
}

/* This variation remove the border and add a shadow on scroll */
.drawer__header--shadowed {
    height: auto;
    padding-bottom: 6px;
    border-bottom: none;
}

[dir='ltr'] .drawer__header--shadowed::after {
    left: 0;
}

[dir='rtl'] .drawer__header--shadowed::after {
    right: 0;
}

.drawer__header--shadowed::after {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 100%;
    height: 24px;
    background: linear-gradient(var(--root-background), rgba(var(--root-background), 0));
}

.drawer__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;

    /* We use flex positioning in case the title contains an icon or extra content */
    color: #fff;
}

.drawer__title--stack {
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

[dir='ltr'] .drawer__title .icon {
    margin-right: 12px;
}

[dir='rtl'] .drawer__title .icon {
    margin-left: 12px;
}

[dir='ltr'] .drawer__header-action {
    margin-left: 16px;
}

[dir='rtl'] .drawer__header-action {
    margin-right: 16px;
}

[dir='ltr'] .drawer__close-button {
    right: var(--container-gutter);
}

[dir='rtl'] .drawer__close-button {
    left: var(--container-gutter);
}

.drawer__close-button {
    position: absolute;
    top: var(--container-gutter);
}

.drawer__header .drawer__close-button {
    top: calc(50% - 7px); /* When inside the header its alignment is relative to the header part */
}

.drawer__close-button--block {
    position: relative;
    inset: auto !important;
}

.drawer__header,
.drawer__content,
.drawer__footer {
    padding-right: var(--container-gutter);
    padding-left: var(--container-gutter);
}

.drawer__content {
    overflow-x: hidden;
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 24px; /* We add a bit of spacing as the drawer footer may add a shadow */
}

.drawer__content--padded-start {
    padding-top: 24px;
}

.drawer__content--center {
    flex-grow: 0;
    /* margin-top: auto;
    margin-bottom: auto; */
    padding-bottom: 0;
    text-align: center;
}

.drawer__footer {
    z-index: 1;
    transform: translateZ(
        0
    ); /* For some reason position: relative cause an issue on Safari so I use this to promote the element */

    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 20px; /* The footer in drawer has a slightly smaller padding in block direction */
}

@supports (padding: max(0px)) {
    .drawer__footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px) + 20px);
    }
}

.drawer__footer--bordered {
    box-shadow: 0 1px rgb(var(--root-border-color)) inset; /* We use box-shadow due to the shadow */
}

.drawer__footer--no-top-padding {
    padding-top: 0 !important;
}

[dir='ltr'] .drawer__footer::before {
    left: 0;
}

[dir='rtl'] .drawer__footer::before {
    right: 0;
}

.drawer__footer::before {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 100%;
    width: 100%;
    height: 24px;
    background: linear-gradient(rgba(var(--root-background), 0), rgb(var(--root-background)));
}

@media screen and (min-width: 741px) {
    .drawer__header {
        max-height: 90px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    [dir='ltr'] .drawer__header-action {
        margin-left: 24px;
    }

    [dir='rtl'] .drawer__header-action {
        margin-right: 24px;
    }

    .drawer__content--padded-start {
        padding-top: 30px;
    }

    .drawer__footer:not(.drawer__footer--tight) {
        padding-top: var(--container-gutter);
        padding-bottom: var(--container-gutter);
    }
}

/**
 * -------------------------------------------------------------
 * POPOVER
 * -------------------------------------------------------------
 */

.popover-button {
    width: max-content;
}

[dir='ltr'] .popover-button svg {
    margin-left: 10px;
}

[dir='rtl'] .popover-button svg {
    margin-right: 10px;
}

.popover-button svg {
    position: relative;
    top: -1px; /* For pixel perfect */
    transition: transform 0.2s ease-in-out;
}

.popover-button[aria-expanded='true'] svg {
    transform: rotateZ(180deg);
}

[dir='ltr'] .popover {
    text-align: left;
}

[dir='rtl'] .popover {
    text-align: right;
}

.popover {
    /* Make sure the popover component does not inherit values from the section it is included to */
    --heading-color: var(--root-heading-color);
    --text-color: var(--root-text-color);
    --background: var(--root-background);
    --primary-button-background: var(--primary-button-background);
    --primary-button-text-color: var(--root-primary-button-text-color);
    --section-background: var(--root-background);

    position: fixed;
    z-index: 10;
    display: block;
    font-size: 1rem;
    color: rgb(var(--text-color));
    visibility: hidden;
    backface-visibility: hidden;
    background: rgb(var(--background));
    transition: visibility 0.25s ease-in-out;
}

.popover[open] {
    visibility: visible;
}

.popover__overlay {
    content: '';
    position: absolute;
    bottom: calc(100% - 10px); /* There is a border radius on the header on mobile so we slightly move down the overlay */
    left: 0; /* We must make sure to not use logical property here */
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: #000;
    transition:
        opacity 0.6s ease-in-out,
        visibility 0.6s ease-in-out;
}

.popover[open] > .popover__overlay {
    visibility: visible;
    opacity: 0.3;
}

.popover__header {
    position: relative;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 10px 24px;
    border-bottom: 1px solid rgb(var(--root-border-color));
    border-radius: 10px 10px 0 0;
}

.popover__header--no-border {
    border-bottom: none;
}

.popover__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

[dir='ltr'] .popover__title svg {
    margin-right: 12px;
}

[dir='rtl'] .popover__title svg {
    margin-left: 12px;
}

[dir='ltr'] .popover__close-button {
    right: 24px;
}

[dir='rtl'] .popover__close-button {
    left: 24px;
}

.popover__close-button {
    position: absolute;
    z-index: 1;
    top: 24px;
}

.popover__content {
    overflow: auto;
    padding: 24px;
}

.popover__content--no-padding {
    padding: 0 !important;
}

@supports (padding: max(0px)) {
    .popover__content {
        padding-bottom: max(24px, env(safe-area-inset-bottom, 0px) + 24px);
    }
}

@media screen and (max-width: 999px) {
    .popover {
        touch-action: manipulation;
        bottom: 0;
        left: 0; /* We must make sure to not use logical property here */
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
        width: 100vw;
        max-height: 75vh;
        border-radius: 10px 10px 0 0;
        transition:
            transform 0.6s cubic-bezier(0.75, 0, 0.175, 1),
            visibility 0.6s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .popover[open] {
        transform: translateY(0);
    }

    .popover__header,
    .popover__content {
        background: inherit;
    }

    [dir='ltr'] .drawer:not(.drawer--from-left) .popover {
        left: -11vw;
    }

    [dir='rtl'] .drawer:not(.drawer--from-left) .popover {
        right: -11vw;
    }

    .drawer:not(.drawer--from-left) .popover {
        /* Popover takes 89vw so we shift by 11vw */
    }
}

@media screen and (min-width: 1000px) {
    .popover-container {
        position: relative;
    }

    .popover {
        position: absolute;
        z-index: 2;
        top: calc(100% + 18px);
        opacity: 0;
        border: 1px solid rgb(var(--root-border-color));
        border-radius: min(var(--block-border-radius), 4px);
        transition:
            opacity 0.25s ease-in-out,
            visibility 0.25s ease-in-out;
    }

    .popover[open] {
        opacity: 1;
    }

    [dir='ltr'] .popover::after,
    [dir='ltr'] .popover::before {
        right: 24px;
    }

    [dir='rtl'] .popover::after,
    [dir='rtl'] .popover::before {
        left: 24px;
    }

    .popover::after,
    .popover::before {
        content: '';
        position: absolute;
        bottom: 100%;
        width: 0;
        height: 0;
        border-color: transparent transparent rgb(var(--root-background)) transparent;
        border-style: solid;
        border-width: 8px;
    }

    [dir='ltr'] .popover::before {
        right: 23px;
    }

    [dir='rtl'] .popover::before {
        left: 23px;
    }

    .popover::before {
        border-color: transparent transparent rgb(var(--root-border-color)) transparent;
        border-width: 9px;
    }

    .popover__overlay,
    .popover__header {
        display: none; /* No overlay nor header on tablet and up for popover */
    }

    .popover__content {
        padding-right: 32px;
        padding-left: 32px;
    }

    .popover__content--restrict {
        max-height: 400px;
    }

    /* Small variation */

    .popover--small {
        font-size: calc(var(--base-font-size) - 3px);
        line-height: 1.5;
    }

    /* Positional variation */

    .popover--top {
        top: auto;
        bottom: calc(100% + 18px);
    }

    .popover--top::before,
    .popover--top::after {
        top: 100%;
        bottom: auto;
        border-color: rgb(var(--root-background)) transparent transparent transparent;
    }

    .popover--top::before {
        border-color: rgb(var(--root-border-color)) transparent transparent transparent;
    }

    [dir='ltr'] .popover--left {
        left: 0;
    }

    [dir='rtl'] .popover--left {
        right: 0;
    }

    [dir='ltr'] .popover--left {
        right: auto !important;
    }

    [dir='rtl'] .popover--left {
        left: auto !important;
    }

    .popover--left::before,
    .popover--left::after {
        display: none;
    }

    /* Position related to various UX element */

    [dir='ltr'] .popover-button + .popover {
        right: -28px;
    }

    [dir='rtl'] .popover-button + .popover {
        left: -28px;
    }

    [dir='ltr'] .select + .popover {
        right: -15px;
    }

    [dir='rtl'] .select + .popover {
        left: -15px;
    }
}

/**
 * -------------------------------------------------------------
 * POPOVER CHOICE LIST
 *
 * This child component is used to create a easily usable list of
 * choices
 * -------------------------------------------------------------
 */

.popover__choice-list {
    white-space: nowrap;
}

.popover__choice-item {
    display: block;
    width: 100%;
    text-align: center;
}

.popover__choice-item:not(:first-child) {
    margin-top: 7px;
}

.popover__choice-label {
    cursor: pointer;
    position: relative;
}

[dir='ltr'] input:checked + .popover__choice-label::after,
[dir='ltr'] .popover__choice-label[aria-current]::after {
    right: -26px;
}

[dir='rtl'] input:checked + .popover__choice-label::after,
[dir='rtl'] .popover__choice-label[aria-current]::after {
    left: -26px;
}

input:checked + .popover__choice-label::after,
.popover__choice-label[aria-current]::after {
    content: '';
    position: absolute;
    top: calc(50% - (9px / 2));
    width: 12px;
    height: 9px;
    background-color: currentcolor;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMy40TDQuNzQ5MzEgN0wxMSAxIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+');
    mask-repeat: no-repeat;
    mask-size: 12px 9px;
}

@media screen and (max-width: 999px) {
    .popover__choice-item:not(:first-child) {
        margin-top: 16px;
    }
}

@media screen and (min-width: 1000px) {
    [dir='ltr'] input:checked + .popover__choice-label::after,
    [dir='ltr'] .popover__choice-label[aria-current]::after {
        right: -22px;
    }

    [dir='rtl'] input:checked + .popover__choice-label::after,
    [dir='rtl'] .popover__choice-label[aria-current]::after {
        left: -22px;
    }

    [dir='ltr'] .popover__choice-label {
        margin-right: 22px;
    }

    [dir='rtl'] .popover__choice-label {
        margin-left: 22px;
    }

    .popover__choice-item {
        text-align: left;
    }

    .popover--small .popover__content {
        padding: 14px 20px;
    }
}

/**
 * -------------------------------------------------------------
 * MODAL
 *
 * Modal allows to provide a full-screen off-screen elements. On mobile, they look
 * like popover, while on tablet and desktop they use an immersive full-screen elements. Because
 * modal are much more "free" than popover and drawer in their structure, the styling
 * is left to the actual inner content
 * -------------------------------------------------------------
 */

[dir='ltr'] .modal {
    left: 0;
}

[dir='rtl'] .modal {
    right: 0;
}

.modal {
    /* Make sure the modal component does not inherit values from the section it is included to */
    --heading-color: var(--root-heading-color);
    --text-color: var(--root-text-color);
    --background: var(--root-background);

    position: fixed;
    z-index: 10;
    font-size: 1rem;
    visibility: hidden;
    transition: visibility 0.25s ease-in-out;
}

.modal[open] {
    visibility: visible;
}

[dir='ltr'] .modal__overlay {
    left: 0;
}

[dir='rtl'] .modal__overlay {
    right: 0;
}

.modal__overlay {
    content: '';
    position: absolute;
    bottom: calc(100% - 10px); /* There is a border radius on the header on mobile so we slightly move down the overlay */
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: #000;
    transition:
        opacity 0.5s ease-in-out,
        visibility 0.5s ease-in-out;
}

.modal[open] > .modal__overlay {
    visibility: visible;
    opacity: 0.3;
}

[dir='ltr'] .modal__close-button {
    right: 24px;
}

[dir='rtl'] .modal__close-button {
    left: 24px;
}

.modal__close-button {
    position: absolute;
    z-index: 1;
    top: 24px;
}

.modal__content {
    position: relative;
    display: flow-root;
    color: rgb(var(--text-color));
    background: rgb(var(--background));
    border-radius: var(--block-border-radius);
}

@media screen and (max-width: 740px) {
    .modal {
        touch-action: manipulation;
        bottom: 0;
        transform: translateY(100%);
        width: 100vw;
        transition:
            transform 0.7s cubic-bezier(0.75, 0, 0.175, 1),
            visibility 0.7s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .modal[open] {
        transform: translateY(0);
    }

    .modal__content {
        overflow: hidden;
        max-height: 81vh;
        border-radius: 10px 10px 0 0;
    }
}

@media screen and (min-width: 741px) {
    .modal {
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .modal__overlay {
        position: fixed;
        top: 0;
        bottom: auto;
    }

    .modal__content {
        will-change: transform;
        transform: scale(0.8);
        overflow: auto;
        max-height: calc(100vh - 160px);
        margin: 80px; /* Allows to guarantee spacing around the edges */
        opacity: 0;
        transition:
            transform 0.3s cubic-bezier(0.75, 0, 0.175, 1),
            opacity 0.3s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .modal[open] .modal__content {
        transform: scale(1);
        opacity: 1;
    }
}

/**
 * --------------------------------------------------------------------
 * COLOR SWATCH
 * --------------------------------------------------------------------
 */

.color-swatch-list {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(auto-fit, 40px);
    gap: 8px;
    justify-content: flex-start;
}

.color-swatch__item {
    cursor: pointer;
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: cover;
    border: 3px solid rgb(var(--section-background, var(--background)));
    border-radius: var(--color-swatch-border-radius);
    -webkit-tap-highlight-color: transparent;
}

.color-swatch__item::before,
.color-swatch__item::after {
    pointer-events: none;
    content: '';
    position: absolute;
    border: 2px solid rgb(var(--section-background, var(--background)));
    border-radius: inherit;
}

.color-swatch__item::before {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.color-swatch__item::after {
    top: -3px;
    left: -3px;
    transform: scale(0.8);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    opacity: 0;
    border-color: rgb(var(--text-color));
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.color-swatch--white .color-swatch__item::before {
    box-shadow: 0 0 0 1px rgba(var(--text-color), 0.3) inset;
}

.color-swatch__radio:checked + .color-swatch__item::after {
    transform: scale(1);
    opacity: 1;
}

.color-swatch-list--mini {
    grid-template-columns: repeat(auto-fit, 14px);
}

.color-swatch-list--mini .color-swatch__item {
    width: 14px;
    height: 14px;
    border-width: 2px;
}

.color-swatch-list--mini .color-swatch__item::before,
.color-swatch-list--mini .color-swatch__item::after {
    border-width: 1px;
}

/* Disabled state */

.color-swatch.is-disabled .color-swatch__item::before {
    background: linear-gradient(
            to bottom right,
            transparent calc(50% - 1px),
            rgb(var(--background)) calc(50% - 1px),
            rgb(var(--background)) calc(50% + 1px),
            transparent calc(50% + 1px)
        )
        no-repeat;
}

@media not screen and (pointer: fine) {
    .color-swatch[data-tooltip]::before,
    .color-swatch[data-tooltip]::after {
        display: none;
    }
}

/**
 * --------------------------------------------------------------------
 * BLOCK SWATCH
 * --------------------------------------------------------------------
 */

.block-swatch-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -4px;
}

.block-swatch__item {
    cursor: pointer;
    position: relative;
    display: block;
    min-width: 56px;
    margin: 4px;
    padding: 11px 18px 13px;
    color: rgb(var(--text-color));
    text-align: center;
    background: rgb(var(--background));
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--button-border-radius);
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

[dir='ltr'] .block-swatch__item::after {
    left: 0;
}

[dir='rtl'] .block-swatch__item::after {
    right: 0;
}

.block-swatch__item::after {
    content: '';
    position: absolute;
    top: 0;
    transform: scale(0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: var(--button-border-radius);
    box-shadow:
        0 0 0 1px rgb(var(--text-color)) inset,
        0 0 0 1px rgb(var(--text-color));
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.block-swatch-list--small .block-swatch__item {
    min-width: 44px;
    margin: 4px;
    padding: 4px 12px;
}

.block-swatch__radio:checked + .block-swatch__item {
    background: rgb(var(--secondary-background));
}

.block-swatch__radio:checked + .block-swatch__item::after {
    transform: scale(1);
    opacity: 1;
}

/* Disabled state */

.block-swatch.is-disabled .block-swatch__item {
    color: rgba(var(--text-color), 0.5);
    background: linear-gradient(
            to bottom right,
            transparent calc(50% - 1px),
            rgb(var(--border-color)) 50%,
            transparent calc(50% + 1px)
        )
        no-repeat;
}

/**
 * --------------------------------------------------------------------
 * VARIANT IMAGE SWATCH
 * --------------------------------------------------------------------
 */

.variant-swatch-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -6px;
}

.variant-swatch__item {
    cursor: pointer;
    position: relative;
    display: block;
    margin: 6px;
    text-align: center;
    border: 1px solid rgb(var(--border-color));
    -webkit-tap-highlight-color: transparent;
}

.variant-swatch__image {
    width: 50px;
}

.variant-swatch__item,
.variant-swatch__image {
    border-radius: min(var(--block-border-radius), 4px);
}

[dir='ltr'] .variant-swatch__item::after {
    left: 0;
}

[dir='rtl'] .variant-swatch__item::after {
    right: 0;
}

.variant-swatch__item::after {
    content: '';
    position: absolute;
    top: 0;
    transform: scale(0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: min(var(--block-border-radius), 3px);
    box-shadow:
        0 0 0 1px rgb(var(--text-color)) inset,
        0 0 0 1px rgb(var(--text-color));
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.variant-swatch__radio:checked + .variant-swatch__item::after {
    transform: scale(1);
    opacity: 1;
}

/* Disabled state */

.variant-swatch.is-disabled .variant-swatch__image {
    opacity: 0.4;
}

/* We have to use a pseudo element as background image does not work on image */
[dir='ltr'] .variant-swatch.is-disabled .variant-swatch__item::before {
    left: 0;
}

[dir='rtl'] .variant-swatch.is-disabled .variant-swatch__item::before {
    right: 0;
}

.variant-swatch.is-disabled .variant-swatch__item::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom right,
            transparent calc(50% - 1px),
            rgb(var(--border-color)) 50%,
            transparent calc(50% + 1px)
        )
        no-repeat;
}

@media screen and (min-width: 741px) {
    .variant-swatch-list {
        margin: -6px;
    }

    .variant-swatch__item {
        margin: 6px;
    }

    .variant-swatch__image {
        width: 72px;
    }
}

/**
 * --------------------------------------------------------------------
 * ACCESSIBILITY
 * --------------------------------------------------------------------
 */

.color-swatch__radio.focus-visible + label,
.block-swatch__radio.focus-visible + label,
.variant-swatch__radio.focus-visible + label {
    outline: auto 5px -webkit-focus-ring-color;
}

.color-swatch__radio:focus-visible + label,
.block-swatch__radio:focus-visible + label,
.variant-swatch__radio:focus-visible + label {
    outline: auto 5px -webkit-focus-ring-color;
}

/**
 * --------------------------------------------------------------------
 * 3D MODEL
 * --------------------------------------------------------------------
 */

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
    background: rgb(var(--background));
    border-color: rgba(var(--text-color), 0.25);
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
    color: rgb(var(--text-color));
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
    color: rgba(var(--text-color), 0.55);
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active,
.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus {
    color: rgba(var(--text-color), 0.55);
    background: rgba(var(--text-color), 0.25);
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child)::after {
    border-color: rgba(var(--text-color), 0.25);
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
    background: rgb(var(--background));
    border-color: rgba(var(--text-color), 0.25);
}

.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
    color: rgba(var(--text-color), 0.55);
}

.model-wrapper {
    position: relative;
    display: block;
    padding-bottom: 100%;
}

[dir='ltr'] .model-wrapper .shopify-model-viewer-ui,
[dir='ltr'] .model-wrapper model-viewer {
    left: 0;
}

[dir='rtl'] .model-wrapper .shopify-model-viewer-ui,
[dir='rtl'] .model-wrapper model-viewer {
    right: 0;
}

.model-wrapper .shopify-model-viewer-ui,
.model-wrapper model-viewer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/**
 * --------------------------------------------------------------------
 * VIDEO WRAPPER
 * --------------------------------------------------------------------
 */

.video-wrapper {
    position: relative;
    display: block;
}

.video-wrapper::after {
    pointer-events: none;
    content: '';
    display: block;
    padding-bottom: 56.25%; /* 16:9 */
}

[dir='ltr'] .video-wrapper iframe {
    left: 0;
}

[dir='rtl'] .video-wrapper iframe {
    right: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

/* The cover variation is used when we use an iframe such as YouTube and Vimeo, and want the video to covers the whole div */

.video-wrapper--cover {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-wrapper--cover::after {
    display: none;
}

.video-wrapper--cover iframe {
    position: absolute;
    top: 50% !important;
    right: auto !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: var(--video-width, 100%);
    height: var(--video-height, 100%);
}

@media (min-aspect-ratio: 16/9) {
    .video-wrapper--cover iframe {
        --video-height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-wrapper--cover iframe {
        --video-width: 177.78vh;

        height: calc(var(--video-height) + 200px);
    }
}

/* Inert variation is useful for background video */
.video-wrapper--inert iframe {
    pointer-events: none;
}

/* For native one we use a different thing */
.video-wrapper--native {
    aspect-ratio: var(--aspect-ratio);
}

.video-wrapper--native video {
    width: 100%;
    height: 100%;
}

.video-wrapper--native::after {
    display: none;
}

@supports not (aspect-ratio: 1) {
    .video-wrapper--native video {
        position: absolute;
        inset: 0;
    }

    .video-wrapper--native::after {
        display: block;
        padding-bottom: calc(100% / var(--aspect-ratio));
    }
}

/* A cover image can be optionally added before the iframe / video tag */

.video-wrapper__poster {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-wrapper__poster,
.video-wrapper iframe {
    visibility: visible;
    opacity: 1;
    transition:
        opacity 0.25s ease-in-out,
        visibility 0.25s ease-in-out;
}

.video-wrapper__poster-content {
    position: absolute;
}

.video-wrapper__poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes playButtonRipple {
    0% {
        box-shadow:
            0 0 0 0 rgb(var(--play-button-background)),
            0 0 0 0 rgb(var(--play-button-background));
    }

    100% {
        box-shadow:
            0 0 0 9px rgba(var(--play-button-background), 0),
            0 0 0 18px rgba(var(--play-button-background), 0);
    }
}

.video-wrapper__play-button {
    border-radius: 100%;
}

.video-wrapper__play-button svg circle,
.video-wrapper__play-button svg path {
    transition: 0.2s;
}

.video-wrapper__play-button:hover svg circle {
    fill: #e2a829;
    transition: 0.2s;
}

.video-wrapper__play-button:hover svg path {
    fill: #3e3e3e;
    transition: 0.2s;
}

.video-wrapper__play-button--ripple {
    animation: playButtonRipple 1400ms ease-in-out infinite;
}

.video-wrapper__play-button:not(:only-child) {
    margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
    @keyframes playButtonRipple {
        0% {
            box-shadow:
                0 0 0 0 rgb(var(--play-button-background)),
                0 0 0 0 rgb(var(--play-button-background));
        }

        100% {
            box-shadow:
                0 0 0 17px rgba(var(--play-button-background), 0),
                0 0 0 32px rgba(var(--play-button-background), 0);
        }
    }

    .video-wrapper__play-button:not(:only-child) {
        margin-bottom: 40px;
    }

    .video-wrapper__play-button--large svg {
        width: 104px;
        height: 104px;
    }
}

/**
 * -------------------------------------------------------------
 * FACETING (used on collection and search page)
 * -------------------------------------------------------------
 */

.product-facet {
    display: block;
    margin-top: 24px;
    margin-bottom: 48px;
}

.product-facet__filters-header {
    padding-bottom: 24px;
    font-family: 'Helvetica Neue Thin', var(--text-font-family);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(var(--border-color));
}

.product-facet__filters:not(.drawer) {
    display: block;
    padding-bottom: 24px; /* Allows to add a bit of spacing if too much links */
}

.product-facet__active-list {
    margin-top: -6px;
    margin-bottom: 18px;
}

.product-facet__filter-item + .product-facet__filter-item {
    border-top: 1px solid rgb(var(--border-color));
}

[dir='ltr'] .product-facet__filter-item .collapsible__content {
    padding-left: 8px;
}

[dir='rtl'] .product-facet__filter-item .collapsible__content {
    padding-right: 8px;
}

.product-facet__filter-item:not(:last-child) .collapsible__content {
    margin-bottom: 25px;
}

.product-facet__submit {
    margin-top: 40px;
}

[dir='ltr'] .product-facet__active-count {
    margin-left: 8px;
}

[dir='rtl'] .product-facet__active-count {
    margin-right: 8px;
}

[dir='ltr'] .product-facet__sort-by-title {
    padding-right: 7px;
}

[dir='rtl'] .product-facet__sort-by-title {
    padding-left: 7px;
}

.product-facet__product-list {
    margin-top: calc(var(--container-gutter) / 2);
}

/* Meta bar */

.product-facet__meta-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}

.product-facet__meta-bar-item {
    display: flex;
    align-items: center;
}

[dir='ltr'] .product-facet__meta-bar-item .icon--filters {
    margin-right: 13px;
}

[dir='rtl'] .product-facet__meta-bar-item .icon--filters {
    margin-left: 13px;
}

/* Toolbar */

[dir='ltr'] .mobile-toolbar__item .icon--filters {
    margin-right: 13px;
}

[dir='rtl'] .mobile-toolbar__item .icon--filters {
    margin-left: 13px;
}

@media screen and (max-width: 740px) {
    .product-facet__active-list {
        margin-right: -18px;
        margin-left: -18px;
    }

    .mobile-toolbar__item--filters.has-filters .mobile-toolbar__item-label::after {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        background: currentcolor;
        border-radius: 6px;
    }
}

@media screen and (max-width: 999px) {
    .product-facet__filters:not(.drawer) {
        display: none; /* By default the filters is hidden until dynamically transformed to a modal */
    }
}

@media screen and (min-width: 741px) {
    .product-facet {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .product-facet__active-list {
        margin-top: 18px;
        margin-bottom: 0;
    }

    .drawer .product-facet__active-list {
        margin-top: 26px; /* Margin is bigger when it is inside the drawer to keep visual rhythm consistency */
    }

    .product-facet__meta-bar {
        margin-bottom: 24px;
    }

    [dir='ltr'] .product-facet__meta-bar-item--filter {
        margin-right: 44px;
    }

    [dir='rtl'] .product-facet__meta-bar-item--filter {
        margin-left: 44px;
    }
}

@media screen and (min-width: 1000px) {
    .product-facet {
        display: flex;
        justify-content: flex-start;
    }

    [dir='ltr'] .product-facet__aside {
        margin-right: 40px;
    }

    [dir='rtl'] .product-facet__aside {
        margin-left: 40px;
    }

    .product-facet__aside {
        flex: none;
        width: 230px;
    }

    .product-facet__aside-inner {
        position: sticky;
        top: calc(
            var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
                var(--enable-sticky-announcement-bar) + 24px
        );
        display: block;
    }

    .product-facet__main {
        flex: 1 0 0;
    }

    .product-facet__filters:not(.drawer) .drawer__content {
        overflow: visible;
        padding: 0;
    }

    .product-facet__meta-bar {
        justify-content: flex-start;
    }

    [dir='ltr'] .product-facet__meta-bar-item:last-child {
        margin-left: auto;
    }

    [dir='rtl'] .product-facet__meta-bar-item:last-child {
        margin-right: auto;
    }
}

@media screen and (min-width: 1200px) {
    .product-facet__aside {
        width: 265px;
    }
}

/* General. The back button has a very specific positioning that is used only here so it has special style */

.account__block-list {
    display: grid;
    grid-row-gap: 24px;
    row-gap: 24px;
}

.account__block-item:empty {
    display: none;
}

.account__back-button {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

[dir='ltr'] .account__back-button svg {
    margin-right: 14px;
}

[dir='rtl'] .account__back-button svg {
    margin-left: 14px;
}

@media screen and (min-width: 741px) {
    .account__block-list {
        row-gap: 32px;
    }
}

@media screen and (min-width: 1000px) {
    [dir='ltr'] .account__back-button {
        left: var(--container-outer-width);
    }

    [dir='rtl'] .account__back-button {
        right: var(--container-outer-width);
    }

    .account__back-button {
        position: absolute;
        margin-top: 48px;
    }
}

/* Main account */

.account__order-table-item:hover .link--animated::after {
    transform-origin: var(--transform-origin-start);
    transform: scale(1);
}

.account__order-list-item + .account__order-list-item {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgb(var(--border-color));
}

.account__order-item-info {
    display: grid;
    grid-gap: 24px 64px;
    grid-template-columns: 1fr 1fr;
    gap: 24px 64px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.account__order-item-block .heading {
    margin-bottom: 8px;
}

/* Order details */

.account__order-date {
    display: block;
    margin-top: -6px; /* Small irregularity here as the designer want the date to be closer */
}

@media screen and (max-width: 740px) {
    [dir='ltr'] .account--order .page-header {
        text-align: left;
    }

    [dir='rtl'] .account--order .page-header {
        text-align: right;
    }

    .account--order .page-header {
        /* Small exception */
    }
}

@media screen and (min-width: 741px) {
    .account__order-date {
        margin-top: -18px;
    }

    .account__order-addresses .account__addresses-list {
        margin-top: 24px;
    }
}

/* Addresses */

.account__addresses-list {
    display: grid;
    border: 1px solid rgb(var(--border-color));
}

.account__address {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.account__address--auto {
    min-height: 0 !important;
}


.account__address--empty {
    align-items: center;
    justify-content: center;
}


.account__address-details {
    margin-top: 10px;
}

.account__address--empty {
    background: rgb(var(--secondary-background));
}

.account__address-actions {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px;
    gap: 20px;
    justify-content: flex-start;
    padding-top: 10px;
}

@media screen and (min-width: 741px) {
    .account__addresses-list {
        grid-template-columns: repeat(auto-fit, 50%);
        justify-content: center;
        border: none;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .account__address:nth-child(2n) ~ .account__address {
        border-top: none;
    }

    [dir='ltr'] .account__address:nth-child(2n + 1) {
        border-left: 1px solid rgb(var(--border-color));
    }

    [dir='rtl'] .account__address:nth-child(2n + 1) {
        border-right: 1px solid rgb(var(--border-color));
    }
}

@media screen and (min-width: 1000px) {
    .account__addresses-list:not(.account__addresses-list--wide) {
        grid-template-columns: repeat(auto-fit, 33.33333%);
    }

    .account__address:nth-child(3n) ~ .account__address {
        border-top: none;
    }

    [dir='ltr'] .account__address:nth-child(3n + 1) {
        border-left: 1px solid rgb(var(--border-color));
    }

    [dir='rtl'] .account__address:nth-child(3n + 1) {
        border-right: 1px solid rgb(var(--border-color));
    }
}

.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
    background: rgb(var(--section-background));
}

.announcement-bar--multiple {
    justify-content: space-between;
}

.announcement-bar__list {
    padding-right: 10px;
    padding-left: 10px;
}

.announcement-bar__item {
    display: block;
}

.announcement-bar__item[hidden] {
    height: 0;
    visibility: hidden;
}

.announcement-bar__message {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.announcement-bar__message .announcement-bar__close-button {
    top: 50%;
    transform: translateY(-50%);
}
.announcement-bar__message  p {
    margin-bottom: 0;
}
[dir='ltr'] .announcement-bar__message .link {
    margin-left: 4px;
}

[dir='rtl'] .announcement-bar__message .link {
    margin-right: 4px;
}

[dir='ltr'] .announcement-bar__close-button {
    right: var(--container-gutter);
}

[dir='rtl'] .announcement-bar__close-button {
    left: var(--container-gutter);
}

.announcement-bar__close-button {
    position: absolute;
    top: var(--container-gutter);
}

.announcement-bar__content {
    z-index: 5;
    display: block;
}

.announcement-bar__content[hidden] {
    visibility: hidden;
}

.announcement-bar__content-inner {
    background: rgb(var(--section-background));
}

[dir='ltr'] .announcement-bar__content-overlay {
    left: 0;
}

[dir='rtl'] .announcement-bar__content-overlay {
    right: 0;
}

.announcement-bar__content-overlay {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: calc(100% - 10px); /* There is a border radius on the header on mobile so we slightly move down the overlay */
    width: 100%;
    height: 100vh;
    opacity: 0.3;
    background: #000;
    transition: opacity 0.5s ease-in-out;
}

.announcement-bar__content[hidden] .announcement-bar__content-overlay {
    opacity: 0;
}

@media screen and (max-width: 740px) {
    @supports (padding: max(0px)) {
        .announcement-bar__content-text-wrapper {
            padding-bottom: max(32px, env(safe-area-inset-bottom, 0px) + 32px);
        }
    }

    [dir='ltr'] .announcement-bar__content {
        left: 0;
    }

    [dir='rtl'] .announcement-bar__content {
        right: 0;
    }

    .announcement-bar__content {
        position: fixed;
        bottom: 0;
        width: 100%;
        transition:
            visibility 0.6s linear,
            opacity 0.6s cubic-bezier(0.75, 0, 0.175, 1),
            transform 0.6s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .announcement-bar__content[hidden] {
        transform: translateY(100%);
    }

    .announcement-bar__content-inner {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        max-height: 81vh;
        border-radius: 10px 10px 0 0;
    }

    .announcement-bar__content-image {
        flex: none;
    }

    .announcement-bar__content-text-wrapper {
        overflow: auto;
        padding: 32px 48px;
        text-align: center;
    }

    .announcement-bar__content.has-image .announcement-bar__close-button {
        color: rgb(255 255 255);
    }
}

@media screen and (min-width: 741px) {
    .announcement-bar {
        position: relative;
        justify-content: center;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }

    .announcement-bar__list {
        max-width: var(--container-max-width);
        padding-right: 40px;
        padding-left: 40px;
    }

    [dir='ltr'] .announcement-bar__content {
        left: 0;
    }

    [dir='rtl'] .announcement-bar__content {
        right: 0;
    }

    .announcement-bar__content {
        position: absolute;
        top: 100%;
        width: 100%;
        box-shadow: 0 -1px rgba(var(--text-color), 0.2);
        transition:
            visibility 0.5s linear,
            box-shadow 0.5s ease-in-out;
    }

    .announcement-bar__content[hidden] {
        box-shadow: none;
    }

    .announcement-bar__content-overflow {
        overflow: hidden;
        height: calc(100vh - var(--announcement-bar-height));
    }

    .announcement-bar__content-inner {
        transform: translateY(0);
        overflow: hidden;
        display: grid;
        grid-auto-columns: 1fr;
        align-items: center;
        max-height: 80vh;
        opacity: 1;
        background: rgb(var(--section-background));
        transition:
            opacity 0.5s cubic-bezier(0.75, 0, 0.175, 1),
            transform 0.5s cubic-bezier(0.75, 0, 0.175, 1);
    }

    .announcement-bar__content[hidden] .announcement-bar__content-inner {
        transform: translateY(-100%);
        opacity: 0;
    }

    .announcement-bar__content-overlay {
        top: 0;
        bottom: auto;
    }

    .announcement-bar__content-image,
    .announcement-bar__content-text-wrapper {
        grid-row: 1;
        max-height: inherit;
    }

    .announcement-bar__content-image {
        height: 100%;
        max-height: max-content;
        object-fit: cover;
        object-position: center;
    }

    .announcement-bar__content-text-wrapper {
        overflow: auto;
        overscroll-behavior: contain;
        padding: 80px var(--container-gutter);
    }

    .announcement-bar__content-text {
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .announcement-bar__message {
        min-width: 495px;
        max-width: 1000px;
    }
}

/* Header part */

.article__header {
    position: relative;
    display: block;
    background: rgb(var(--section-header-background));
}

.article__header-content {
    margin-right: auto;
    margin-left: auto;
    padding: 40px var(--container-gutter);
    color: rgb(var(--text-color));
}

.article__image-wrapper {
    overflow: hidden;
}

@media screen and (min-width: 1000px) {
    .article__header {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .article__header-content {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    /* Because the header of blog post is not in the natural flow, we have to position the breadcrumb differently */
    [dir='ltr'] .article__header .breadcrumb {
        left: var(--container-outer-margin);
    }

    [dir='rtl'] .article__header .breadcrumb {
        right: var(--container-outer-margin);
    }

    .article__image-wrapper {
        flex: none;
        align-self: stretch;
    }

    .article__image-wrapper--tall {
        width: 37.5%;
    }

    .article__image-wrapper--square {
        width: 50%;
    }

    .article__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    [dir='ltr'] .article__image-wrapper--tall + .article__header-content {
        padding-right: 100px;
    }

    [dir='rtl'] .article__image-wrapper--tall + .article__header-content {
        padding-left: 100px;
    }

    .article__header-content:only-child {
        max-width: 668px;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }
}

@media screen and (min-width: 1400px) {
    [dir='ltr'] .article__header-content {
        padding-left: calc(var(--container-outer-margin) + var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .article__header-content {
        padding-right: calc(var(--container-outer-margin) + var(--grid-column-width) + var(--grid-gap));
    }

    [dir='ltr'] .article__header-content {
        padding-right: 70px;
    }

    [dir='rtl'] .article__header-content {
        padding-left: 70px;
    }

    [dir='ltr'] .article__image-wrapper--tall + .article__header-content {
        padding-right: 160px;
    }

    [dir='rtl'] .article__image-wrapper--tall + .article__header-content {
        padding-left: 160px;
    }
}

/* Top navigation */

.article__nav {
    position: fixed;
    z-index: 1;
    top: calc(
        var(--enable-sticky-header) * var(--header-height, 0px) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar)
    );
    transform: translateY(-100%);
    display: block;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--background));
    border-bottom: 1px solid rgb(var(--border-color));
    transition:
        0.3s transform ease,
        0.3s opacity ease,
        0.3s visibility ease;
}

.article__nav.is-visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

[dir='ltr'] .article__nav::after {
    left: 0;
}

[dir='rtl'] .article__nav::after {
    right: 0;
}

.article__nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    transform-origin: var(--transform-origin-start);
    transform: scaleX(var(--transform));
    width: 100%;
    height: 2px;
    background: currentcolor;
    box-shadow: 0 1px currentcolor;
}

.article__nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 0;
}

.article__nav-item {
    display: flex;
    align-items: center;
}

.article__nav-item-title {
    overflow: hidden;
    min-width: 0;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir='ltr'] .article__nav-item-label {
    margin-right: 10px;
}

[dir='rtl'] .article__nav-item-label {
    margin-left: 10px;
}

[dir='ltr'] .article__nav-item--next .article__nav-arrow {
    margin-left: 20px;
}

[dir='rtl'] .article__nav-item--next .article__nav-arrow {
    margin-right: 20px;
}

[dir='ltr'] .article__nav-item--prev .article__nav-arrow {
    margin-right: 20px;
}

[dir='rtl'] .article__nav-item--prev .article__nav-arrow {
    margin-left: 20px;
}

.article__reading-time {
    flex-shrink: 0;
}

@media screen and (max-width: 740px) {
    .article__nav-item {
        will-change: transform;
        justify-content: center;
        width: 100%;
        transition:
            transform 0.2s ease-in-out,
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out;
    }

    [dir='ltr'] .article__nav-item--next {
        left: 0;
    }

    [dir='rtl'] .article__nav-item--next {
        right: 0;
    }

    .article__nav-item--next {
        position: absolute;
        transform: translateY(-6px);
        align-items: baseline;
        visibility: hidden;
        opacity: 0;
        transition-delay: 0s;
    }

    .article__nav-item--current {
        transition-delay: 0.15s;
    }

    [dir='ltr'] .article__nav-arrow {
        margin-left: auto;
    }

    [dir='rtl'] .article__nav-arrow {
        margin-right: auto;
    }

    .article__nav-arrow {
        align-self: center;
    }

    .article__nav--show-next .article__nav-item--current {
        transform: translateY(6px);
        opacity: 0;
        transition-delay: 0s;
    }

    .article__nav--show-next .article__nav-item--next {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        transition-delay: 0.15s;
    }
}

@media screen and (min-width: 741px) {
    .article__nav-wrapper {
        justify-content: center;
    }

    .article__nav-item--prev,
    .article__nav-item--next {
        position: absolute;
    }

    [dir='ltr'] .article__nav-item--prev {
        left: 0;
    }

    [dir='rtl'] .article__nav-item--prev {
        right: 0;
    }

    [dir='ltr'] .article__nav-item--next {
        right: 0;
    }

    [dir='rtl'] .article__nav-item--next {
        left: 0;
    }

    .article__nav-item-title {
        max-width: 225px;
    }

    .article__nav-item--prev .article__nav-item-title,
    .article__nav-item--next .article__nav-item-title {
        will-change: transform;
        transform: translateY(-6px);
        opacity: 0;
        transition:
            transform 0.2s ease-in-out,
            opacity 0.2s ease-in-out;
    }

    .article__nav-item:hover .article__nav-item-title,
    .article__nav-item:focus .article__nav-item-title {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (min-width: 1000px) {
    .article__nav-wrapper {
        padding: 27px 0;
    }
}

@media screen and (min-width: 1200px) {
    .article__nav-item-title {
        max-width: 300px;
    }
}

/* Inner part */

.article {
    margin: 40px 0;
}

.article__inner {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}

.article__info {
    display: grid;
    grid-gap: 14px;
    gap: 14px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgb(var(--border-color));
}

.article__info .article__date,
.article__info .article__author {
    font-weight: 700;
}

.article__meta-item + .article__meta-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 12px;
    margin-left: 12px;
    vertical-align: 2px;
    background: rgb(var(--text-color));
}

.article__tags {
    display: flex;
    align-items: center;
}

[dir='ltr'] .article__tags-item {
    margin-right: 12px;
}

[dir='rtl'] .article__tags-item {
    margin-left: 12px;
}

.article__tags-item {
    display: inline-block;
}

[dir='ltr'] .article__tags-label {
    margin-right: 15px;
}

[dir='rtl'] .article__tags-label {
    margin-left: 15px;
}

.article__share {
    display: flex;
    align-items: center;
    width: max-content;
}

.article__info {
    max-width: max-content;
}

[dir='ltr'] .article__share-button-list {
    margin-left: 15px;
}

[dir='rtl'] .article__share-button-list {
    margin-right: 15px;
}

.article__share-button-list {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 26px;
    gap: 26px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    list-style: none;
}

.article__comments-count {
    display: inline-flex;
    vertical-align: top;
}

[dir='ltr'] .article__comments-count svg {
    margin-right: 8px;
}

[dir='rtl'] .article__comments-count svg {
    margin-left: 8px;
}

.article__comments-count svg {
    position: relative;
    top: 1px; /* Micro alignment required by designer */
}

@media screen and (min-width: 1000px) {
    .article {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .article__inner {
        align-items: center;
    }

    .article__content,
    .article__info {
        flex-grow: 1;
        max-width: 668px;
    }
}

@media screen and (min-width: 1200px) {
    .article__inner {
        flex-direction: column;
        min-height: 200px;
    }

    [dir='ltr'] .article__info {
        left: 0;
    }

    [dir='rtl'] .article__info {
        right: 0;
    }

    .article__meta {
        display: grid;
        grid-gap: 8px;
        gap: 8px;
        justify-content: flex-start;
    }

    .article__meta-item::before {
        display: none !important;
    }

    .article__tags-label {
        margin-bottom: 10px;
    }

    .article__share,
    .article__tags {
        display: block;
    }

    .article__share-label {
        display: block;
        margin-bottom: 16px;
    }

    [dir='ltr'] .article__share-button-list {
        margin-left: 6px;
    }

    [dir='rtl'] .article__share-button-list {
        margin-right: 6px;
    }
}

@media screen and (min-width: 1400px) {
    .article__inner {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .article__info {
        width: 185px;
    }
}

/* Prev next */

.article__prev-next {
    background: rgb(var(--secondary-background));
}

@media screen and (min-width: 741px) {
    .article__prev-next .article-list {
        grid-auto-columns: 310px;
        grid-template-columns: none;
    }

    .article__prev-next .article-item {
        width: auto !important;
    }
}

/* Comment */

.article__comment-list-heading {
    margin-bottom: 30px;
}

.article-comment {
    padding: 24px;
    background: rgb(var(--secondary-background));
    border-radius: var(--block-border-radius-reduced);
}

.article-comment + .article-comment {
    margin-top: 16px;
}

.article-comment__meta {
    display: flex;
    align-items: center;
}

[dir='ltr'] .article-comment__gravatar {
    margin-right: 16px;
}

[dir='rtl'] .article-comment__gravatar {
    margin-left: 16px;
}

.article-comment__gravatar {
    width: 40px;
    border-radius: 100%;
}

.article-comment__author {
    margin-bottom: 0;
}

.article-comment__date {
    display: block;
    margin-top: 2px;
    margin-bottom: 4px;
}

.article-comment__content {
    margin-top: 15px;
}

.article__comment-list + .article__comment-form {
    margin-top: 48px;
}

.article__comment-form-title {
    margin-top: 0;
}

@media screen and (min-width: 741px) {
    .article-comment {
        padding: 32px;
    }

    [dir='ltr'] .article-comment__gravatar {
        margin-right: 21px;
    }

    [dir='rtl'] .article-comment__gravatar {
        margin-left: 21px;
    }

    .article-comment__gravatar {
        align-self: flex-start;
        width: 48px;
    }

    .article__comment-list-heading {
        margin-bottom: 34px;
    }

    .article__comment-list + .article__comment-form {
        margin-top: 64px;
    }
}

@media screen and (min-width: 1000px) {
    .article__comment-box {
        max-width: 748px;
        margin-right: auto;
        margin-left: auto;
    }
}

.article-list {
    --article-list-row-gap: 40px;
    --article-list-column-gap: var(--container-gutter);

    display: grid;
    grid-gap: var(--article-list-row-gap) var(--article-list-column-gap);
    gap: var(--article-list-row-gap) var(--article-list-column-gap);
}

.article-list--scrollable {
    grid-auto-flow: column;
}

.article-item {
    width: 100%;
}

.article-item__image-container {
    position: relative;
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
    border-radius: var(--block-border-radius-reduced);
}

[dir='ltr'] .article-item__arrow {
    right: 20px;
}

[dir='rtl'] .article-item__arrow {
    left: 20px;
}

.article-item__arrow {
    position: absolute;
    bottom: 20px;
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
    border: none;
    transition:
        opacity 0.15s ease-in-out,
        visibility 0.15s ease-in-out,
        transform 0.15s ease-in-out;
}

.article-item--horizontal {
    display: flex;
    align-items: center;
}

.article-item--horizontal .article-item__image-container {
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    border-radius: calc(
        var(--block-border-radius-reduced) / 2
    ); /* When shown as horizontal the tiles are smaller so we reduced the radius */
}

[dir='ltr'] .article-item--horizontal .article-item__arrow {
    right: 12px;
}

[dir='rtl'] .article-item--horizontal .article-item__arrow {
    left: 12px;
}

.article-item--horizontal .article-item__arrow {
    bottom: 12px;
}

[dir='ltr'] .article-item--featured .article-item__arrow {
    right: 32px;
}

[dir='rtl'] .article-item--featured .article-item__arrow {
    left: 32px;
}

.article-item--featured .article-item__arrow {
    bottom: 32px;
}

.article-item__category {
    width: max-content;
    color: rgba(var(--text-color), 0.7);
}

.article-item__excerpt {
    margin-top: -4px; /* We want the excerpt to be a bit closer to the title than usual paragraph */
}

.article-list--section .article-item:only-child {
    max-width: 668px;
}

@media screen and (max-width: 999px) {
    .article-list--scrollable .article-item:not(:only-child) {
        scroll-snap-align: center;
        scroll-snap-stop: always;
        width: 81vw;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .article-list--has-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-list--scrollable .article-item:not(:only-child) {
        width: 52vw;
    }
}

@media screen and (min-width: 741px) {
    .article-list--stacked {
        grid-template-columns: repeat(auto-fit, calc(100% / 3 - var(--article-list-column-gap) * (2 / 3)));
        justify-content: safe center;
    }
}

@media screen and (min-width: 1000px) {
    .article-list {
        --article-list-row-gap: 48px;
        --article-list-column-gap: 48px;
    }

    .article-list + .pagination {
        margin-top: 64px; /* Small exception here to separate more the pagination */
    }

    .article-list--section {
        grid-template-columns: repeat(auto-fit, calc(100% / 3 - var(--article-list-column-gap) * (2 / 3)));
        justify-content: safe center;
    }

    .article-item__image-container {
        margin-bottom: 24px;
    }

    .article-item__excerpt {
        margin-top: -8px; /* We want the excerpt to be a bit closer to the title than usual paragraph */
    }

    /* When this layout is used, the most recent blog post takes larger part */
    .article-list--collage {
        grid-template-columns: 1.37731fr 1fr;
        column-gap: 48px;
    }

    .article-item--featured .article-item__image-container {
        margin-bottom: 32px;
    }

    .article-list__secondary-list {
        display: grid;
        grid-auto-rows: max-content;
        grid-row-gap: 48px;
        row-gap: 48px;
    }

    [dir='ltr'] .article-list__secondary-list .article-item__image-container {
        margin-right: 32px;
    }

    [dir='rtl'] .article-list__secondary-list .article-item__image-container {
        margin-left: 32px;
    }

    .article-list__secondary-list .article-item__image-container {
        flex: none;
        width: 42%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {
    /* .article-list {
    margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    margin-right: calc(var(--grid-column-width) + var(--grid-gap));
  } */

    .article-list--collage {
        column-gap: 70px;
    }
}

@media screen and (pointer: fine) {
    .article-item:hover .article-item__arrow {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

/* General */

.checkout-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir='ltr'] .checkout-button__lock {
    left: 18px;
}

[dir='rtl'] .checkout-button__lock {
    right: 18px;
}

.checkout-button__lock {
    position: absolute;
}

[dir='ltr'] .checkout-button .square-separator {
    margin-right: 12px;
    margin-left: calc(12px - 0.5 * 2px);
}

[dir='rtl'] .checkout-button .square-separator {
    margin-right: calc(12px - 0.5 * 2px);
    margin-left: 12px;
}

.checkout-button .square-separator {
    /* This is a micro adjustment but because of the letter spacing we have to compensate with negative margin */
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .checkout-button__lock {
        left: 20px;
    }

    [dir='rtl'] .checkout-button__lock {
        right: 20px;
    }
}

/* Discount badge (used both at line and cart level) */

.discount-badge {
    display: flex;
    align-items: center;
    padding: 3px 6px;
    font-family: var(--text-font-family);
    font-size: 11px;
    font-weight: var(--text-font-bold-weight);
    font-style: var(--text-font-style);
    color: rgb(var(--background));
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgb(var(--heading-color));
}

[dir='ltr'] .discount-badge svg {
    margin-right: 8px;
}

[dir='rtl'] .discount-badge svg {
    margin-left: 8px;
}

.discount-badge svg {
    position: relative;
}

/* Free shipping bar */

.shipping-bar {
    display: block;
    width: 100%;
    margin: 16px auto 4px;
    text-align: center;
}

.shipping-bar__text {
    display: block;
}

.shipping-bar__progress {
    position: relative;
    display: block;
    height: 7px;
    margin-top: 6px;
    border: 2px solid currentcolor;
    border-radius: 4px;
}

.shipping-bar__progress::after {
    content: '';
    position: absolute;
    inset: 0;
    transform-origin: var(--transform-origin-start);
    transform: scaleX(var(--progress));
    background: currentcolor;
    transition: transform 0.2s ease;
}

.shipping-bar--large {
    max-width: 392px;
}

@media screen and (min-width: 741px) {
    .shipping-bar {
        margin-bottom: 8px;
    }

    .shipping-bar__progress {
        height: 8px;
        margin-top: 8px;
    }

    .shipping-bar--large .shipping-bar__progress {
        margin-top: 16px;
    }
}

/* Line item */

.line-item {
    display: flow-root;
}

.line-item__content-wrapper {
    position: relative;
    display: flex;
    margin-top: 20px;
}

.line-item--centered .line-item__content-wrapper {
    align-items: center;
}

[dir='ltr'] .line-item__image-wrapper {
    margin-right: 24px;
}

[dir='rtl'] .line-item__image-wrapper {
    margin-left: 24px;
}

.line-item__image-wrapper {
    position: relative;
    display: block;
    flex: none;
    align-self: flex-start;
    width: 80px;
}

.line-item__image {
    border-radius: min(var(--block-border-radius), 4px);
}

[dir='ltr'] .line-item__loader {
    left: calc(50% - 16px);
}

[dir='rtl'] .line-item__loader {
    right: calc(50% - 16px);
}

.line-item__loader {
    position: absolute;
    top: calc(50% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgb(var(--root-text-color));
    background: rgb(var(--root-background));
    border-radius: 32px;
    transition:
        opacity 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        visibility 0.2s ease-in-out;
}

.line-item__loader[hidden] {
    transform: scale(0.4);
    visibility: hidden;
    opacity: 0;
}

/* Used for secondary info such as variant title, subscription plan, attributes... */

.line-item__quantity {
    display: block;
    margin-top: 8px;
}

.line-item__discount-list + .line-item__quantity {
    margin-top: 12px;
}

[dir='ltr'] .line-item__remove-button {
    margin-left: 12px;
}

[dir='rtl'] .line-item__remove-button {
    margin-right: 12px;
}

/* Discount at line item level */

.line-item__discount-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 8px;
}

.line-item__discount-badge:not(:last-child) {
    margin-bottom: 4px;
}

@media screen and (min-width: 741px) {
    .line-item__content-wrapper {
        margin-top: 24px;
    }

    .line-item__image-wrapper {
        width: 92px;
    }

    .line-item__quantity {
        margin-top: 14px;
        vertical-align: top;
    }

    [dir='ltr'] .line-item__price-list-container {
        margin-left: auto;
    }

    [dir='rtl'] .line-item__price-list-container {
        margin-right: auto;
    }

    [dir='ltr'] .line-item__price-list-container {
        padding-left: 30px;
    }

    [dir='rtl'] .line-item__price-list-container {
        padding-right: 30px;
    }

    .line-item__price-list-container {
        flex-shrink: 0;
        line-height: 1.5; /* Used to simulate the same line-height as the product title */ /* Gives a minimum spacing for the price */
        text-align: right;
        vertical-align: top;
    }

    [dir='ltr'] .line-item__quantity--block .line-item__remove-button {
        margin-left: 0;
    }

    [dir='rtl'] .line-item__quantity--block .line-item__remove-button {
        margin-right: 0;
    }

    .line-item__quantity--block .line-item__remove-button {
        display: block;
        margin-top: 10px;
    }

    .line-item__discount-list {
        margin-top: 14px;
    }
}

/* FULFILLMENT */

@media screen and (min-width: 741px) {
    [dir='ltr'] .line-item__fulfillment {
        margin-left: 116px;
    }

    [dir='rtl'] .line-item__fulfillment {
        margin-right: 116px;
    }
}

/* TABLE */

.line-item-table {
    margin-bottom: 40px;
}

.line-item-table .line-item {
    display: table-row;
}

.line-item-table .line-item__content-wrapper {
    margin-top: 0; /* The spacing is brought by the table */
}

@media screen and (max-width: 740px) {
    .line-item-table {
        table-layout: fixed;
    }

    .line-item-table__list .line-item:first-child .line-item__product {
        padding-top: 0;
    }

    [dir='ltr'] .line-item-table__list .line-item__product {
        padding-right: 0;
    }

    [dir='rtl'] .line-item-table__list .line-item__product {
        padding-left: 0;
    }

    .line-item-table__list .line-item__product {
        width: 100%;
    }

    .line-item-table__footer {
        display: table-row;
    }

    [dir='ltr'] .line-item-table__footer td:nth-child(2) {
        padding-left: 0;
    }

    [dir='rtl'] .line-item-table__footer td:nth-child(2) {
        padding-right: 0;
    }

    .line-item-table__footer td:nth-child(2) {
        width: 100%;
    }
}

@media screen and (min-width: 741px) {
    .line-item-table__list .line-item__quantity {
        margin-top: 0;
    }
}

/* Mini-cart specificities */

.mini-cart__discount-list {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 8px;
}

.mini-cart__discount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

[dir='ltr'] .mini-cart__discount-badge {
    margin-right: 14px;
}

[dir='rtl'] .mini-cart__discount-badge {
    margin-left: 14px;
}

.mini-cart__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 14px;
}

[dir='ltr'] .mini-cart__order-note {
    left: 0;
}

[dir='rtl'] .mini-cart__order-note {
    right: 0;
}

.mini-cart__order-note {
    position: absolute;
    z-index: 1;
    bottom: 0;
    transform: translateY(100%);
    display: block;
    width: 100%;
    padding: var(--container-gutter);
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--background));
    transition:
        visibility 0.25s ease-in-out,
        opacity 0.25s ease-in-out,
        transform 0.25s ease-in-out;
}

.mini-cart__order-note[open] {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.mini-cart__order-note-title {
    margin-bottom: 24px;
}

@media screen and (max-width: 740px) {
    @supports (padding: max(0px)) {
        .mini-cart__order-note {
            padding-bottom: max(24px, env(safe-area-inset-bottom, 0px) + 24px);
        }
    }

    .mini-cart__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .mini-cart__actions > :first-child:not(:only-child) {
        margin-bottom: 7px;
    }

    /* On mobile we want the order note to take full width. As the drawer is taking 89vw, we need to shift left by 11vw */
    [dir='ltr'] .mini-cart__order-note {
        left: -11vw;
    }

    [dir='rtl'] .mini-cart__order-note {
        right: -11vw;
    }

    .mini-cart__order-note {
        width: 100vw;
    }
}

@media screen and (min-width: 741px) {
    .mini-cart__drawer-footer {
        padding-bottom: var(--container-gutter);
    }

    .mini-cart__discount {
        justify-content: flex-end;
    }

    .mini-cart__actions {
        margin-bottom: 26px;
    }
}

/* Mini cart recommendations */

.mini-cart__recommendations:not([hidden]) {
    display: block;
}

.mini-cart__recommendations-inner {
    margin-top: 24px;
    margin-right: calc(-1 * var(--container-gutter));
    margin-left: calc(-1 * var(--container-gutter));
    padding: 16px var(--container-gutter);
    background: rgb(var(--secondary-background));
}

.mini-cart__recommendations-heading {
    margin-top: 0 !important;
}

.mini-cart__recommendations .product-item-meta__title {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 999px) {
    .mini-cart__recommendations-list {
        display: grid;
        grid-auto-columns: minmax(64vw, 1fr);
        grid-auto-flow: column;
        grid-gap: var(--grid-gap);
    }

    .mini-cart__recommendations .product-item {
        scroll-margin: var(--container-gutter);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    [dir='ltr'] .mini-cart__recommendations .product-item__image-wrapper {
        margin: 0 24px 0 0;
    }

    [dir='rtl'] .mini-cart__recommendations .product-item__image-wrapper {
        margin: 0 0 0 24px;
    }

    .mini-cart__recommendations .product-item__image-wrapper {
        flex: none;
        width: 65px;
    }

    [dir='ltr'] .mini-cart__recommendations .product-item__info {
        text-align: left;
    }

    [dir='rtl'] .mini-cart__recommendations .product-item__info {
        text-align: right;
    }

    .mini-cart__recommendations .product-item__info {
        min-width: 0;
    }
}

@media screen and (min-width: 1000px) {
    [dir='ltr'] .mini-cart__recommendations {
        right: 100%;
    }

    [dir='rtl'] .mini-cart__recommendations {
        left: 100%;
    }

    .mini-cart__recommendations {
        position: absolute;
        top: 0;
        overflow: hidden;
        width: 240px;
        height: 100%;
        text-align: center;
    }

    .mini-cart__recommendations-inner {
        scrollbar-width: thin;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
        margin: 0;
        padding-top: 35px;
        padding-bottom: 35px;
        box-shadow: -10px 0 24px 4px rgb(var(--text-color), 0.05) inset;
        transition: transform 0.25s ease-in;
    }

    .mini-cart:not([open]) .mini-cart__recommendations-inner {
        transform: translateX(100%);
    }

    .mini-cart__recommendations .product-item {
        margin-top: 40px;
    }

    .mini-cart__recommendations .product-item__image-wrapper {
        flex: none;
        width: 92px;
        margin: 0 auto 24px;
    }

    .mini-cart__recommendations .spinner {
        display: flex;
        height: 100%;
    }
}

/* Cart details */

.cart__recap {
    padding: var(--container-gutter);
    background: rgb(var(--background));
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--block-border-radius-reduced);
}

.cart__recap-block {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 10px;
}

.cart__recap-block > * {
    margin-top: 0;
    margin-bottom: 0;
}

.cart__recap-note {
    margin-bottom: 24px;
}

.cart__total-container,
.cart__discount {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.cart__discount-list {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
}

.cart__discount-badge {
    align-self: stretch;
}

.cart__order-note {
    padding-top: 14px;
}

.cart__checkout-button:not(:only-child) {
    margin-top: 24px;
}

.cart__payment-methods {
    margin-top: 24px;
    text-align: center;
}

.cart__payment-methods-label {
    display: block;
    margin-bottom: 16px;
}

.cart__payment-methods-note {
    display: block;
    margin-top: 16px;
}

@media screen and (max-width: 999px) {
    .cart__aside {
        margin-top: 24px;
    }
}

@media screen and (min-width: 1000px) {
    .cart {
        display: grid;
        grid-gap: 40px;
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .cart__aside-inner {
        position: sticky;
        top: calc(
            var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
                var(--enable-sticky-announcement-bar) + 24px
        );
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .cart {
        grid-template-columns: 1fr 390px;
        gap: 70px;
    }
}

/* Shipping estimator */

.shipping-estimator {
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--block-border-radius-reduced);
}

.shipping-estimator__toggle-button,
.shipping-estimator__form {
    padding: 24px;
}

.shipping-estimator__form {
    display: block;
    padding-top: 0 !important;
}

.shipping-estimator__results {
    margin-top: 24px;
}

@media screen and (min-width: 741px) {
    .shipping-estimator__form .input-row .input:nth-child(1),
    .shipping-estimator__form .input-row .input:nth-child(2) {
        grid-column: span 2; /* The third one is the zip and can be smaller */
    }

    .shipping-estimator__toggle-button,
    .shipping-estimator__form {
        padding: 32px;
    }
}

/** NOTE: Collection related styles are very scarce, as most of them are abstracted in the "product-facet" that is used on search page as well */

/* Promotion block override for the collection page */

.product-facet__main .promotion-block-list {
    --promotion-block-gutter: 24px;
}

.product-facet__main .promotion-block-list--top {
    margin-bottom: 20px;
}

.product-facet__main .promotion-block-list--bottom {
    margin-top: 36px;
}

@media screen and (max-width: 740px) {
    /* On mobile only we want the promotion block and filters closer to the edge so that they align with products */
    .product-facet__main .promotion-block-list {
        --promotion-block-gutter: 12px;

        margin-right: calc(-1 * (var(--container-gutter) - var(--promotion-block-gutter) / 2));
        margin-left: calc(-1 * (var(--container-gutter) - var(--promotion-block-gutter) / 2));
    }
}

@media screen and (min-width: 741px) {
    .product-facet__main .promotion-block-list--bottom {
        margin-top: 60px;
    }
}

.section__headings + .contact__form {
    margin-top: 24px;
}

.contact__text-list {
    padding: 32px;
    border: 1px solid rgba(var(--text-color), 0.15);
}

.contact__text-item + .contact__text-item {
    margin-top: 32px;
}

@media screen and (max-width: 999px) {
    .contact__form,
    .contact__aside {
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact__aside {
        margin-top: 40px;
    }
}

@media screen and (min-width: 741px) {
    .contact__text-list {
        display: grid;
        grid-gap: 32px;
        grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
        gap: 32px;
    }

    .contact__text-item {
        margin-top: 0 !important;
    }
}

@media screen and (min-width: 1000px) {
    .contact {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }

    .contact__main {
        flex: 1 0 auto;
        max-width: 460px;
    }

    .contact__main:only-child {
        flex-grow: 1;
        max-width: none;
    }

    [dir='ltr'] .contact__main:not(:only-child) .section__headings {
        text-align: left;
    }

    [dir='rtl'] .contact__main:not(:only-child) .section__headings {
        text-align: right;
    }

    .contact__main:not(:only-child) .section__headings {
        margin-bottom: 32px;
    }

    .contact__form {
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }

    [dir='ltr'] .contact__aside {
        margin-right: 40px;
    }

    [dir='rtl'] .contact__aside {
        margin-left: 40px;
    }

    .contact__aside {
        max-width: 530px;
    }
}

@media screen and (min-width: 1200px) {
    [dir='ltr'] .contact__aside {
        margin-right: 90px;
    }

    [dir='rtl'] .contact__aside {
        margin-left: 90px;
    }
}

[dir='ltr'] .cookie-bar {
    right: var(--container-gutter);
}

[dir='rtl'] .cookie-bar {
    left: var(--container-gutter);
}

.cookie-bar {
    position: fixed;
    z-index: 2;
    bottom: var(--container-gutter);
    display: block;
    width: calc(100% - var(--container-gutter) * 2);
    max-width: 400px;
    padding: 20px;
    background: rgb(var(--root-background));
    border: 1px solid rgb(var(--root-border-color));
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
}

.cookie-bar[hidden] {
    visibility: hidden;
    opacity: 0;
}

.cookie-bar__actions {
    margin-top: 18px;
}

.cookie-bar__actions .button--ternary {
    background-color: rgb(var(--background));
    background-image: none;
    border: 1px solid rgb(var(--root-primary-button-background));
    transition: 0.2s;
}

.cookie-bar__actions .button--ternary:hover {
    color: rgb(var(--root-primary-button-text-color));
    background: rgb(var(--root-primary-button-background));
    transition: 0.2s;
}

[dir='ltr'] .cookie-bar__actions .button:last-child {
    margin-left: 4px;
}

[dir='rtl'] .cookie-bar__actions .button:last-child {
    margin-right: 4px;
}

@media screen and (max-width: 740px) {
    @supports (padding: max(0px)) {
        .cookie-bar {
            bottom: max(24px, env(safe-area-inset-bottom, 0px) + 24px);
        }
    }
}

@media screen and (min-width: 741px) {
    .cookie-bar {
        padding: 30px;
    }
}

.faq {
    position: relative;
}

.faq__category {
    --anchor-offset: 20px;

    margin-bottom: 0;
    padding: 20px 24px;
    background: rgb(var(--secondary-background));
}

.faq__item + .faq__item {
    border-top: 1px solid rgba(var(--text-color), 0.15);
}

[dir='ltr'] .faq__item .collapsible__content {
    padding-right: 40px;
}

[dir='rtl'] .faq__item .collapsible__content {
    padding-left: 40px;
}

.faq__item .collapsible__content {
    padding-bottom: 26px; /* We add extra spacing horizontally */
}

@media screen and (max-width: 740px) {
    .faq {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    /* .faq__item {
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
  } */

    .faq__item ~ .faq__category {
        margin-top: 30px;
    }
}

@media screen and (min-width: 741px) {
    .faq__item .collapsible-toggle,
    .faq__item .collapsible__content {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.faq-navigation {
    margin: 0 auto 3rem;
}

@media screen and (min-width: 1000px) {
    .faq__wrapper {
        width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 9);
        max-width: 668px;
        margin-right: auto;
        margin-left: auto;
    }

    [dir='ltr'] .faq-navigation {
        left: 0;
    }

    [dir='rtl'] .faq-navigation {
        right: 0;
    }

    .faq-navigation {
        position: absolute;
        top: 0;
        display: block;
        max-width: calc(var(--grid-column-width) * 4 + var(--grid-gap) * 3);
        height: 100%;
    }
}

@media screen and (min-width: 1400px) {
    [dir='ltr'] .faq-navigation {
        left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .faq-navigation {
        right: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .faq-navigation {
        max-width: calc(var(--grid-column-width) * 3 + var(--grid-gap) * 2);
    }
}

.footer {
    overflow: hidden;
    padding: 48px 0;
    color: rgb(var(--text-color));
    background: rgb(var(--background));
}

.footer--bordered {
    border-top: 1px solid rgb(var(--border-color));
}

.footer__item-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: space-between;
}

.footer__item {
    max-width: 325px; /* Ensure a given item does not grow too big */
    word-break: break-word;
}

.footer__item-title {
    margin-bottom: 12px;
}

.footer__item-title.heading {
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-color);
}

.footer__image {
    display: block;
    max-width: unset;
}

.footer__item--social-media .footer__item-content {
    margin-top: 20px;
}

.footer__aside {
    margin-top: 42px;
}

.footer__cross-border {
    display: flex;
}

[dir='ltr'] .footer__cross-border .popover-container + .popover-container {
    margin-left: -1px;
}

[dir='rtl'] .footer__cross-border .popover-container + .popover-container {
    margin-right: -1px;
}

.footer__cross-border .popover-container + .popover-container {
    /* Allows to collapse the border */
}

.footer__newsletter-form {
    margin-top: 16px;
}

.footer__copyright,
.footer__payment-methods {
    display: block;
    margin-top: 32px;
    color: rgba(var(--footer-text-color), 0.7);
}

.footer__copyright {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: center;
}

.footer__payment-methods-label {
    display: inline-block;
    margin-bottom: 8px;
}

@media screen and (max-width: 740px) {
    .footer__item--image,
    .footer__item--newsletter,
    .footer__item--newsletter + .footer__item--social-media:last-child {
        grid-column: span 2;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .footer__item-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer__item--image.is-first {
        grid-column: span 3;
    }

    .footer__item--newsletter {
        grid-column: span 2;
    }
}

@media screen and (min-width: 741px) {
    .footer__payment-methods {
        display: flex;
        align-items: center;
    }

    [dir='ltr'] .footer__payment-methods-label {
        margin-right: 14px;
    }

    [dir='rtl'] .footer__payment-methods-label {
        margin-left: 14px;
    }

    .footer__payment-methods-label {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1000px) {
    .footer {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .footer__item-list {
        grid-auto-flow: column;
        grid-template-columns: repeat(5, 1fr);
    }

    .footer__item-title {
        margin-bottom: 20px;
    }

    .footer__aside {
        display: flex;
        flex-wrap: nowrap;
        row-gap: 24px;
        align-items: center;
        justify-content: flex-start;
        margin-top: 50px;
    }

    [dir='ltr'] .footer__cross-border {
        margin-right: 32px;
    }

    [dir='rtl'] .footer__cross-border {
        margin-left: 32px;
    }

    .footer__payment-methods,
    .footer__copyright {
        margin-top: 0;
    }

    [dir='ltr'] .footer__payment-methods {
        margin-left: auto;
    }

    [dir='rtl'] .footer__payment-methods {
        margin-right: auto;
    }
}

@media screen and (min-width: 1200px) {
    [dir='ltr'] .footer__cross-border {
        margin-right: 50px;
    }

    [dir='rtl'] .footer__cross-border {
        margin-left: 50px;
    }
}

.gallery {
    --gallery-image-height: 370px;

    position: relative;
    display: block;
}

.gallery__list-wrapper:not(.is-scrollable) ~ .custom-drag-cursor {
    visibility: hidden;
}

.gallery__list-wrapper:not(.is-scrollable) ~ .gallery__prev-next-buttons,
.gallery__list-wrapper:not(.is-scrollable) ~ .gallery__progress-bar-wrapper {
    display: none;
}

.gallery__list-wrapper {
    display: block;
}

.gallery__list {
    display: flex;
    flex-wrap: nowrap;
}

.gallery__list-wrapper.is-scrollable .gallery__list::after {
    content: '';
    flex: 0 0 var(--container-outer-width); /* Allows to create the gap after the last image */
}

.gallery__item {
    flex-shrink: 0;
    width: max-content;
}

[dir='ltr'] .gallery__item:not(:first-child) {
    margin-left: var(--container-gutter);
}

[dir='rtl'] .gallery__item:not(:first-child) {
    margin-right: var(--container-gutter);
}

.gallery__figure {
    display: table;
    margin: 0;
}

.gallery__image {
    user-select: none;
    overflow: hidden;
    display: block;
    width: auto;
    height: var(--gallery-image-height);
    border-radius: var(--block-border-radius-reduced);
}

.gallery__caption {
    caption-side: bottom;
    display: table-caption;
    margin-top: 16px;
}

.gallery__progress-bar {
    display: block;
    margin-top: 32px;
}

[dir='ltr'] .gallery__prev-next-buttons {
    right: calc(var(--container-outer-width) - 28px);
}

[dir='rtl'] .gallery__prev-next-buttons {
    left: calc(var(--container-outer-width) - 28px);
}

.gallery__prev-next-buttons {
    position: absolute;
    z-index: 1;
    top: calc(
        var(--gallery-image-height) / 2 - 56px
    ); /* 56px is the height of a single button */ /* 28px is half the width of button */
}

@media not screen and (pointer: fine) {
    .gallery__prev-next-buttons {
        display: none !important; /* Arrows are hidden on touch devices */
    }
}

@media screen and (min-width: 1000px) {
    .gallery {
        --gallery-image-height: 40vw;
    }
}

@media screen and (min-width: 1200px) {
    .gallery {
        --gallery-image-height: 35vw;
    }
}

@media screen and (min-width: 1400px) {
    .gallery {
        --gallery-image-height: 30vw;
    }
}

.gift-card {
    min-height: var(--window-height, 100vh);
    text-align: center;
    background: rgb(var(--background));
    color-adjust: exact; /* Make sure it prints using the same background */
    -webkit-print-color-adjust: exact;
}

.gift-card__wrapper {
    max-width: 530px;
    margin-right: auto;
    margin-left: auto;
}

.gift-card__logo {
    margin-bottom: 32px;
}

.gift-card__logo-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.gift-card__image-wrapper {
    max-width: 280px;
    margin-right: auto;
    margin-bottom: -65px;
    margin-left: auto;
}

.gift-card__image {
    border-radius: 18px;
}

.gift-card__card {
    padding: 32px;
    color: rgb(var(--text-color));
    background: rgb(var(--section-card-background));
}

.gift-card__card + .gift-card__card {
    margin-top: 16px;
}

.gift-card__main {
    padding-top: calc(32px + 65px); /* 65px is the offset of the image */
}

.gift-card__amount {
    color: rgb(var(--product-on-sale-accent));
}

.gift-card__code-container {
    display: grid;
    grid-gap: 8px;
    gap: 8px;
}

.gift-card__code {
    height: var(--button-height);
    padding-right: 12px;
    padding-left: 12px;
    line-height: var(--button-height);
    appearance: none;
    background: transparent;
    border: 1px solid rgb(var(--border-color));
    border-radius: 0;
}

.gift-card__expires-on {
    margin-top: 16px;
}

.gift-card__aside {
    display: grid;
    grid-gap: 24px;
    gap: 24px;
}

.gift-card__qr {
    display: block;
}

.gift-card__qr img,
.gift-card__wallet {
    width: 132px;
    margin-right: auto;
    margin-left: auto;
}

.gift-card__button-wrapper {
    margin-top: 24px;
}

@media screen and (min-width: 741px) {
    .gift-card__logo {
        margin-bottom: 56px;
    }

    .gift-card__card {
        padding: 40px;
    }

    .gift-card__image-wrapper {
        margin-bottom: -95px;
    }

    .gift-card__main {
        padding-top: calc(40px + 95px); /* 95px is the offset of the image */
    }

    .gift-card__image-wrapper {
        max-width: 360px;
    }

    .gift-card__code-container {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .gift-card__aside {
        grid-auto-flow: column;
        gap: 32px;
        align-items: center;
    }

    [dir='ltr'] .gift-card__aside .heading {
        text-align: left;
    }

    [dir='rtl'] .gift-card__aside .heading {
        text-align: right;
    }

    .gift-card__qr img {
        width: 68px;
    }

    .gift-card__wallet {
        width: 145px;
    }

    .gift-card__button-wrapper {
        margin-top: 40px;
    }
}

.header {
    display: block;
    color: rgb(var(--header-text-color));
    background: rgb(var(--header-background));
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.header--bordered {
    box-shadow: 0 1px transparent;
}

.header--bordered:not(.header--transparent) {
    box-shadow: 0 1px rgb(var(--border-color));
}

.header__logo {
    position: relative;
    display: block;
    margin: 0;
}

.header__logo-link,
.header__logo-image {
    display: block;
    width: max-content;
}

.header__logo-text {
    max-width: min(350px, 60vw);
    color: currentcolor;
}

.header__logo-image {
    transition: opacity 0.2s ease-in-out;
}

[dir='ltr'] .header__logo-image--transparent {
    left: 0;
}

[dir='rtl'] .header__logo-image--transparent {
    right: 0;
}

.header__logo-image--transparent {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
    object-position: center;
}

.js .header--transparent .header__logo-image:not(:last-child) {
    opacity: 0;
}

.js .header--transparent .header__logo-image--transparent {
    opacity: 1;
}

.header__wrapper {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.header__inline-navigation {
    display: flex;
    align-items: center;
}

.header__inline-navigation,
.header__secondary-links {
    flex: 1 1 0; /* Allows to give the same width to left and right part */
}

.header__icon-wrapper {
    display: block;
}

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

@media screen and (min-width: 741px) {
    .header__wrapper {
        padding: calc(27px - var(--reduce-header-padding) * 6px) 0;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
    [dir='ltr'] .header__search-bar {
        margin-left: 24px;
    }

    [dir='rtl'] .header__search-bar {
        margin-right: 24px;
    }
}

/** SECONDARY LINKS **/

.header__secondary-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__secondary-links .header__linklist {
    flex-wrap: nowrap;
}

.header__icon-list {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

[dir='ltr'] .header__cart-count {
    margin-left: 8px;
}

[dir='rtl'] .header__cart-count {
    margin-right: 8px;
}

.header__cart-count {
    top: -1px; /* pixel perfect alignment */
}

[dir='ltr'] .header__cart-count--floating {
    margin-left: 0;
}

[dir='rtl'] .header__cart-count--floating {
    margin-right: 0;
}

[dir='ltr'] .header__cart-count--floating {
    right: -14px;
}

[dir='rtl'] .header__cart-count--floating {
    left: -14px;
}

.header__cart-count--floating {
    position: absolute;
    top: -8px;
}

.header__cart-count {
    color: rgb(var(--header-background));
    background: rgb(var(--header-text-color));
}

.js .header--transparent .header__cart-count {
    color: rgb(var(--header-transparent-bubble-text-color));
}

@media screen and (min-width: 741px) {
    .header__icon-list {
        gap: 24px;
    }
}

/** CROSS BORDER **/

.header__cross-border {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 18px;
    gap: 18px;
}

[dir='ltr'] .header__secondary-links .header__cross-border {
    margin-right: 24px;
}

[dir='rtl'] .header__secondary-links .header__cross-border {
    margin-left: 24px;
}

@media screen and (min-width: 1200px) {
    [dir='ltr'] .header__secondary-links .header__cross-border {
        margin-right: 30px;
    }

    [dir='rtl'] .header__secondary-links .header__cross-border {
        margin-left: 30px;
    }
}

/** NAVIGATION **/

.header__bottom-navigation {
    padding-top: calc(17px - var(--reduce-header-padding) * 8px);
    padding-bottom: calc(19px - var(--reduce-header-padding) * 8px); /* Designer want slightly irregular padding */
    border-top: 1px solid rgb(var(--header-border-color));
    transition: border-top 0.2s ease-in-out;
}

.header__linklist {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px; /* This will add extra spacing on modern browsers */
    align-items: center;
}

.header__linklist-item {
    flex-shrink: 0;
}

[dir='ltr'] .header__linklist-item:not(:last-child) {
    margin-right: 32px;
}

[dir='rtl'] .header__linklist-item:not(:last-child) {
    margin-left: 32px;
}

/* This is a trick to increase the bounding size of the link, and therefore prevent to loose hover */
[dir='ltr'] .header__linklist-item.has-dropdown:hover::before {
    margin-left: -32px;
}

[dir='rtl'] .header__linklist-item.has-dropdown:hover::before {
    margin-right: -32px;
}

.header__linklist-item.has-dropdown:hover::before {
    content: attr(data-item-title);
    position: absolute;
    top: 0;
    height: 100%;
    padding-right: 32px;
    padding-left: 32px;
    opacity: 0; /* Allow to visually hide it */
}

.header__bottom-navigation .header__linklist-item:hover::before {
    top: auto;
    bottom: 0;
    height: calc(100% - var(--header-height-without-bottom-nav));
}

.header__linklist-link {
    display: block;
    font-family: 'Helvetica Neue', var(--heading-font-family), sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.header__bottom-navigation .header__linklist {
    justify-content: center;
}

/** DROPDOWN MENU **/

[dir='ltr'] .nav-dropdown {
    margin-left: -32px;
}

[dir='rtl'] .nav-dropdown {
    margin-right: -32px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgb(var(--text-color));
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--background));
    border: 1px solid rgba(var(--text-color), 0.15);
    transition:
        opacity 0.25s ease-in-out,
        visibility 0.25s ease-in-out;
}

.nav-dropdown:not([hidden]),
.focus-outline :focus-within > .nav-dropdown,
.no-js :focus-within > .nav-dropdown,
.no-js :hover > .nav-dropdown {
    visibility: visible;
    opacity: 1;
}

.nav-dropdown--restrict {
    overflow: auto;
    max-height: calc(100vh - var(--header-height) - 20px);
}

[dir='ltr'] .nav-dropdown .nav-dropdown {
    margin-left: 0;
}

[dir='rtl'] .nav-dropdown .nav-dropdown {
    margin-right: 0;
}

[dir='ltr'] .nav-dropdown .nav-dropdown {
    left: 100%;
}

[dir='rtl'] .nav-dropdown .nav-dropdown {
    right: 100%;
}

.nav-dropdown .nav-dropdown {
    top: -20px;
}

.nav-dropdown__item {
    position: relative;
}

.nav-dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 30px;
    font-family: 'Helvetica Neue', var(--heading-font-family), sans-serif;
    font-size: 20px;
    font-weight: 400;
}

[dir='ltr'] .nav-dropdown__link > svg {
    margin-left: 16px;
}

[dir='rtl'] .nav-dropdown__link > svg {
    margin-right: 16px;
}

.nav-dropdown__link > svg {
    position: relative;
    top: 2px;
    transition: transform 0.25s ease-in-out;
}

.nav-dropdown__link[aria-expanded='true'] > svg {
    transform: translateX(calc(var(--transform-logical-flip) * 8px));
}

/** MEGA MENU **/

.mega-menu {
    --mega-menu-column-gap: 48px;
    --mega-menu-image-gap: 24px;

    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    color: rgb(var(--text-color));
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--background));
    transition:
        opacity 0.25s ease-in-out,
        visibility 0.25s ease-in-out;
    
}
.mega-menu.has-active {
    transition-delay: .75s;
}
.mega-menu.is-closing,
.mega-menu[hidden] {
    z-index: -1;
}

.mega-menu::after {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 100% - var(--header-height, 0px));
    opacity: 0;
    background: #000;
    transition: opacity 0.25s ease-in-out;
}

.mega-menu:not([hidden]),
.focus-outline :focus-within > .mega-menu,
.no-js :focus-within > .mega-menu,
.no-js :hover > .mega-menu {
    visibility: visible;
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    desktop-navigation .header__linklist-item.has-dropdown .mega-menu {
        display: none !important;
    }
    desktop-navigation .header__linklist-item.has-dropdown.visible .mega-menu {
        display: block !important;
    }
}
.mega-menu:not([hidden])::after,
.focus-outline :focus-within > .mega-menu::after,
.no-js :focus-within > .mega-menu::after,
.no-js :hover > .mega-menu::after {
    opacity: 0.3;
}

.mega-menu.is-closing::after {
    opacity: 0;
    transition-delay: 0.15s;
}

.header--bordered .mega-menu {
    margin-top: 1px; /* Prevent overlapping the border */
}

.mega-menu__inner {
    position: relative;
    z-index: 1;
    overflow: auto;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: var(--mega-menu-column-gap);
    column-gap: var(--mega-menu-column-gap);
    justify-content: center;
    max-height: calc(100vh - var(--header-height, 0px) - var(--announcement-bar-height, 0px) - 50px);
    padding-top: 48px;
    padding-bottom: 48px;
}

.mega-menu__columns-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--mega-menu-column-gap) / 2);

    /* gap: var(--mega-menu-column-gap); NOT YET FULLY SUPPORTED */
}

.mega-menu__column {
    margin: calc(var(--mega-menu-column-gap) / 2);
}

.mega-menu__images-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-gap: var(--mega-menu-image-gap);
    gap: var(--mega-menu-image-gap);
    align-items: flex-start;
}

.mega-menu__images-wrapper--tight {
    gap: 20px;
}

.mega-menu__image-push {
    width: 180px;
    text-align: center;
}

.mega-menu__image-push:only-child {
    width: 200px;
}

.mega-menu__image-wrapper {
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: var(--block-border-radius-reduced);
}

.mega-menu__image {
    border-radius: inherit; /* Needed for Safari to apply correctly the border radius */
}

.mega-menu__heading {
    margin-bottom: 7px;
}

.mega-menu__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2307692308;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.mega-menu__column > ul.linklist {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
    .mega-menu {
        --mega-menu-column-gap: 64px;
    }
}

@media screen and (min-width: 1400px) {
    .mega-menu {
        --mega-menu-column-gap: 80px;
        --mega-menu-image-gap: 40px;
    }

    .mega-menu__image-push {
        width: 240px;
    }

    .mega-menu__image-push:only-child {
        width: 280px;
    }
}

/** MOBILE MENU **/

.mobile-nav__item {
    display: flow-root;
}

.mobile-nav__item:not(:last-child) {
    border-bottom: 1px solid rgba(var(--text-color), 0.15);
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 21px 0;
    color: #fff;
}

.mobile-nav__image-heading {
    margin-bottom: 7px;
}

.mobile-nav__image-text {
    display: block;
}

.mobile-nav .collapsible {
    margin-right: calc(-1 * var(--container-gutter));
    margin-left: calc(-1 * var(--container-gutter));
}

/* Level 2 */

[dir='ltr'] .mobile-nav .mobile-nav {
    padding-left: 8px;
}

[dir='rtl'] .mobile-nav .mobile-nav {
    padding-right: 8px;
}

.mobile-nav .mobile-nav {
    margin-right: var(--container-gutter);
    margin-bottom: 24px !important; /* Sorry about the important, may me soul be in peace */
    margin-left: var(--container-gutter);
}

.mobile-nav .mobile-nav .mobile-nav__item {
    margin-bottom: 15px;
    border: none;
}

.mobile-nav .mobile-nav .mobile-nav__link {
    padding: 0;
}
/* Level 3 */

[dir='ltr'] .mobile-nav .mobile-nav .mobile-nav {
    border-left: 1px solid rgba(var(--text-color), 0.15);
}

[dir='rtl'] .mobile-nav .mobile-nav .mobile-nav {
    border-right: 1px solid rgba(var(--text-color), 0.15);
}

[dir='ltr'] .mobile-nav .mobile-nav .mobile-nav {
    padding-left: 20px;
}

[dir='rtl'] .mobile-nav .mobile-nav .mobile-nav {
    padding-right: 20px;
}

.mobile-nav .mobile-nav .mobile-nav {
    margin-top: 16px !important;
    margin-bottom: 10px !important;
}

.mobile-nav .mobile-nav .mobile-nav .mobile-nav__item {
    margin-bottom: 14px;
}

.mobile-nav .mobile-nav .mobile-nav .mobile-nav__item:last-child {
    margin-bottom: 0;
}

/* Mobile images */

[dir='ltr'] .mobile-nav + .mobile-nav__images-wrapper {
    padding-left: 8px;
}

[dir='rtl'] .mobile-nav + .mobile-nav__images-wrapper {
    padding-right: 8px;
}

.mobile-nav__images-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 12px;
    gap: 12px;
    width: fit-content;
    margin-bottom: 32px;
    padding-right: var(--container-gutter);
    padding-left: var(--container-gutter);
}

.mobile-nav__image-push {
    min-width: 120px;
    max-width: 134px;
    text-align: center;
}

.mobile-nav__image {
    display: block;
    margin-bottom: 14px;
    border-radius: min(var(--block-border-radius), 4px);
}

/* Footer */

.mobile-nav__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-with-text {
    /* Thanks to the ratio of the image and the height of the div we can calculate the height taken by the image */
    --image-height: min(var(--image-max-height), (100vw - var(--container-gutter) * 4) * (1 / var(--image-aspect-ratio)));

    position: relative;
    display: block;
    text-align: center;
}

[dir='ltr'] .image-with-text::before {
    left: 0;
}

[dir='rtl'] .image-with-text::before {
    right: 0;
}

.image-with-text::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--section-accent-background));
}

.image-with-text--overlap-image::before {
    height: var(--image-height);
}

.image-with-text--overlap-text::before {
    --image-height-difference: calc(100% - var(--image-height));
    --image-height-difference-abs: max(var(--image-height-difference), -1 * var(--image-height-difference));

    top: auto;
    bottom: 0;
    height: var(
        --image-height-difference-abs
    ); /* When we overlap the text we actually take the full height minus image height */
}

.image-with-text__image-wrapper {
    position: relative;
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    margin-bottom: 32px;
    border-radius: var(--block-border-radius-reduced);
}

.image-with-text__image {
    position: relative;
    display: block;
    width: 100%;
}

.image-with-text__image:not([hidden]) {
    z-index: 1;
}

/* Next images are resized to keep the format of the first image */
[dir='ltr'] .image-with-text__image:not(:first-child) {
    left: 0;
}

[dir='rtl'] .image-with-text__image:not(:first-child) {
    right: 0;
}

.image-with-text__image:not(:first-child) {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-with-text__image[hidden] {
    z-index: -1;
    visibility: hidden;
    transition: visibility 0.6s linear;
}

.image-with-text__wrapper {
    overflow: hidden;
}

/* We want to have the div to have the height of the tallest element, so we align them horizontally */
.image-with-text__content-list {
    display: flex;
    flex-wrap: nowrap;
}

.image-with-text__content {
    display: block;
    flex-shrink: 0;
    order: 0; /* Force the active to be the visible one */
    width: 100%;
}

.image-with-text__content[hidden] {
    order: 1;
    visibility: hidden;
}

.image-with-text__navigation {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    align-items: flex-start;
    margin-top: 40px;
}

@keyframes navigationItemAnimation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.image-with-text__navigation-item {
    position: relative;
}

.image-with-text__navigation-item::before,
.image-with-text__navigation-item::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 16px;
    background: rgba(var(--text-color), 0.15);
}

[dir='ltr'] .image-with-text__navigation-item::after {
    left: 0;
}

[dir='rtl'] .image-with-text__navigation-item::after {
    right: 0;
}

.image-with-text__navigation-item::after {
    position: absolute;
    top: 0;
    transform-origin: var(--transform-origin-start);
    transform: scaleX(0);
    background: rgb(var(--text-color));
}

.image-with-text__navigation-item[aria-current='true']::after {
    animation: navigationItemAnimation var(--section-autoplay-duration) linear;
    animation-play-state: var(--section-animation-play-state, running);
}

@media screen and (max-width: 999px) {
    /* Extra spacing just for the pocket devices */
    .image-with-text {
        padding: var(--vertical-breather) var(--container-gutter);
    }

    .image-with-text--boxed {
        padding: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .image-with-text {
        padding: var(--vertical-breather) calc((var(--grid-column-width) + var(--grid-gap)) * 2);
    }

    .image-with-text--boxed {
        padding: var(--vertical-breather) calc((var(--grid-column-width) + var(--grid-gap)) * 2 + var(--container-gutter));
    }

    .image-with-text__image-wrapper {
        margin-bottom: 48px;
    }
}

@media screen and (min-width: 1000px) {
    [dir='ltr'] .image-with-text::before {
        right: 0;
        left: auto;
    }

    [dir='rtl'] .image-with-text::before {
        right: auto;
        left: 0;
    }

    .image-with-text::before {
        top: 0;
        width: calc(var(--grid-column-width) * 13 + (var(--grid-gap) * 12) + var(--container-outer-margin));
        height: 100%;
    }

    [dir='ltr'] .image-with-text--reverse:not(.image-with-text--overlap-image)::before,
    [dir='ltr'] .image-with-text--overlap-image:not(.image-with-text--reverse)::before {
        right: auto;
        left: 0;
    }

    [dir='rtl'] .image-with-text--reverse:not(.image-with-text--overlap-image)::before,
    [dir='rtl'] .image-with-text--overlap-image:not(.image-with-text--reverse)::before {
        right: 0;
        left: auto;
    }

    .image-with-text--overlap-image::before {
        width: calc(var(--grid-column-width) * 7 + (var(--grid-gap) * 6) + var(--container-outer-margin));
    }

    .image-with-text--overlap-both::before {
        width: 100% !important; /* When it overlap both we force it to be 100% */
    }

    .image-with-text__wrapper {
        display: flex;
        align-items: center;
        padding: var(--vertical-breather) 0;
    }

    .image-with-text--reverse .image-with-text__wrapper {
        flex-direction: row-reverse;
    }

    [dir='ltr'] .image-with-text__image-wrapper {
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .image-with-text__image-wrapper {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .image-with-text__image-wrapper {
        width: calc(var(--grid-column-width) * 8 + (var(--grid-gap) * 7));
        margin-bottom: 0;
    }

    [dir='ltr'] .image-with-text--reverse .image-with-text__image-wrapper {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: 0;
    }

    [dir='rtl'] .image-with-text--reverse .image-with-text__image-wrapper {
        margin-right: 0;
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .image-with-text__content-wrapper {
        width: calc(var(--grid-column-width) * 9 + (var(--grid-gap) * 8));
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1200px) {
    .image-with-text__navigation {
        column-gap: 40px;
        margin-top: 48px;
    }
}

@media screen and (min-width: 1400px) {
    [dir='ltr'] .image-with-text__content-wrapper {
        margin-right: calc((var(--grid-column-width) + var(--grid-gap)) * 2);
    }

    [dir='rtl'] .image-with-text__content-wrapper {
        margin-left: calc((var(--grid-column-width) + var(--grid-gap)) * 2);
    }

    .image-with-text__content-wrapper {
        width: calc(var(--grid-column-width) * 7 + (var(--grid-gap) * 6));
    }
}

.image-with-text-block {
    display: block;
}

.image-with-text-block__image-wrapper {
    overflow: hidden;
    background: rgb(var(--secondary-background)); /* Act as a filler */
}

.image-with-text-block__content {
    padding: 48px 24px;
    background-color: rgb(var(--section-block-background));
    border-radius: var(--block-border-radius);
}

.image-with-text-block__text-container {
    margin-top: 24px;
}

@media screen and (max-width: 999px) {
    .image-with-text-block__content {
        width: auto;
    }

    .image-with-text-block--overlap-left .image-with-text-block__content,
    .image-with-text-block--overlap-right .image-with-text-block__content {
        margin: calc(-1 * var(--container-gutter)) var(--container-gutter) 0;
        padding: 40px;
    }

    .image-with-text-block:not(.image-with-text-block--overlap-left, .image-with-text-block--overlap-right)
        .image-with-text-block__content {
        border-radius: 0;
    }

    /* Cover variation: on this mode, the image will still cover the image. There is a bit of duplication of
     code but I could not find cleaner way */
    .image-with-text-block--cover {
        position: relative;
        display: flex;
        align-items: center;
    }

    [dir='ltr'] .image-with-text-block--cover .image-with-text-block__image-wrapper {
        left: 0;
    }

    [dir='rtl'] .image-with-text-block--cover .image-with-text-block__image-wrapper {
        right: 0;
    }

    .image-with-text-block--cover .image-with-text-block__image-wrapper {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .image-with-text-block--cover .image-with-text-block__image {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .image-with-text-block--cover .image-with-text-block__content {
        margin: var(--vertical-breather) var(--container-gutter);
        padding: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .image-with-text-block--cover .image-with-text-block__content {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 741px) {
    .image-with-text-block__content {
        padding-right: 48px;
        padding-left: 48px;
    }
}

@media screen and (min-width: 1000px) {
    .image-with-text-block {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 500px;
    }

    [dir='ltr'] .image-with-text-block__image-wrapper {
        left: 0;
    }

    [dir='rtl'] .image-with-text-block__image-wrapper {
        right: 0;
    }

    .image-with-text-block__image-wrapper {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

    [dir='ltr'] .image-with-text-block__image {
        left: 0;
    }

    [dir='rtl'] .image-with-text-block__image {
        right: 0;
    }

    .image-with-text-block__image {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .image-with-text-block__content {
        margin-top: var(--vertical-breather);
        margin-bottom: var(--vertical-breather);
    }

    /* Overlap variation */

    .image-with-text-block--overlap-right .image-with-text-block__image-wrapper,
    .image-with-text-block--overlap-left .image-with-text-block__image-wrapper {
        width: calc(var(--grid-column-width) * 14 + (var(--grid-gap) * 13) + var(--container-outer-margin));
    }

    [dir='ltr'] .image-with-text-block--overlap-left .image-with-text-block__image-wrapper {
        right: 0;
    }

    [dir='rtl'] .image-with-text-block--overlap-left .image-with-text-block__image-wrapper {
        left: 0;
    }

    [dir='ltr'] .image-with-text-block--overlap-left .image-with-text-block__image-wrapper {
        left: auto;
    }

    [dir='rtl'] .image-with-text-block--overlap-left .image-with-text-block__image-wrapper {
        right: auto;
    }
}

@media screen and (min-width: 1200px) {
    .image-with-text-block {
        min-height: 700px;
    }

    .image-with-text-block--small {
        min-height: 400px;
    }

    .image-with-text-block__content:not(.image-with-text-block__content--tight) {
        padding: 64px;
    }
}

.image-overlay {
    --image-height: auto;

    position: relative;
    display: flex;
    min-height: var(--image-height);
    color: rgb(var(--text-color));
    background: rgb(var(--section-overlay-color));
}

.image-overlay--small {
    --image-height: 375px;
}

.image-overlay--medium {
    --image-height: 500px;
}

.image-overlay--large {
    --image-height: 600px;
}

.image-overlay::before {
    content: '';
    display: block;
    width: 0;
    padding-bottom: calc(100% / var(--mobile-image-aspect-ratio));
}

@media screen and (min-width: 1000px) {
    .image-overlay::before {
        padding-bottom: calc(100% / var(--image-aspect-ratio));
    }
}

[dir='ltr'] .image-overlay__image-wrapper::after {
    left: 0;
}

[dir='rtl'] .image-overlay__image-wrapper::after {
    right: 0;
}

.image-overlay__image-wrapper::after {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--section-overlay-color), var(--section-overlay-opacity));
}

[dir='ltr'] .image-overlay__image-wrapper,
[dir='ltr'] .image-overlay__image {
    left: 0;
}

[dir='rtl'] .image-overlay__image-wrapper,
[dir='rtl'] .image-overlay__image {
    right: 0;
}

.image-overlay__image-wrapper,
.image-overlay__image {
    position: absolute;
    z-index: 1;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-overlay__image {
    object-fit: cover;
    object-position: center;
}

.image-overlay__image--placeholder {
    background: rgb(var(--background));
}

.image-overlay__icon {
    display: inline-block;
    align-items: center;
}

.image-overlay__icon-img {
    display: inline-block !important;

    /* margin-bottom: 4.2%; */
}

.image-overlay__icon--left {
    display: flex;
    flex-direction: row;
}

.image-overlay__icon--right {
    display: flex;
    flex-direction: row;
}

.image-overlay__icon--right .image-overlay__icon-img {
    order: 1;
}

.image-overlay__icon--above {
    display: block;
}

.image-overlay__content-wrapper {
    position: relative;
    display: flex;
    align-items: var(--section-items-alignment);
    width: 100%;
    height: 100%;

    /* justify-content: center; */

    /* padding: var(--vertical-breather) 0; */
}

.image-overlay__content-wrapper {
    align-items: var(--section-items-alignment-desktop);
}

.image-overlay__text-container {
    display: inline-block;
}

.image-overlay__text-container .button-wrapper:only-child {
    margin-top: 32px; /* We add an exception here to compensate the margin */
}

@media screen and (min-width: 741px) {
    .image-overlay--small {
        --image-height: 400px;
    }

    .image-overlay--medium {
        --image-height: 550px;
    }

    .image-overlay--large {
        --image-height: 700px;
    }
}

/* This section describe the main list of collections used on list of collections */

.list-collections {
    position: relative;
    display: block;
}

.list-collections__item-list {
    display: grid;
    grid-gap: 24px;
    gap: 24px;
    align-items: center;
}

.list-collections__item {
    --heading-color: 255, 255, 255;
    --text-color: 255, 255, 255;

    position: relative;
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    display: block;
    text-align: center;
    background: rgb(var(--secondary-background)); /* We fill with the secondary background */
    border-radius: var(--block-border-radius-reduced);
}

.list-collections__item.image-zoom {
    will-change: transform;
}

.list-collections__item:hover .link {
    text-decoration-color: rgb(
        var(--text-color)
    ); /* Make sure that the underlined link is in active state on hover of the whole block */
}

.list-collections__item-image-wrapper {
    position: relative;
    height: 100%;
}

.list-collections__item.has-overlay .list-collections__item-image-wrapper::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--section-block-overlay, 0, 0, 0), var(--section-block-overlay-opacity, 0.2));
}

.list-collections__item-image {
    width: 100%;
    height: 100%;
    min-height: 120px; /* Ensure enough space for text */
    object-fit: cover;
    object-position: center;
}

.list-collections__item-info {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
}

@media screen and (min-width: 741px) {
    .list-collections__item-list {
        grid-gap: var(--container-gutter);
        grid-template-columns: repeat(auto-fit, calc(100% / 3 - var(--container-gutter) * 2 / 3));
        justify-content: safe center;
    }
}

@media screen and (min-width: 1000px) {
    .list-collections__item-info {
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

/* Collage variation */

@media screen and (min-width: 741px) {
    .list-collections--collage {
        --list-collections-collage-rows-height: 220px;
    }

    .list-collections--collage .list-collections__item-list {
        grid-auto-flow: dense;
        grid-auto-rows: var(--list-collections-collage-rows-height);
        grid-template-columns: repeat(var(--section-collage-column), 1fr);
    }

    .list-collections--collage .list-collections__item:only-child {
        width: 590px;
        margin-right: auto;
        margin-left: auto;
    }

    .list-collections--collage .list-collections__item {
        height: 100%;
    }

    .list-collections--collage .list-collections__item--highlight {
        grid-row: auto / span 2;
    }

    .list-collections--collage .list-collections__item--shift {
        grid-column: 2;
    }
}

@media screen and (min-width: 1000px) {
    .list-collections--collage {
        --list-collections-collage-rows-height: 250px;
    }

    .list-collections--collage .list-collections__item-list {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }
}

@media screen and (min-width: 1200px) {
    .list-collections--collage {
        --list-collections-collage-rows-height: 300px;
    }
}

@media screen and (min-width: 1400px) {
    .list-collections--collage {
        --list-collections-collage-rows-height: 350px;
    }
}

/* Carousel (scroller) variation */

.list-collections__scroller {
    scroll-snap-type: x mandatory;
    overflow: auto;
    display: block;
}

.list-collections--carousel .list-collections__item-list {
    grid-auto-columns: 80vw;
    grid-auto-flow: column;
    grid-template-columns: none;
    width: min-content;
    min-width: 100%;
    padding: 0 var(--container-gutter);
}

.list-collections--carousel .list-collections__item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

@media screen and (min-width: 741px) {
    .list-collections--carousel .list-collections__item-list {
        grid-auto-columns: 60vw;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    /* Just on tablet, the designer wants to have the collections bigger on grid mode and use a carousel mode, so we have
   to do a specific exception just for tablet size. This unfortunately cause code duplication :( */

    .list-collections--grid .container {
        scrollbar-width: none; /* For Firefox */
        scroll-snap-type: x mandatory;
        overflow: auto;
        display: block;
        padding-right: 0;
        padding-left: 0;
    }

    .list-collections--grid .container::-webkit-scrollbar {
        display: none;
    }

    .list-collections--grid .list-collections__item-list {
        grid-auto-columns: 60vw;
        grid-auto-flow: column;
        grid-template-columns: none;
        width: min-content;
        min-width: 100%;
        padding: 0 var(--container-gutter);
    }

    .list-collections--grid .list-collections__item {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

@media screen and (min-width: 1000px) {
    .list-collections__scroller {
        /* overflow: hidden; Uncomment this line if you just want scroll to be done in JS with arrows */
        scroll-snap-type: none;
    }

    .list-collections--carousel .list-collections__item-list {
        grid-auto-columns: 23vw;
        padding-right: var(--container-outer-margin);
        padding-left: var(--container-outer-margin);
    }

    [dir='ltr'] .list-collections__scroller.is-scrollable .list-collections__item-list {
        padding-right: calc(var(--container-outer-margin) + 28px);
    }

    [dir='rtl'] .list-collections__scroller.is-scrollable .list-collections__item-list {
        padding-left: calc(var(--container-outer-margin) + 28px);
    }

    .list-collections__scroller.is-scrollable .list-collections__item-list {
        /* 28px is half the width of arrows */
    }

    [dir='ltr'] .list-collections__prev-next {
        right: var(--container-outer-width);
    }

    [dir='rtl'] .list-collections__prev-next {
        left: var(--container-outer-width);
    }

    .list-collections__prev-next {
        position: absolute;
        z-index: 1;
        top: calc(50% - 56px); /* 56px is the height of a single button */
        display: none;
    }

    .list-collections__scroller.is-scrollable + .list-collections__prev-next {
        display: block;
    }

    .list-collections__arrow:last-child {
        border-top: none;
    }
}

.logo-list {
    position: relative;
    display: block;
}

.logo-list__list {
    --logos-per-row: 2;
    --logos-gap: 8px;

    display: grid;
    grid-gap: var(--logos-gap);
    grid-template-columns: repeat(min(var(--logos-per-row), var(--section-logo-count)), minmax(140px, 200px));
    gap: var(--logos-gap);
    justify-content: center;
}

.logo-list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgb(var(--section-logo-background));
    border-radius: var(--block-border-radius-reduced);
}

.logo-list__image--placeholder {
    height: 100px;
}

@media screen and (max-width: 999px) {
    /* Carousel variation */
    .logo-list--carousel .logo-list__list {
        grid-auto-columns: 140px;
        grid-auto-flow: column;
        grid-template-columns: none;
    }

    .logo-list--grid {
        padding-right: var(--container-gutter); /* We add extra internal spacing on pocket */
        padding-left: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) {
    .logo-list__list {
        --logos-per-row: 3;
        --logos-gap: 16px;
    }

    /* Scroller variation */
    .logo-list--carousel .logo-list__list {
        grid-auto-columns: 185px;
    }
}

@media screen and (min-width: 1000px) {
    .logo-list__list {
        --logos-per-row: 6;
        --logos-gap: 24px;
    }

    /* On desktop, the scroller mode is only visible if we have the arrows, independently of the selected settings */

    .logo-list__prev-next {
        pointer-events: none;
        position: absolute;
        top: calc(50% - 28px); /* 28px is half the height of the button */
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .logo-list--carousel .logo-list__prev-next + .logo-list__list {
        overflow: hidden; /* We will scroll in JS */
        grid-auto-columns: calc(
            100% / var(--logos-per-row) - (var(--logos-gap) / var(--logos-per-row) * (var(--logos-per-row) - 1))
        );
        grid-auto-flow: column;
        grid-template-columns: none;
        justify-content: flex-start;
        margin-right: calc(
            56px + 32px
        ); /* 56px is the width of arrows and 32px the extra space we add between arrows and logos */

        margin-left: calc(56px + 32px);
    }

    .logo-list__arrow {
        transform: scale(0.5);
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 0.15s ease-in-out,
            visibility 0.15s ease-in-out,
            transform 0.15s ease-in-out;
    }

    .logo-list__arrow:not([disabled]) {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (min-width: 1200px) {
    .logo-list--grid {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }
}

.multi-column {
    --multi-column-row-gap: 32px;
    --multi-column-column-gap: 24px;
    --section-items-per-row: 2;
    --item-width: calc(
        var(--container-inner-width) / var(--section-items-per-row) -
            (var(--multi-column-column-gap) / var(--section-items-per-row) * (var(--section-items-per-row) - 1))
    );

    position: relative;
    display: block;
}

.multi-column--spacing-tight {
    --multi-column-column-gap: 12px;
}

.multi-column--spacing-loose {
    --multi-column-column-gap: 32px;
}

.multi-column--pocket-medium,
.multi-column--pocket-large {
    --section-items-per-row: 1;
}

.multi-column__inner {
    display: grid;
    grid-gap: var(--multi-column-row-gap) var(--multi-column-column-gap);
    grid-template-columns: repeat(auto-fit, var(--item-width));
    gap: var(--multi-column-row-gap) var(--multi-column-column-gap);
    justify-content: safe center;
    margin: 0;
    padding: 0 0 2px;
    text-indent: 0;
    list-style-type: none;
}

.multi-column__inner--left {
    justify-content: safe start;
}

.multi-column__inner--right {
    justify-content: safe end;
}

.multi-column__inner--scroller {
    grid-auto-flow: column;
    grid-template-columns: none !important;
}

.multi-column__item--align-center {
    align-self: center;
}

.multi-column__item--align-end {
    align-self: end;
}

.multi-column__image-wrapper {
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    display: block;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    border-radius: min(8px, var(--block-border-radius));
}

.multi-column__image-wrapper:only-child {
    margin-bottom: 0;
}

.multi-column__image {
    width: 100%;
}

@media screen and (max-width: 999px) {
    .multi-column__inner--scroller {
        min-width: min-content;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

@media screen and (max-width: 740px) {
    /* On mobile, for the scroller we use fixed width based on viewport size */
    .multi-column__inner--scroller {
        grid-auto-columns: 25vw;
    }

    .multi-column--pocket-medium .multi-column__inner--scroller {
        grid-auto-columns: 35vw;
    }

    .multi-column--pocket-large .multi-column__inner--scroller {
        grid-auto-columns: 56vw;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .multi-column--pocket-small {
        --section-items-per-row: 5;
    }

    .multi-column--pocket-medium {
        --section-items-per-row: 4;
    }

    .multi-column--pocket-large {
        --section-items-per-row: 3;
    }

    /* On mobile, for the scroller we use fixed width based on viewport size */
    .multi-column__inner--scroller {
        grid-auto-columns: 20vw;
    }

    .multi-column--pocket-medium .multi-column__inner--scroller {
        grid-auto-columns: 26vw;
    }

    .multi-column--pocket-large .multi-column__inner--scroller {
        grid-auto-columns: 36vw;
    }
}

@media screen and (min-width: 741px) {
    .multi-column--spacing-normal {
        --multi-column-row-gap: 40px;
    }

    .multi-column--spacing-loose {
        --multi-column-row-gap: 48px;
        --multi-column-column-gap: 32px;
    }
}

@media screen and (min-width: 1000px) {
    .multi-column--spacing-normal {
        --multi-column-column-gap: 40px;
    }

    .multi-column--spacing-tight {
        --multi-column-column-gap: 24px;
    }

    .multi-column--spacing-loose {
        --multi-column-column-gap: 60px;
    }

    .multi-column--pico {
        --section-items-per-row: 6;
    }

    .multi-column--small {
        --section-items-per-row: 5;
    }

    .multi-column--medium {
        --section-items-per-row: 4;
    }

    .multi-column--large {
        --section-items-per-row: 3;
    }

    .multi-column__inner--scroller {
        overflow: hidden;
        grid-auto-columns: var(--item-width);
    }

    .multi-column__inner:not(.is-scrollable) + .multi-column__prev-next {
        display: none;
    }

    .multi-column__image-wrapper {
        margin-bottom: 24px;
    }

    .multi-column__prev-next {
        pointer-events: none;
        position: absolute;
        top: calc(
            var(--item-width) / var(--smallest-image-aspect-ratio) / 2 - 28px
        ); /* 28px is half the height of the button */

        left: 28px;
        display: flex;
        justify-content: space-between;
        width: calc(100% - 56px);
    }

    .multi-column__prev-next--no-image {
        top: calc(50% - 28px); /* 28px is half the height of the button */
    }

    .multi-column__arrow {
        z-index: 1;
        transform: scale(0.5);
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 0.15s ease-in-out,
            visibility 0.15s ease-in-out,
            transform 0.15s ease-in-out;
    }

    .multi-column:hover .multi-column__arrow:not([disabled]) {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (min-width: 1200px) {
    .multi-column--pico {
        --section-items-per-row: 8;
    }

    .multi-column--small {
        --section-items-per-row: 7;
    }

    .multi-column--medium {
        --section-items-per-row: 5;
    }
}

@media screen and (pointer: fine) {
    .multi-column__item:hover .multi-column__link {
        text-decoration-color: rgb(var(--text-color));
    }
}

@media not screen and (pointer: fine) {
    .multi-column__arrow:not([disabled]) {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

.multi-column .heading {
    margin-bottom: 1rem !important;
    font-family: 'Helvetica Neue';
}

.newsletter__form {
    margin-top: 32px;
}

.newsletter__form .input-row {
    grid-template-columns: none; /* As the newsletter box is small there is not enough space to fit on smaller screens */
}

@media screen and (min-width: 1200px) {
    .newsletter__form .input-row {
        grid-template-columns: 1fr auto; /* Small variation for this section */
    }
}

.newsletter-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-modal__image {
    object-fit: cover;
    object-position: center;
}

.newsletter-modal__content {
    width: 100%;
    padding: 32px 24px 40px;
}

.newsletter-modal__content--extra {
    padding-top: 40px; /* If there is an image the close button is within the text so we have to increase the padding */
}

@media screen and (max-width: 740px) {
    .newsletter-modal {
        max-height: inherit;
    }

    .newsletter-modal__image {
        max-height: 200px;
    }

    .newsletter-modal__content {
        overflow: auto;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .newsletter-modal__image {
        max-height: 350px;
    }
}

@media screen and (min-width: 741px) {
    .newsletter-modal__content {
        padding: 60px;
    }
}

@media screen and (min-width: 1000px) {
    .newsletter-modal {
        flex-direction: row;
    }

    .newsletter-modal--reverse {
        flex-direction: row-reverse;
    }

    .newsletter-modal__image,
    .newsletter-modal__content {
        flex: 1 0 0;
        min-width: 500px;
        max-width: 500px;
    }

    .newsletter-modal__content {
        padding: 80px;
    }
}

.password {
    color: rgb(var(--text-color));
    background: rgb(var(--section-background));
}

.password__logo {
    margin-bottom: 0;
}

.password__logo-image {
    display: block;
}

.password__main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-right: 48px;
    padding-left: 48px;
    text-align: center;
}

@supports (--css: variables) {
    .password__main {
        min-height: var(--window-height, 100vh);
    }
}

.password__content {
    width: 100%;
    max-width: 390px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.password__storefront-login {
    display: block;
    margin-top: 20px;
}

[dir='ltr'] .password__storefront-login svg {
    margin-right: 12px;
}

[dir='rtl'] .password__storefront-login svg {
    margin-left: 12px;
}

.password__storefront-login svg {
    vertical-align: sub;
}

.password__storefront-form {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
}

.password__newsletter {
    margin-top: 24px;
}

[dir='ltr'] .password__shopify-logo svg {
    margin-left: 12px;
}

[dir='rtl'] .password__shopify-logo svg {
    margin-right: 12px;
}

.password__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password__powered-by {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 999px) {
    .password__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        object-fit: cover;
        object-position: center;
        filter: grayscale(1);
    }

    .password__newsletter-form .input__label {
        background: transparent;
    }

    .password__newsletter-form :focus-within ~ .input__label,
    .password__newsletter-form .is-filled ~ .input__label {
        background: rgb(var(--section-background));
    }

    .password__admin-link {
        padding-top: 8px;
    }

    .password__storefront-form {
        position: relative;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        padding: 62px 48px 48px;
        background: inherit;
        border-radius: 10px 10px 0 0;
    }
}

@media screen and (min-width: 741px) {
    .password__copyright {
        flex-direction: row;
    }

    .password__newsletter {
        margin-top: 32px;
    }

    .password__storefront-login {
        margin-top: 28px;
    }

    .password__shopify-logo svg {
        width: 98px;
        height: 28px;
    }

    [dir='ltr'] .password__admin-link {
        padding-left: 18px;
    }

    [dir='rtl'] .password__admin-link {
        padding-right: 18px;
    }
}

@media screen and (min-width: 1000px) {
    .password {
        display: grid;
        grid-auto-columns: 50%;
        grid-auto-flow: column;
        justify-content: center;
    }

    .password__image {
        height: 100%;
        max-height: 100vh;
        object-fit: cover;
        object-position: center;
    }
}

.predictive-search__form {
    display: flex;
    align-items: center;
}

[dir='ltr'] .predictive-search__input {
    margin-left: 8px;
}

[dir='rtl'] .predictive-search__input {
    margin-right: 8px;
}

.predictive-search__input {
    min-width: 300px;
    padding: 0;
    appearance: none;
    background: transparent;
    border: none;
    box-shadow: none;
}

.predictive-search__input::placeholder {
    color: rgba(var(--text-color), 0.7);
    transition: color 0.2s ease-in-out;
}

.header__search-bar .predictive-search__input::placeholder {
    color: rgba(var(--header-text-color), 0.8);
}

.predictive-search .tabs-nav,
.predictive-search__menu-list {
    padding-top: 24px;
}

.predictive-search__menu + .predictive-search__menu {
    padding-top: 40px;
}

.predictive-search__menu-title {
    margin-bottom: 16px;
}

/* Product */

.predictive-search__product-item:first-child .line-item__content-wrapper {
    margin-top: 0;
}

.predictive-search__product-item {
    position: relative;
}
.predictive-search__content-wrapper .predictive-search__product-item,
.predictive-search__content-wrapper .tabs-nav__scroller-inner {
    text-align: left;
}
.predictive-search__product-item svg {
    position: absolute;
    top: calc(50% - 7px);
    right: 0;
    transform: translateX(calc(var(--transform-logical-flip) * min(var(--container-gutter), 30px)));
    opacity: 0;
    transition:
        opacity 0.2s ease-in-out,
        transform 0.2s ease-in-out;
}

@media screen and (pointer: fine) {
    .predictive-search__product-item:hover svg {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Linklist */

.predictive-search__linklist {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
}

.predictive-search__linklist--narrow {
    max-width: 390px;
}

.predictive-search__linklist--bordered {
    border-top: 1px solid rgb(var(--border-color));
    border-bottom: 1px solid rgb(var(--border-color));
}

.predictive-search__linklist-item {
    border-top: 1px solid rgb(var(--border-color));
}

.predictive-search__linklist-item:first-child {
    border-top: none;
}

.predictive-search__linklist-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.predictive-search__linklist-link svg {
    transform: translateX(calc(var(--transform-logical-flip) * min(var(--container-gutter), 30px)));
    opacity: 0;
    transition:
        opacity 0.2s ease-in-out,
        transform 0.2s ease-in-out;
}

@media screen and (pointer: fine) {
    .predictive-search__linklist-link:hover svg {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Blog post */

.predictive-search__article-item + .predictive-search__article-item {
    margin-top: 24px;
}

[dir='ltr'] .predictive-search__article-image-wrapper {
    margin-right: 18px;
}

[dir='rtl'] .predictive-search__article-image-wrapper {
    margin-left: 18px;
}

.predictive-search__article-image-wrapper {
    position: relative;
    display: block;
    flex: none;
    width: 100px;
}

.predictive-search__article-category {
    margin-bottom: 8px;
}

@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 740px) {
        /* On iOS, when the keyboard is visible it does not contribute to the size of the viewport, so do not center on iOS */
        .predictive-search .drawer__content--center {
            margin-top: 150px;
        }
    }
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .predictive-search__input {
        margin-left: 12px;
    }

    [dir='rtl'] .predictive-search__input {
        margin-right: 12px;
    }

    .predictive-search .tabs-nav,
    .predictive-search__menu-list {
        padding-top: 32px;
    }

    .predictive-search__article-image-wrapper {
        width: 140px;
    }
}

.mini-cart.drawer,
.mini-cart.drawer .drawer__header,
.mini-cart.drawer .drawer__footer,
.predictive-search.drawer,
.predictive-search.drawer .drawer__header,
.predictive-search.drawer .drawer__footer {
    background: #fff;
}

.mini-cart.drawer .drawer__footer::before,
.predictive-search.drawer .drawer__footer::before {
    display: none;
}

.mini-cart .price,
.mini-cart .text--subdued,
.mini-cart .drawer__title,
.mini-cart.drawer .product-item-meta,
.mini-cart.drawer .predictive-search__form,
.mini-cart.drawer .predictive-search__content-wrapper,
.predictive-search.drawer .product-item-meta,
.predictive-search.drawer .predictive-search__form,
.predictive-search.drawer .predictive-search__content-wrapper {
    color: rgb(25 25 25);
}

.mini-cart.drawer .drawer__header,
.predictive-search.drawer .drawer__header {
    border-bottom: 1px solid rgba(var(--text-color), 0.75);
}

.mini-cart.drawer .predictive-search__input::placeholder,
.predictive-search.drawer .predictive-search__input::placeholder {
    color: rgb(25 25 25 / 80%);
}

.press-list {
    display: block;
    text-align: center;
}

.press-list__wrapper {
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
}

.press-list__item {
    display: block;
    flex-shrink: 0;
    order: 0;
    width: 100%;
}

.press-list__item[hidden] {
    order: 1;
    visibility: hidden;
}

.press-list__logo-list {
    display: inline-grid;
    grid-auto-flow: column;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.press-list__logo-item {
    opacity: 0.3;
    transition: opacity 0.2s ease-in-out;
}

.press-list__logo-item[aria-current='true'] {
    opacity: 1;
}

.press-list__logo-image {
    vertical-align: middle;
}

@media screen and (max-width: 999px) {
    .press-list__logo-list-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    .press-list__logo-list {
        margin-right: var(--container-gutter);
        margin-left: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) {
    .press-list__logo-list {
        gap: 80px;
        margin-top: 48px;
    }
}

/*
 * MAIN LAYOUT
 */

@media screen and (max-width: 999px) {
    .section:has(.product) {
        padding-top: 0;
    }
}

@media screen and (min-width: 1000px) {
    .product {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .product__media {
        --product-media-width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 10);

        width: var(--product-media-width);
    }

    .product__info {
        --product-info-width: calc(var(--grid-column-width) * 9 + var(--grid-gap) * 8);

        flex: none;
        width: var(--product-info-width);
    }

    .product__info:only-child {
        margin-right: auto; /* Allows to center if this is the only child */
        margin-left: auto;
    }
}

@media screen and (min-width: 1200px) {
    .product {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .product__media {
        --product-media-width: calc(var(--grid-column-width) * 9 + var(--grid-gap) * 9);
    }

    .product__info {
        --product-info-width: calc(var(--grid-column-width) * 8 + var(--grid-gap) * 7);
    }
}

@media screen and (min-width: 1400px) {
    .product__media {
        --product-media-width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 10);
    }

    .product__info {
        --product-info-width: calc(var(--grid-column-width) * 7 + var(--grid-gap) * 6);
    }

    .product--thumbnails-bottom .product__media {
        --product-media-width: calc(var(--grid-column-width) * 9 + var(--grid-gap) * 8);
    }

    .product--thumbnails-bottom .product__info {
        --product-info-width: calc(var(--grid-column-width) * 8 + var(--grid-gap) * 7);
    }
}

/*
 * PRODUCT MEDIA PART
 */

.product__media {
    display: block;
}

.product__media-list-wrapper {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.product__media-list,
.product__media-item {
    display: block;
    min-width: 100%;
    text-align: center;
}

.product__media-item {
    width: 100%;
}

.product__media-list:not(.flickity-enabled) .product__media-item:not(.is-selected),
.product__media .is-filtered {
    display: none;
}

.product__media-image-wrapper {
    z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
    overflow: hidden;
    background: rgb(var(--secondary-background)); /* Act as a placeholder until image is loaded */
    border-radius: var(--block-border-radius-reduced);
}

.product__media-nav {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.product__thumbnail-scroll-shadow {
    max-width: 100%;
}

.product__thumbnail-list {
    position: relative;
}

.product__thumbnail-list-inner {
    display: grid;
    grid-auto-flow: column;
    align-items: start;
}

.product__thumbnail-item {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 2px;
    -webkit-tap-highlight-color: transparent;
}

.product__thumbnail {
    position: relative;
    width: 76px;
    min-width: 76px;
    padding: 2px;
}

.product__thumbnail,
.product__thumbnail > img {
    border-radius: min(var(--block-border-radius), 4px);
}

.product__thumbnail .placeholder-background {
    display: block;
}

[dir='ltr'] .product__thumbnail::after {
    left: 0;
}

[dir='rtl'] .product__thumbnail::after {
    right: 0;
}

.product__thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    transform: scale(0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 2px rgb(var(--text-color));
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.product__thumbnail-item[aria-current] .product__thumbnail::after {
    transform: scale(1);
    opacity: 1;
}

[dir='ltr'] .product__thumbnail-badge {
    right: 4px;
}

[dir='rtl'] .product__thumbnail-badge {
    left: 4px;
}

.product__thumbnail-badge {
    position: absolute;
    top: 4px;
}

.product__view-in-space {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

[dir='ltr'] .product__view-in-space svg {
    margin-right: 14px;
}

[dir='rtl'] .product__view-in-space svg {
    margin-left: 14px;
}

.product__view-in-space[data-shopify-xr-hidden] {
    visibility: hidden;
}

[dir='ltr'] .product__zoom-button {
    right: 16px;
}

[dir='rtl'] .product__zoom-button {
    left: 16px;
}

.product__zoom-button {
    position: absolute;
    z-index: 1;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgb(var(--root-text-color));
    background: rgb(var(--root-background));
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--button-border-radius);
    transition:
        opacity 0.25s ease-in-out,
        visibility 0.25s ease-in-out,
        transform 0.25s ease-in-out,
        color 0.25s ease-in-out;
}

.product__zoom-button[hidden] {
    transform: scale(0.4);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 999px) {
    .product__media-list {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    .product__media-item {
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }

    .product__media-nav .dots-nav {
        padding-right: 20px;
        padding-left: 20px;
    }

    .product__thumbnail-list {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    .product__thumbnail-list-inner {
        width: max-content;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

@media screen and (min-width: 1000px) {
    .product__view-in-space {
        display: none; /* We do not show that button on desktop */
    }

    .product__media-nav {
        margin-top: 16px;
    }

    .product__thumbnail-scroll-shadow {
        --scroll-shadow-size: 65px;
        --scroll-shadow-right: linear-gradient(to left, rgb(var(--background)), rgba(var(--background), 0));
        --scroll-shadow-left: linear-gradient(to right, rgb(var(--background)), rgba(var(--background), 0));
        --scroll-shadow-bottom: linear-gradient(to top, rgb(var(--background)), rgba(var(--background), 0));
        --scroll-shadow-top: linear-gradient(to bottom, rgb(var(--background)), rgba(var(--background), 0));
    }

    .product__thumbnail-list {
        overflow: hidden;
    }

    .product__thumbnail-list-inner {
        gap: 8px;
    }

    .product__thumbnail {
        width: 64px;
        min-width: 64px;
    }

    /* Thumbnails left variation */
    .product--thumbnails-left .product__media {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .product--thumbnails-left .product__media-nav {
        align-items: flex-start;
        margin-top: 0;
    }

    .product--thumbnails-left .product__media-list-wrapper {
        flex-grow: 1;
    }

    .product--thumbnails-left .product__media-prev-next {
        transform: rotate(90deg) scale(var(--scale-factor));
    }

    [dir='ltr'] .product--thumbnails-left .product__thumbnail-list {
        margin-right: 36px;
    }

    [dir='rtl'] .product--thumbnails-left .product__thumbnail-list {
        margin-left: 36px;
    }

    .product--thumbnails-left .product__thumbnail-list {
        max-height: calc((var(--product-media-width) - 136px) / var(--largest-image-aspect-ratio));
    }

    .product--thumbnails-left .product__thumbnail-list-inner {
        grid-auto-flow: row;
    }

    .product--thumbnails-left .product__thumbnail {
        width: 60px;
        min-width: 60px;
    }
}

@media screen and (min-width: 1400px) {
    [dir='ltr'] .product__media {
        padding-left: 36px;
    }

    [dir='rtl'] .product__media {
        padding-right: 36px;
    }
}

@media screen and (pointer: fine) {
    .product__zoom-button:hover {
        color: rgba(var(--text-color), 0.7);
    }
}

/*
 * PRODUCT META
 */

.product-meta {
    display: block;
    margin: 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(var(--border-color));
}

.product-meta__price-list-container {
    display: flex;
    align-items: center;
    margin-top: -8px;
}

[dir='ltr'] .product-meta__label-list:not(:empty) {
    margin-left: 16px;
}

[dir='rtl'] .product-meta__label-list:not(:empty) {
    margin-right: 16px;
}

.product-meta__reference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.product-meta__sku {
    position: relative;
    top: 1px;
    letter-spacing: 0.45px;
}

.product-meta__taxes-included {
    margin-top: 0;
}

.product-meta__aside {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.product-meta__share {
    display: flex;
    align-items: center;
}

[dir='ltr'] .product-meta__share-label {
    margin-right: 20px;
}

[dir='rtl'] .product-meta__share-label {
    margin-left: 20px;
}

.product-meta__share-button-list {
    display: inline-grid;
    grid-auto-flow: column;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
}

.product-meta__reviews-badge .rating__caption {
    position: relative;
}

.product-meta__reviews-badge .rating__caption::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    transform-origin: var(--transform-origin-end);
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 0.3s;
}

@media screen and (min-width: 1000px) {
    .product-meta {
        margin-top: 0;
    }

    .product-meta__title {
        margin-bottom: 24px;
    }
}

.product-meta__title sup {
    position: relative;
    top: -1.5em;
    left: 0.1rem;
    font-size: 40%;
    line-height: 0;
    vertical-align: baseline;
    opacity: 1;
}

@media screen and (pointer: fine) {
    .product-meta__reviews-badge:hover .spr-badge-caption::after,
    .product-meta__reviews-badge:hover .rating__caption::after {
        transform-origin: var(--transform-origin-start);
        transform: scaleX(1);
    }
}

/*
 * PRODUCT FORM
 */

.product-form {
    display: grid;
    grid-row-gap: 16px;
    row-gap: 16px;
}

.product-form__variants {
    display: block;
}

.product-form__option-info,
.product-form__quantity-label {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 8px;
}

[dir='ltr'] .product-form__option-value {
    margin-left: 8px;
}

[dir='rtl'] .product-form__option-value {
    margin-right: 8px;
}

[dir='ltr'] .product-form__option-link {
    margin-left: auto;
}

[dir='rtl'] .product-form__option-link {
    margin-right: auto;
}

.no-js .product-form__option-selector {
    display: none;
}

.product-form__option-selector + .product-form__option-selector {
    margin-top: 16px;
}

.product-form__payment-container {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    margin-top: 8px;
}

.product-form__description {
    margin-top: 8px;
    margin-bottom: 8px;
}

.product-form__image--center {
    text-align: center;
}

[dir='ltr'] .product-form__image--right {
    text-align: right;
}

[dir='rtl'] .product-form__image--right {
    text-align: left;
}

.product-form__image img {
    width: 100%;
}

/* Custom element that controls the "payment terms" */
shopify-payment-terms {
    display: block;
}

.product-form__view-details {
    margin-top: 24px;
    text-align: center;
}

.product-form__store-availability-container {
    display: block;
}

.product-form__store-availability-container:empty {
    display: none; /* Make sure that it does not add extra space */
}

@media screen and (min-width: 741px) {
    .product-form__payment-container {
        margin-top: 16px;
    }
}

/*
 * INVENTORY
 */

.inventory {
    color: rgb(var(--product-in-stock-text-color));
}

.inventory--low {
    color: rgb(var(--product-low-stock-text-color));
}

/*
 * PRODUCT CONTENT PART
 */

.product-content {
    display: flex;
    margin-top: 36px;
    margin-bottom: 36px;
}

@media screen and (max-width: 999px) {
    .product-content {
        flex-direction: column-reverse; /* In mobile we show the "complete the look" products first */
    }

    .product-content__tabs + .product-content__featured-products {
        margin-bottom: 38px;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .product-content {
        margin-top: 48px;
        margin-bottom: 48px;
    }
}

@media screen and (min-width: 1000px) {
    .product-content {
        justify-content: space-between;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media screen and (min-width: 1200px) {
    .product-content {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }
}

/*
 * PRODUCT CONTENT PART (TABS)
 */

.product-tabs__trust-list:not(:first-child) {
    margin-top: 32px;
}

.product-tabs__tab-item-wrapper:not([hidden]) {
    display: block;
}

.product-tabs__trust-list .icon-text svg {
    margin-right: 0;
    margin-left: 12px;
}

@media screen and (max-width: 740px) {
    .product-content__tabs {
        margin: 0 calc(-1 * var(--container-gutter));
    }

    .product-tabs__tab-item-wrapper {
        --anchor-offset: 0px;

        padding: 0 var(--container-gutter);
    }

    .product-tabs__trust-title:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 999px) {
    .product-tabs__tab-item-wrapper {
        display: block;
        border-top: 1px solid rgb(var(--border-color));
    }

    .product-tabs__tab-item-wrapper:last-child {
        border-bottom: 1px solid rgb(var(--border-color));
    }

    .product-tabs__tab-item-content {
        margin-top: -2px;
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .product-tabs__trust-list:not(:first-child) {
        padding-left: 0;
    }

    [dir='rtl'] .product-tabs__trust-list:not(:first-child) {
        padding-right: 0;
    }

    .product-tabs__trust-list:not(:first-child) {
        margin-top: 15px;
    }

    .product-tabs__trust-list:first-child {
        text-align: center;
    }

    .product-tabs__trust-title {
        display: inline-flex;
    }

    [dir='ltr'] .product-tabs__trust-title:not(:last-child) {
        margin-right: 35px;
    }

    [dir='rtl'] .product-tabs__trust-title:not(:last-child) {
        margin-left: 35px;
    }
}

@media screen and (min-width: 1000px) {
    .product-content__tabs {
        flex: none;
        width: calc(var(--grid-column-width) * 10 + var(--grid-gap) * 10);
    }

    .product-content__tabs:only-child {
        width: calc(var(--grid-column-width) * 12 + var(--grid-gap) * 12);
        margin-right: auto;

        /* The auto margin allows to center if only tabs are present */
        margin-left: auto;
    }

    /* On lap and up, the inner collapsible are always visible */
    .product-tabs__tab-item-wrapper .collapsible {
        overflow: auto;
        height: auto;
        visibility: visible;
    }
}

/*
 * PRODUCT CONTENT PART (PRODUCTS)
 */

.product-content__featured-products-title {
    margin-bottom: 0;
}

.product-content__featured-products-list {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}

@media screen and (max-width: 740px) {
    /* On mobile we show the product a bit differently */
    .product-content__featured-products .product-item {
        scroll-margin: var(--container-gutter);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        flex-direction: row;
        align-items: center;
        scroll-snap-margin: var(--container-gutter); /* iOS uses non-standard property */
    }

    .product-content__featured-products-list {
        grid-auto-columns: minmax(64vw, 1fr);
        grid-auto-flow: column;
        grid-template-columns: none;
    }

    [dir='ltr'] .product-content__featured-products .product-item__image-wrapper {
        margin: 0 24px 0 0;
    }

    [dir='rtl'] .product-content__featured-products .product-item__image-wrapper {
        margin: 0 0 0 24px;
    }

    .product-content__featured-products .product-item__image-wrapper {
        flex: none;
        width: 104px;
    }

    [dir='ltr'] .product-content__featured-products .product-item__info {
        text-align: left;
    }

    [dir='rtl'] .product-content__featured-products .product-item__info {
        text-align: right;
    }

    .product-content__featured-products .price-list {
        justify-content: flex-start;
    }

    [dir='ltr'] .product-content__featured-products .product-item__link {
        margin-left: 0;
    }

    [dir='rtl'] .product-content__featured-products .product-item__link {
        margin-right: 0;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .product-content__featured-products-list {
        grid-template-columns: 214px 214px;
    }
}

@media screen and (min-width: 1000px) {
    .product-content__featured-products {
        flex: none;
        width: calc(var(--grid-column-width) * 9 + var(--grid-gap) * 8);
    }

    .product-content__featured-products-list {
        margin-top: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .product-content__featured-products {
        width: calc(var(--grid-column-width) * 7 + var(--grid-gap) * 6);
    }
}

/*
 * QUICK BUY (POPOVER AND DRAWER)
 */

.quick-buy-product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

[dir='ltr'] .quick-buy-product__image {
    margin-right: 20px;
}

[dir='rtl'] .quick-buy-product__image {
    margin-left: 20px;
}

.quick-buy-product__image {
    flex: none;
    align-self: flex-start;
    width: 65px;
}

@media screen and (max-width: 740px) {
    [dir='ltr'] .quick-buy-product {
        padding-right: 32px;
    }

    [dir='rtl'] .quick-buy-product {
        padding-left: 32px;
    }

    .quick-buy-product {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .popover--quick-buy .product-form {
        padding-right: 24px;
        padding-left: 24px;
    }

    .popover--quick-buy .product-form > :first-child:not(.product-form__buy-buttons) {
        padding-top: 16px;
    }

    .popover--quick-buy .product-form__buy-buttons {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
        padding: 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom, 0px) + 16px);
    }

    .popover--quick-buy .product-form__buy-buttons:not(:only-child) {
        position: sticky;
        bottom: 0;
        margin-top: 8px;
        background: rgb(var(--root-background));
        border-top: 1px solid rgb(var(--border-color));
    }

    .popover--quick-buy .product-form__payment-container {
        margin-top: 0;
    }
}

@media screen and (min-width: 741px) {
    .quick-buy-product {
        margin: 32px 0 24px;
    }

    [dir='ltr'] .quick-buy-product__image {
        margin-right: 32px;
    }

    [dir='rtl'] .quick-buy-product__image {
        margin-left: 32px;
    }

    .quick-buy-product__image {
        width: 114px;
    }
}

/*
 * PRODUCT STICKY FORM
 */

[dir='ltr'] .product-sticky-form {
    left: 0;
}

[dir='rtl'] .product-sticky-form {
    right: 0;
}

.product-sticky-form {
    position: fixed;
    z-index: 2;
    bottom: 0;
    display: block;
    width: 100%;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px) + 24px);
    transition:
        opacity 0.25s ease-in-out,
        transform 0.25s ease-in-out,
        visibility 0.25s ease-in-out;
}

.product-sticky-form[hidden] {
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 999px) {
    .product-sticky-form .product-form__add-button {
        width: 100%;
    }
}

@media screen and (min-width: 1000px) {
    @supports (height: min(1px, 2px)) {
        .product-sticky-form__variants .select {
            min-width: min(max(var(--largest-option-width), 150px), 300px);
        }
    }

    .product-sticky-form {
        top: calc(
            var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
                var(--enable-sticky-announcement-bar)
        );
        bottom: auto;
        padding-top: 16px;
        padding-bottom: 16px;
        background: rgb(var(--background));
        border-bottom: 1px solid rgb(var(--border-color));
        box-shadow:
            0 6px 5px -5px rgba(var(--border-color), 0.4),
            0 1px rgb(var(--border-color)) inset;
        transition:
            opacity 0.25s ease-in-out,
            transform 0.25s ease-in-out,
            visibility 0.25s ease-in-out;
    }

    .product-sticky-form[hidden] {
        transform: translateY(-100%);
    }

    .product-sticky-form:hover {
        z-index: 4;
    }

    [dir='ltr'] .product-sticky-form__form,
    [dir='ltr'] .product-sticky-form__variants {
        margin-left: auto;
    }

    [dir='rtl'] .product-sticky-form__form,
    [dir='rtl'] .product-sticky-form__variants {
        margin-right: auto;
    }

    .product-sticky-form__form,
    .product-sticky-form__variants {
        display: flex;
    }

    .product-sticky-form__content-wrapper,
    .product-sticky-form__inner {
        display: flex;
        align-items: center;
    }

    [dir='ltr'] .product-sticky-form__image-wrapper {
        margin-right: 18px;
    }

    [dir='rtl'] .product-sticky-form__image-wrapper {
        margin-left: 18px;
    }

    .product-sticky-form__image-wrapper {
        flex: none;
        width: 55px;
    }

    [dir='ltr'] .product-sticky-form__variants .select-wrapper + .select-wrapper {
        margin-left: -1px;
    }

    [dir='rtl'] .product-sticky-form__variants .select-wrapper + .select-wrapper {
        margin-right: -1px;
    }

    .product-sticky-form__variants .select-wrapper + .select-wrapper {
        /* Allow the borders to collapse */
    }

    .product-sticky-form__variants .select-wrapper:not(:first-child, :last-child) .select {
        border-radius: 0;
    }

    [dir='ltr'] .product-sticky-form__variants .select-wrapper:first-child:not(:only-child) .select {
        border-top-right-radius: 0;
    }

    [dir='rtl'] .product-sticky-form__variants .select-wrapper:first-child:not(:only-child) .select {
        border-top-left-radius: 0;
    }

    [dir='ltr'] .product-sticky-form__variants .select-wrapper:first-child:not(:only-child) .select {
        border-bottom-right-radius: 0;
    }

    [dir='rtl'] .product-sticky-form__variants .select-wrapper:first-child:not(:only-child) .select {
        border-bottom-left-radius: 0;
    }

    [dir='ltr'] .product-sticky-form__variants .select-wrapper:last-child:not(:only-child) .select {
        border-top-left-radius: 0;
    }

    [dir='rtl'] .product-sticky-form__variants .select-wrapper:last-child:not(:only-child) .select {
        border-top-right-radius: 0;
    }

    [dir='ltr'] .product-sticky-form__variants .select-wrapper:last-child:not(:only-child) .select {
        border-bottom-left-radius: 0;
    }

    [dir='rtl'] .product-sticky-form__variants .select-wrapper:last-child:not(:only-child) .select {
        border-bottom-right-radius: 0;
    }

    .product-sticky-form__variants .select {
        min-width: 150px;
        max-width: 300px;
    }

    /* The height of the selectors is slightly reduced only here */
    .product-sticky-form .button,
    .product-sticky-form .select {
        height: 48px;
        line-height: 48px;
    }

    [dir='ltr'] .product-sticky-form__payment-container {
        margin-left: 10px;
    }

    [dir='rtl'] .product-sticky-form__payment-container {
        margin-right: 10px;
    }
}

/**
 * -------------------------------------------------------------
 * PRODUCT ITEM META
 *
 * This component is used on many elements (like grid item,
 * cart page, mini-cart, order...) and guarantee a consistent
 * spacing across all elements
 * -------------------------------------------------------------
 */

.product-item-meta {
    display: block;
}

.product-item-meta__vendor {
    display: block;
    margin-bottom: 6px;
}

.product-item-meta__title {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
    line-height: 1.6;
}

.product-item-meta__reviews-badge {
    display: block;
    margin-top: 2px;
}

.product-item-meta__color-count {
    margin-top: 4px;
}

.product-item-meta__reviews-badge + .product-item-meta__color-count {
    margin-top: 4px; /* When preceded by reviews badge we have a smaller gap */
}

.product-item-meta__reviews-badge .spr-icon {
    width: 12px;
    height: 12px;
}

.product-item-meta__swatch-list {
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 2px; /* The extra 2px at the bottom is to avoid the border to be clipped on iOS */
    overflow-wrap: anywhere;
}

.product-item-meta__property-list {
    display: grid;
    grid-auto-flow: row;
    margin-top: 6px;
    margin-bottom: 4px;
}

@media screen and (min-width: 741px) {
    .product-item-meta__property-list {
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .product-item-meta__color-count {
        margin-top: 8px;
    }

    .product-item-meta__title {
        line-height: 1.5; /* We slightly reduce the line height on larger screen */
    }
}

/**
 * -------------------------------------------------------------
 * PRODUCT ITEM
 *
 * extra info only available on collection and featured collection pages
 * -------------------------------------------------------------
 */

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-item__image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 0;
}

.product-item__image-wrapper--placeholder {
    fill: currentcolor;
}

[dir='ltr'] .product-item__label-list {
    left: 10px;
}

[dir='rtl'] .product-item__label-list {
    right: 10px;
}

.product-item__label-list {
    /* position: absolute;
  z-index: 1;
  top: 10px; */
    padding-top: 0.5rem;
}

.product-item__image-wrapper--multiple .product-item__primary-image,
.product-item__image-wrapper--multiple .product-item__secondary-image {
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
}

.product-item__aspect-ratio {
    isolation: isolate;
}

.product-item__primary-image,
.product-item__secondary-image {
    border-radius: var(--block-border-radius-reduced);
}

.product-item__secondary-image {
    position: absolute;
    top: 50% !important;
    left: 50% !important; /* We must use this instead of logical property here */
    transform: translate(-50%, -50%) !important;
    display: none; /* Allows to make sure it does not trigger lazyload */
    visibility: hidden;
    opacity: 0;
    object-fit: contain;
    object-position: center;
}

.product-item__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    text-align: center;
}

.product-item__info--with-button {
    justify-content: space-between;
}

.product-item__cta {
    margin-top: 16px;
}

[dir='ltr'] .product-item__quick-form {
    left: 0;
}

[dir='rtl'] .product-item__quick-form {
    right: 0;
}

.product-item__quick-form {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
}

/* This button is only appearing on touch device */
[dir='ltr'] .product-item__quick-buy-button {
    right: 12px;
}

[dir='rtl'] .product-item__quick-buy-button {
    left: 12px;
}

.product-item__quick-buy-button {
    position: absolute;
    bottom: 12px;
    padding: 5px;
    color: rgb(var(--root-text-color));
    background: rgb(var(--root-background));
    border: 1px solid rgb(var(--root-border-color));
}

.product-item__link {
    display: inline-block;
    margin: 6px auto 0;
}

@media screen and (pointer: fine) {
    .product-item__secondary-image {
        display: block;
    }

    .product-item__image-wrapper--multiple:hover .product-item__primary-image {
        visibility: hidden;
        opacity: 0;
    }

    .product-item__image-wrapper--multiple:hover .product-item__secondary-image {
        visibility: visible;
        opacity: 1;
    }

    .product-item__image-wrapper:hover .product-item__quick-form {
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .product-item__quick-form {
        transform: translateY(16px);
        transition:
            visibility 0.2s ease-in-out,
            opacity 0.2s ease-in-out,
            transform 0.2s ease-in-out;
    }

    .product-item__image-wrapper:hover .product-item__quick-form {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
}

@media not screen and (pointer: fine) {
    .product-item__quick-form {
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (min-width: 1000px) {
    .product-item__image-wrapper {
        margin-bottom: 12px;
    }
}

/**
 * -------------------------------------------------------------
 * PRODUCT LIST
 * -------------------------------------------------------------
 */

.product-list {
    --product-list-column-gap: var(--grid-gap);
}

.product-list:not([hidden]) {
    position: relative;
    display: block;
}

.product-list__inner {
    overflow: hidden;
    display: grid;
    grid-gap: var(--product-list-block-spacing) var(--product-list-column-gap);
    grid-template-columns: repeat(
        auto-fit,
        calc(
            100% / var(--section-products-per-row) - var(--product-list-column-gap) * (var(--section-products-per-row) - 1) /
                var(--section-products-per-row)
        )
    );
    gap: var(--product-list-block-spacing) var(--product-list-column-gap);
}

.product-list__inner--scroller {
    overflow-x: auto;
}

[dir='ltr'] .product-list--center .product-list__inner {
    justify-content: safe center; /* For some reason it does not work in RTL on Chrome */
}

@media screen and (max-width: 768px) {
    .product-list .product-item__image-wrapper {
        padding-top: 30px;
    }

    .product-list .product-item__image-wrapper .card__badge {
        top: 4px;
    }
}

@media screen and (max-width: 740px) {
    /* On mobile when the products are shown in grid we reduce spacing */
    .product-list {
        --product-list-column-gap: 12px;
    }

    .product-list__inner:not(.product-list__inner--scroller) {
        margin-right: calc(-1 * var(--container-gutter) / 2);
        margin-left: calc(-1 * var(--container-gutter) / 2);
    }
}

@media screen and (max-width: 999px) {
    .product-list__inner--scroller {
        grid-auto-columns: 52vw;
        grid-auto-flow: column;
        grid-template-columns: none;
        min-width: min-content;
        padding-right: var(--container-gutter);
        padding-left: var(--container-gutter);
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .product-list__inner--scroller {
        grid-auto-columns: 35vw;
    }
}

@media screen and (min-width: 1000px) {
    @supports (width: max(1px, 2px)) {
        .product-list {
            --item-width: calc(
                (min(100vw - var(--container-gutter) * 2, var(--container-max-width-minus-gutters)) - 56px) /
                    var(--section-products-per-row) -
                    (var(--grid-gap) / var(--section-products-per-row) * (var(--section-products-per-row) - 1))
            );
        }
    }

    .product-list {
        /* We calculate the width of one product item cell thanks to power of CSS variables */
        --item-width: calc(
            (var(--container-max-width-minus-gutters) - 56px) / var(--section-products-per-row) -
                (var(--grid-gap) / var(--section-products-per-row) * (var(--section-products-per-row) - 1))
        );
    }

    .product-list__prev-next {
        pointer-events: none;
        position: absolute;
        top: calc(
            var(--item-width) / var(--smallest-image-aspect-ratio) / 2 - 28px
        ); /* 28px is half the height of the button */

        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .product-list__arrow {
        z-index: 1;
        transform: scale(0.5);
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 0.15s ease-in-out,
            visibility 0.15s ease-in-out,
            transform 0.15s ease-in-out;
    }

    .product-list:hover .product-list__arrow:not([disabled]) {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }

    .product-list__inner--scroller {
        overflow: hidden;
        grid-auto-columns: calc(
            100% / var(--section-products-per-row, 4) -
                (var(--grid-gap) / var(--section-products-per-row, 4) * (var(--section-products-per-row, 4) - 1))
        );
        grid-auto-flow: column;
        grid-template-columns: none;
        margin-right: 28px; /* We add a bit of space for the arrow */
        margin-left: 28px;
    }

    .product-list__inner--desktop-no-scroller {
        margin-right: 0;
        margin-left: 0;
    }
}

@media not screen and (pointer: fine) {
    .product-list__arrow:not([disabled]) {
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
}

.promotion-block-list {
    --promotion-block-gutter: var(--container-gutter);

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(-1 * var(--promotion-block-gutter) / 2);
}

.promotion-block {
    --promotion-block-padding: 32px;
    --promotion-block-min-height: 180px;

    position: relative;
    overflow: hidden;
    display: flex;
    align-items: var(--section-blocks-alignment, flex-end);
    width: 100%;
    min-width: 0;
    min-height: var(--promotion-block-min-height);
    margin: calc(var(--promotion-block-gutter) / 2);
    padding: var(--promotion-block-padding);
    color: rgb(var(--text-color));
    background: rgb(var(--section-block-background));
    border-radius: var(--block-border-radius-reduced);
}

.promotion-block--medium {
    --promotion-block-min-height: 210px;
}

.promotion-block--large {
    --promotion-block-min-height: 250px;
}

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

.promotion-block:hover .link {
    text-decoration-color: rgb(
        var(--text-color)
    ); /* Make sure that the underlined link is in active state on hover of the whole block */
}

/* IMAGE DEDICATED BLOCK */

[dir='ltr'] .promotion-block__image {
    right: 0;
}

[dir='rtl'] .promotion-block__image {
    left: 0;
}

.promotion-block__image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--block-border-radius-reduced);
}

/* QUOTE DEDICATED BLOCK */

[dir='ltr'] .promotion-block--quote::before {
    left: var(--promotion-block-padding);
}

[dir='rtl'] .promotion-block--quote::before {
    right: var(--promotion-block-padding);
}

.promotion-block--quote::before {
    pointer-events: none;
    content: '';
    position: absolute;
    top: var(--promotion-block-padding);
    width: 50px;
    height: 40px;
    opacity: 0.3;
    background: rgb(var(--text-color));
    mask-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDEgODAiPiAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgNDEuNzdWMGg0MS42MDR2NDEuNzdMMjAuMDI2IDgwSC45ODdMMjEuNzIgNDEuNzdIMHptNTkuMzk2IDBWMEgxMDF2NDEuNzdMNzkuNDIyIDgwSDYwLjM4M2wyMC43MzItMzguMjNINTkuMzk2eiIgZmlsbD0iY3VycmVudENvbG9yIiAvPjwvc3ZnPg==');
    mask-repeat: no-repeat;
    mask-size: 50px 40px;
}

.promotion-block--quote .promotion-block__content-wrapper {
    margin-top: 50px; /* This ensure a minimum space so that text does not cover the quote */
}

/* VIDEO DEDICATED BLOCK */

.promotion-block--video {
    padding: 0 !important; /* The video cover the tile */
}

.promotion-block .video-wrapper {
    --video-height: calc(
        var(--promotion-block-min-height) + 60px
    ); /* We add a bit of extra space in case other blocks may be taller */

    height: 100%;
    min-height: var(--promotion-block-min-height);
}

/* PRODUCT DEDICATED BLOCK */

.promotion-block--products {
    align-items: center;
    justify-content: center;
    padding: 24px !important;
    text-align: center;
}

.promotion-block__product-list-wrapper {
    display: block;
}

.promotion-block__product-list {
    scroll-snap-type: x mandatory;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: -24px;
    margin-left: -24px;
}

.promotion-block__product-list-item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: block;
    min-width: 100%;
}

.promotion-block__product-list-item .placeholder-background {
    background: transparent;
}

.promotion-block__product-list-prev-next {
    pointer-events: none;
    position: absolute;
    top: calc(50% - 20px); /* 20px is half the height of the buttons */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.promotion-block__product-list .product-item__image-wrapper {
    width: 100%;
    max-width: 150px;
    margin-right: auto;
    margin-left: auto;
}

@media not screen and (pointer: fine) {
    .promotion-block__product-list {
        overflow: auto;
    }
}

@media screen and (max-width: 740px) {
    .promotion-block-list--scrollable {
        flex-wrap: nowrap;
    }

    .promotion-block-list--scrollable .promotion-block {
        scroll-margin: var(--promotion-block-gutter);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        width: 81vw;
        scroll-snap-margin: var(--promotion-block-gutter); /* iOS uses non-standard property */
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .promotion-block {
        flex: 1 0 calc(50% - var(--container-gutter));
    }

    .promotion-block .newsletter__form .input-row {
        grid-template-columns: 1fr auto; /* We have enough space :) */
    }
}

@media screen and (min-width: 1000px) {
    .promotion-block {
        flex: 1 0 calc(33.3333% - var(--promotion-block-gutter));
    }

    .promotion-block:not(.promotion-block--expand):only-child {
        max-width: 50%;
    }

    .promotion-block--highlight {
        flex-basis: calc(66.6666% - var(--promotion-block-gutter));
    }

    .promotion-block--quote::before {
        width: 60px;
        height: 48px;
        mask-size: 60px 48px;
    }

    .promotion-block:not(.promotion-block--highlight) .newsletter__form .input-row {
        grid-template-columns: none; /* We do not have enough space */
    }
}

@media screen and (min-width: 1200px) {
    .promotion-block {
        --promotion-block-min-height: 250px;
        --promotion-block-padding: 48px;
    }

    .promotion-block--compact {
        --promotion-block-padding: 40px;
    }

    .promotion-block--medium {
        --promotion-block-min-height: 320px;
    }

    .promotion-block--large {
        --promotion-block-min-height: 370px;
    }
}

@media screen and (min-width: 1400px) {
    .promotion-block .newsletter__form .input-row {
        grid-template-columns: 1fr auto; /* We have enough space :) */
    }
}

.main-search__form {
    --form-input-field-height: 60px;

    position: relative;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
}

[dir='ltr'] .main-search__input {
    padding-right: 55px;
}

[dir='rtl'] .main-search__input {
    padding-left: 55px;
}

[dir='ltr'] .main-search__submit {
    right: 20px;
}

[dir='rtl'] .main-search__submit {
    left: 20px;
}

.main-search__submit {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.main-search__empty-text {
    margin-top: 40px;
}

.main-search__results {
    display: block;
}

.main-search__form + .tabs-nav {
    margin-top: 38px;
}

@media screen and (min-width: 741px) {
    .main-search__form {
        --form-input-field-height: 64px;
    }

    [dir='ltr'] .main-search__submit {
        right: 32px;
    }

    [dir='rtl'] .main-search__submit {
        left: 32px;
    }

    [dir='ltr'] .main-search__input {
        padding-right: 80px;
        padding-left: 30px;
    }

    [dir='rtl'] .main-search__input {
        padding-right: 30px;
        padding-left: 80px;
    }

    .main-search__form + .tabs-nav {
        margin-top: 48px;
        margin-bottom: 24px;
    }
}

.shop-the-look,
.shop-the-look__item {
    position: relative;
    overflow: hidden;
    display: block;
}

.shop-the-look__item {
    background: rgb(var(--secondary-background)); /* Use as a filler */
}

.shop-the-look__item[hidden] {
    position: absolute;
    z-index: -1;
    inset: 0;
    visibility: hidden;
}

.shop-the-look__item[hidden] .popover,
.shop-the-look__item[hidden] .drawer {
    display: none; /* Making sure popover and drawer are hidden for hidden look helps alleviating issues with Safari */
}

.shop-the-look__image {
    width: 100%;
}

.shop-the-look__product-wrapper {
    position: absolute; /* Position is set dynamically in Liquid */
}

/* Dot elements */

.shop-the-look__dot {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: var(--section-dot-inner-background);
    border-radius: 100%;
    box-shadow:
        0 0 0 8px rgb(var(--section-dot-background)) inset,
        0 1px 5px rgb(0 0 0 / 15%);
}

@keyframes shopTheLookDotKeyframe {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.shop-the-look__dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(var(--section-dot-background), 0.6);
    border-radius: 100%;
    animation: shopTheLookDotKeyframe 2s ease-in-out infinite;
}

/* Product part */

/* This allows to shift by the size of the dot */
[dir='ltr'] .shop-the-look__product-wrapper {
    margin-left: -12px;
}

[dir='rtl'] .shop-the-look__product-wrapper {
    margin-right: -12px;
}

.shop-the-look__product-wrapper {
    margin-top: -12px;
}

[dir='ltr'] .shop-the-look__product {
    padding: 15px 32px 15px 15px;
}

[dir='rtl'] .shop-the-look__product {
    padding: 15px 15px 15px 32px;
}

.shop-the-look__product {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: calc(100% + 28px);
    transform-origin: top var(--transform-origin-start);
    transform: scale(0.8) translateY(-50%);
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 46vw;
    visibility: hidden;
    opacity: 0;
    background: rgb(var(--background));
    border-radius: min(var(--block-border-radius), 4px);
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
    transition:
        visibility 0.4s cubic-bezier(0.75, 0, 0.175, 1),
        opacity 0.4s cubic-bezier(0.75, 0, 0.175, 1),
        transform 0.4s cubic-bezier(0.75, 0, 0.175, 1);
}

.shop-the-look__product[open] {
    transform: scale(1) translateY(-50%);
    visibility: visible;
    opacity: 1;
}

.shop-the-look__product::before {
    content: '';
    position: absolute;
    right: 100%;
    width: 0;
    height: 0;
    border-color: transparent rgb(var(--background)) transparent transparent;
    border-style: solid;
    border-width: 8px;
}

.shop-the-look__product--reverse {
    right: calc(100% + 28px);
    left: auto;
    transform-origin: top var(--transform-origin-end);
}

.shop-the-look__product--reverse::before {
    right: auto;
    left: 100%;
    border-color: transparent transparent transparent rgb(var(--background));
}

.shop-the-look__product-bottom-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 12px;
    gap: 12px;
    justify-content: flex-start;
}

[dir='ltr'] .shop-the-look__product-image {
    margin-right: 24px;
}

[dir='rtl'] .shop-the-look__product-image {
    margin-left: 24px;
}

.shop-the-look__product-image {
    flex: none;
    width: 72px;
}

.shop-the-look__product-vendor {
    display: block;
    max-width: max-content;
    margin-bottom: 1px;
}

.shop-the-look__product-title {
    display: block;
    margin-bottom: 2px;
}

/* Nav */

.shop-the-look__nav {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    transform: translateZ(0); /* Solves an extremely odd rendering issue on Safari */
    overflow: hidden;
    display: block;
    color: rgb(var(--text-color));
    background: rgb(var(--background));
    border: 1px solid rgb(var(--border-color));
    border-radius: min(var(--button-border-radius), 10px);
}

.shop-the-look__prev-next-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.shop-the-look__arrow {
    border: none;
    border-radius: 0;
}

[dir='ltr'] .shop-the-look__arrow:first-child {
    border-right: 1px solid rgb(var(--border-color));
}

[dir='rtl'] .shop-the-look__arrow:first-child {
    border-left: 1px solid rgb(var(--border-color));
}

@media screen and (min-width: 741px) {
    .shop-the-look__nav {
        bottom: 40px;
    }
}

@media screen and (min-width: 1000px) {
    .shop-the-look__label {
        padding-right: 20px;
        padding-left: 20px;
        line-height: 56px;
        text-align: center;
        border-bottom: 1px solid rgb(var(--border-color));
    }

    [dir='ltr'] .shop-the-look__arrow:last-child {
        border-left: 1px solid rgb(var(--border-color));
    }

    [dir='rtl'] .shop-the-look__arrow:last-child {
        border-right: 1px solid rgb(var(--border-color));
    }

    .shop-the-look__counter {
        overflow: hidden;
        flex-grow: 1;
        padding-right: 20px;
        padding-left: 20px;
        line-height: 1.4;
        text-align: center;
    }

    .shop-the-look__counter-page {
        position: relative;
    }

    .shop-the-look__counter-page-base {
        opacity: 0; /* Just to allocate the space */
    }

    [dir='ltr'] .shop-the-look__counter-page-transition {
        left: 0;
    }

    [dir='rtl'] .shop-the-look__counter-page-transition {
        right: 0;
    }

    .shop-the-look__counter-page-transition {
        position: absolute;
        top: 0;
        display: inline-block;
        height: 100%;
        line-height: normal;
    }

    .shop-the-look__counter-page-transition[hidden] {
        transform: translateY(100%);
        visibility: hidden;
    }
}

/**
 * IMPLEMENTATION NOTE: as always, styling Shopify Reviews is a whole mess, as the app adds ton of useless and outdated
 * CSS, so we have to override everything. You should really touch this code with extra extra care...
 */

/* GENERAL */

.spr-starrating,
#shopify-product-reviews .spr-starratings {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
}

.spr-icon.spr-icon {
    top: 0;
    width: 14px;
    height: 14px;
    background-color: currentcolor;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNSAxNCI+ICA8cGF0aCBkPSJNNy41LjVsMS42NDYgNC43MzUgNS4wMTEuMTAyLTMuOTk0IDMuMDI4IDEuNDUxIDQuNzk4TDcuNSAxMC4zbC00LjExNCAyLjg2MyAxLjQ1MS00Ljc5OEwuODQzIDUuMzM3bDUuMDExLS4xMDJMNy41LjV6IiBmaWxsPSIjMUUzMTZBIi8+PC9zdmc+');
    mask-size: cover;
}

.spr-icon,
.spr-icon-star-hover {
    color: rgb(var(--product-star-rating));
}

.spr-icon-star-hover {
    opacity: 1 !important;
}

[dir='ltr'] .spr-icon:not(:last-child) {
    margin-right: 2px;
}

[dir='rtl'] .spr-icon:not(:last-child) {
    margin-left: 2px;
}

.spr-icon::before {
    content: none !important; /* Remove the default Shopify styles */
}

.spr-icon.spr-icon.spr-icon-star-empty {
    opacity: 0.4;
}

/* BADGE */

[dir='ltr'] .spr-summary-starrating + .spr-summary-caption {
    margin-left: 8px;
}

[dir='rtl'] .spr-summary-starrating + .spr-summary-caption {
    margin-right: 8px;
}

/* MAIN REVIEW */

/* There are lot of elements we do not want */
.product-tabs .spr-header-title, /* the title must only be hidden if the reviews are embedded into the tab system */
.spr-form-title,
.spr-summary::before,
.spr-summary::after,
.spr-form-contact::before,
.spr-form-contact::after,
.spr-form-review::before,
.spr-form-review::after,
.spr-form-actions::before,
.spr-form-actions::after {
    display: none !important;
}

#shopify-product-reviews {
    display: block !important; /* Make sure reviews are always visible whatever is checked in the Shopify app */
    margin: 0 !important;
}

#shopify-product-reviews .spr-container {
    padding: 0;
    border: none;
}

#shopify-product-reviews .spr-form:not(.spr-form--success) {
    padding: 24px;
    border: 1px solid rgb(var(--border-color));
}

#shopify-product-reviews .spr-form {
    border-radius: var(--block-border-radius-reduced);
}

#shopify-product-reviews .spr-form--success {
    padding: 0;
    border: none;
}

#shopify-product-reviews .spr-form,
#shopify-product-reviews #shopify-product-reviews {
    margin-top: 24px;
}

#shopify-product-reviews .spr-form-contact {
    margin-top: -8px;
}

#shopify-product-reviews .spr-form-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: inherit;
    line-height: inherit;
}

#shopify-product-reviews .spr-form-input::placeholder {
    color: rgba(var(--text-color), 0.7);
}

#shopify-product-reviews fieldset > * {
    margin-bottom: 16px;
}

#shopify-product-reviews .spr-form-review-body {
    margin-bottom: 0 !important; /* This is the last field */
}

#shopify-product-reviews .spr-form-input.spr-starrating {
    display: block;
}

#shopify-product-reviews .spr-form-input .spr-icon {
    width: 20px;
    height: 20px;
    opacity: 1;
}

#shopify-product-reviews .spr-form-input .spr-icon-star-empty:not(.spr-icon-star-hover) {
    color: rgba(var(--text-color), 0.4);
}

[dir='ltr'] #shopify-product-reviews .spr-summary {
    text-align: left;
}

[dir='rtl'] #shopify-product-reviews .spr-summary {
    text-align: right;
}

#shopify-product-reviews .spr-summary-actions {
    display: block;
    margin-top: 16px;
}

#shopify-product-reviews .spr-summary-starrating {
    vertical-align: text-top;
}

#shopify-product-reviews .spr-summary-starrating .spr-icon {
    width: 18px;
    height: 18px;
}

#shopify-product-reviews .spr-button-primary {
    float: none;
    margin-top: var(--form-submit-margin);
    margin-bottom: 0;
}

#shopify-product-reviews .spr-form-message {
    padding: 12px 16px;
    outline: none;
}

#shopify-product-reviews .spr-form-message:not(:last-child) {
    margin-bottom: 24px;
}

#shopify-product-reviews .spr-form-message-success {
    color: rgb(var(--success-color));
    background: rgb(var(--success-background));
}

#shopify-product-reviews .spr-form-message-error {
    color: rgb(var(--error-color));
    background: rgb(var(--error-background));
}

#shopify-product-reviews .spr-review {
    position: relative;
    padding: 24px !important;
    background: rgb(var(--secondary-background));
    border: none;
    border-radius: var(--block-border-radius-reduced);
}

#shopify-product-reviews .spr-review + .spr-review {
    margin-top: 16px;
}

#shopify-product-reviews .spr-review-header-starratings {
    vertical-align: top;
}

#shopify-product-reviews .spr-review-content {
    margin-top: 12px;
    margin-bottom: calc(2em + 14px);
}

#shopify-product-reviews .spr-review-header-byline,
#shopify-product-reviews .spr-review-reportreview {
    float: none;
    font-size: calc(var(--base-font-size) - 2px);
    font-style: normal;
    line-height: 1.6923076923;
    color: rgba(var(--text-color), 0.7);
    opacity: 1;
}

#shopify-product-reviews .spr-review-reportreview {
    text-decoration: underline;
    text-decoration-color: rgba(var(--text-color), 0.35);
    text-underline-offset: 3px;
    transition:
        color 0.2s ease-in-out,
        -webkit-text-decoration-color 0.2s ease-in-out;
    transition:
        text-decoration-color 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        text-decoration-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-text-decoration-color 0.2s ease-in-out;
}

#shopify-product-reviews .spr-review-reportreview:hover {
    color: rgb(var(--text-color));
    text-decoration-color: rgb(var(--text-color));
}

#shopify-product-reviews .spr-review-header-title,
#shopify-product-reviews .spr-review-content-body {
    font-size: inherit;
    line-height: inherit;
}

#shopify-product-reviews .spr-review-header-title {
    margin-top: 2px;
    font-weight: var(--text-font-bold-weight);
}

/* We cannot control the DOM generated so we have to be creative... */
#shopify-product-reviews .spr-review-header-byline {
    position: absolute;
    bottom: calc(30px + 2em);
    margin: 0;
}

#shopify-product-reviews .spr-review-header-byline strong {
    font-weight: normal;
}

[dir='ltr'] #shopify-product-reviews .spr-pagination {
    text-align: left;
}

[dir='rtl'] #shopify-product-reviews .spr-pagination {
    text-align: right;
}

#shopify-product-reviews .spr-pagination {
    margin-top: 24px;
    padding: 0;
    border-top: none;
}

#shopify-product-reviews .spr-pagination > div {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
}

#shopify-product-reviews .spr-pagination-page,
#shopify-product-reviews .spr-pagination-next,
#shopify-product-reviews .spr-pagination-prev {
    position: relative;
    display: table-cell;
    width: 47px;
    height: 47px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid rgb(var(--border-color));
}

.spr-pagination-prev a,
.spr-pagination-next a {
    min-width: max-content;
    padding-right: 8px;
    padding-left: 8px;
}

/* Allows to make the whole pagination link clickable */
#shopify-product-reviews .spr-pagination a {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#shopify-product-reviews .spr-pagination-page.is-active {
    font-weight: var(--text-font-bold-weight);
    border-color: currentcolor;
    outline: 1px solid currentcolor;
    outline-offset: -1px;
    box-shadow: 0 0 0 1px currentcolor inset;
}

[dir='rtl'] .spr-form-review-rating a,
[dir='rtl'] .spr-form-review-rating a:hover {
    float: right;
}

@media screen and (min-width: 741px) {
    #shopify-product-reviews .spr-summary {
        display: flex;
        flex-wrap: wrap;
        row-gap: 16px;
        align-items: center;
    }

    [dir='ltr'] #shopify-product-reviews .spr-summary-actions {
        margin-left: auto;
    }

    [dir='rtl'] #shopify-product-reviews .spr-summary-actions {
        margin-right: auto;
    }

    #shopify-product-reviews .spr-summary-actions {
        margin-top: 0;
    }

    #shopify-product-reviews .spr-form:not(.spr-form--success) {
        padding: 32px;
    }

    #shopify-product-reviews .spr-form,
    #shopify-product-reviews #shopify-product-reviews {
        margin-top: 32px;
    }

    #shopify-product-reviews .spr-form-contact {
        display: grid;
        grid-auto-flow: column;
        grid-gap: var(--form-input-gap);
        gap: var(--form-input-gap);
    }

    #shopify-product-reviews .spr-form-message {
        padding: 13px 18px;
    }

    #shopify-product-reviews .spr-form-message:not(:last-child) {
        margin-bottom: 32px;
    }

    #shopify-product-reviews .spr-review {
        padding: 32px !important;
    }

    #shopify-product-reviews .spr-review-header-byline,
    #shopify-product-reviews .spr-review-reportreview {
        font-size: calc(var(--base-font-size) - 1px);
        line-height: 1.714285713;
    }

    #shopify-product-reviews .spr-review-content {
        margin-top: 8px;
        margin-bottom: calc(1em - 2px);
    }

    /* We cannot control the DOM generated so we have to be creative... */
    #shopify-product-reviews .spr-review-header-byline {
        bottom: 32px;
    }

    .spr-review-reportreview {
        float: right !important;
    }

    [dir='rtl'] .spr-review-reportreview {
        float: left !important;
    }

    #shopify-product-reviews .spr-pagination {
        margin-top: 32px;
    }

    #shopify-product-reviews .spr-pagination-page,
    #shopify-product-reviews .spr-pagination-next,
    #shopify-product-reviews .spr-pagination-prev {
        width: 56px;
        height: 56px;
    }
}

/**
 * STYLES FOR SOME PAGES CONTROLLED BY SHOPIFY
 */

.shopify-challenge__container {
    margin-top: var(--vertical-breather) !important;
    margin-bottom: var(--vertical-breather) !important;
}

.shopify-challenge__container .shopify-challenge__button {
    margin-top: 30px;
}

.slideshow {
    --slideshow-min-height: 0;

    position: relative;
    display: block;
}

.slideshow--small {
    /* --slideshow-min-height: 120vw; */
    --slideshow-min-height: 80vw;
}

.slideshow--medium {
    /* --slideshow-min-height: 133vw; */
    --slideshow-min-height: 100vw;
}

.slideshow--large {
    /* --slideshow-min-height: 160vw; */
    --slideshow-min-height: 133vw;
}

.slideshow--fit {
    --slideshow-min-height: calc(
        var(--window-height) - var(--header-height, 0px) * (-1 * (var(--enable-transparent-header) - 1)) -
            var(--announcement-bar-height, 0px)
    );
}

@supports (min-height: 100svh) {
    .slideshow--fit {
        --slideshow-min-height: calc(
            100svh - var(--header-height, 0px) * (-1 * (var(--enable-transparent-header) - 1)) -
                var(--announcement-bar-height, 0px)
        );
    }
}

.slideshow,
.slideshow__slide-list,
.slideshow__slide,
.slideshow__slide-inner {
    min-height: var(--slideshow-min-height);
}

.slideshow__slide-list {
    overflow: hidden;
}

.slideshow__slide {
    position: relative;
    z-index: 1;
    display: block;
}

.slideshow__slide:not(:only-child) {
    cursor: grab;
    user-select: none;
}

.slideshow__slide[hidden] {
    position: absolute;
    z-index: 0;
    inset: 0;
    visibility: hidden;
}

.slideshow__slide:not(:only-child) .slideshow__text-wrapper--bottom {
    padding-bottom: calc(var(--vertical-breather) + 30px);
}

.slideshow__slide-inner {
    position: relative;
    display: flex;
    align-items: var(--section-blocks-alignment);
    width: 100%;
    height: 100%;
}

.slideshow__slide-half-link {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1000px){
  .slideshow__slide-half-link {
    width: 100%;
    height: var(--l-second-link-height-mobile, 50%);
  }
}
@media screen and (min-width: 1000px){
  .slideshow__slide-half-link {
    width: 50%;
    height: 100%;
  }
}

.slideshow__slide-inner::before {
    content: '';
    display: block;
    width: 0;
    padding-bottom: calc(100 / var(--mobile-image-aspect-ratio) * 1%);
}

.slideshow__image-wrapper {
    overflow: hidden;
}

[dir='ltr'] .slideshow__image-wrapper,
[dir='ltr'] .slideshow__image {
    left: 0;
}

[dir='rtl'] .slideshow__image-wrapper,
[dir='rtl'] .slideshow__image {
    right: 0;
}

.slideshow__image-wrapper,
.slideshow__image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.slideshow__image {
    object-fit: cover;
    object-position: center;
}

.slideshow__image--placeholder {
    width: auto;
    background: rgb(var(--background));
}

[dir='ltr'] .slideshow__image-wrapper::before {
    left: 0;
}

[dir='rtl'] .slideshow__image-wrapper::before {
    right: 0;
}

.slideshow__image-wrapper::before {
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--section-blocks-overlay-color), var(--section-blocks-overlay-opacity));
}

.slideshow__text {
    z-index: 1;
}

/* When the text is aligned at the top, we should add extra space if the header is transparent to avoid it to collide */
@supports (width: max(1px, 2px)) {
    .slideshow__text-wrapper--top {
        padding-top: max(var(--vertical-breather), calc((var(--header-height) + 25px) * var(--enable-transparent-header)));
    }
}

@media screen and (min-width: 1000px) {
    @supports (width: max(1px, 2px)) {
        .slideshow__text-wrapper--top {
            padding-top: max(
                var(--vertical-breather),
                calc((var(--header-height) + 40px) * var(--enable-transparent-header))
            );
        }
    }
}

.slideshow__button {
    position: relative;
    z-index: 1;
    bottom: 15%;
    display: flex;
}

.slideshow__button .button {
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    .slideshow__button .button {
        font-size: 18px;
    }
}

/* Navigation (progress bar) */

@keyframes slideshowProgressBarAnimation {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.slideshow__nav {
    pointer-events: none;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 4px;
    left: 0;
    display: flex;
    justify-content: center;
}

/* Navigation (progress bar) */

@media screen and (min-width: 740px) {
    .slideshow__nav {
        bottom: 64px;
    }

    .slideshow__progress-bar {
        flex-basis: 64px;
    }
}

.slideshow__progress-bar {
    pointer-events: auto;
    position: relative;
    flex-basis: 48px;
    margin: 0 8px;
    padding: 18px 0;
}

[dir='ltr'] .slideshow__progress-bar::before,
[dir='ltr'] .slideshow__progress-bar::after {
    left: 0;
}

[dir='rtl'] .slideshow__progress-bar::before,
[dir='rtl'] .slideshow__progress-bar::after {
    right: 0;
}

.slideshow__progress-bar::before,
.slideshow__progress-bar::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    width: 100%;
    height: 2px;
    background: rgba(var(--progress-bar-color), 0.5);
    transition: background 0.2s ease-in-out;
}

.slideshow__progress-bar::after {
    transform-origin: var(--transform-origin-start);
    transform: scaleX(0);
    background: rgb(var(--progress-bar-color));
}

.slideshow__progress-bar[aria-current='true']::after {
    animation: slideshowProgressBarAnimation var(--section-autoplay-duration) linear;
    animation-play-state: var(--section-animation-play-state, paused);
    animation-fill-mode: forwards;
}

@media screen and (min-width: 741px) {
    .slideshow--small {
        --slideshow-min-height: 70vw;
    }

    .slideshow--medium {
        --slideshow-min-height: 90vw;
    }

    .slideshow--large {
        --slideshow-min-height: 105vw;
    }
}

@media screen and (min-width: 1000px) {
    .slideshow--small {
        --slideshow-min-height: 42vw;
    }

    .slideshow--medium {
        --slideshow-min-height: 48vw;
    }

    .slideshow--large {
        --slideshow-min-height: 54vw;
    }

    .slideshow__slide--split .slideshow__image-wrapper {
        width: 50%;
    }

    [dir='ltr'] .slideshow__slide--split .slideshow__image-wrapper--secondary {
        left: calc(50% - 1px);
    }

    [dir='rtl'] .slideshow__slide--split .slideshow__image-wrapper--secondary {
        right: calc(50% - 1px);
    }

    .slideshow__slide--split .slideshow__image-wrapper--secondary {
        /* The -1px allows to take into account the potential approximation rounding that browsers do */
        width: calc(50% + 1px);
    }

    .slideshow__slide-inner::before {
        padding-bottom: calc(100 / var(--image-aspect-ratio) * 1%);
    }
}

@media screen and (min-width: 1200px) {
    .slideshow--small {
        --slideshow-min-height: 38vw;
    }

    .slideshow--medium {
        --slideshow-min-height: 40vw;
    }

    .slideshow--large {
        --slideshow-min-height: 48vw;
    }
}

.store-availability-container:not(:first-child) {
    margin-top: 8px;
}

.store-availability-information,
.store-availability-list__stock {
    display: flex;
    align-items: center;
}

.store-availability-information {
    align-items: baseline;
}

.store-availability-information .icon--store-availability-out-of-stock {
    position: relative;
    top: 1px;
}

[dir='ltr'] .store-availability-information-container {
    margin-left: 8px;
}

[dir='rtl'] .store-availability-information-container {
    margin-right: 8px;
}

.store-availability-information__title,
.store-availability-information__link {
    display: block;
}

.store-availability-information__title {
    margin-bottom: -2px;
}

.store-availability-information__link {
    margin-top: 10px;
}

/* MODAL */

.store-availabilities-modal__product-title {
    overflow: hidden;
    max-width: 85%;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-availabilities-modal__variant-title {
    margin-top: 6px;
}

.store-availabilities-list {
    margin-top: 10px;
}

.store-availability-list__item {
    padding-top: 24px;
}

.store-availability-list__item + .store-availability-list__item {
    margin-top: 22px;
    border-top: 1px solid rgb(var(--border-color));
}

.store-availability-list__location {
    margin-bottom: 2px;
}

[dir='ltr'] .store-availability-list__stock svg {
    margin-right: 8px;
}

[dir='rtl'] .store-availability-list__stock svg {
    margin-left: 8px;
}

.store-availability-list__contact {
    margin-top: 8px;
}

.store-availability-list__contact p {
    margin-bottom: 0; /* Remove the margin of the formatted address by Shopify */
}

.testimonial-list {
    display: block;
    max-width: 580px;
    margin-right: auto;
    margin-left: auto;
}

.testimonial__author,
.testimonial-list__nav {
    padding: 0 24px; /* The blockquote has a natural spacing that we have to add on other elements */
}

.testimonial-list__wrapper {
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
}

.testimonial {
    will-change: transform;
    display: block;
    flex-shrink: 0;
    order: 0;
    width: 100%;
}

.testimonial[hidden] {
    order: 1;
    visibility: hidden;
}

.testimonial:not(:only-child) {
    cursor: grab;
    user-select: none;
}

.testimonial__content {
    margin: 0;
}

.testimonial__author {
    margin-top: 32px;
}

.testimonial-list__nav {
    margin-top: 40px;
}

@media screen and (min-width: 741px) {
    [dir='ltr'] .testimonial__author,
    [dir='ltr'] .testimonial-list__nav {
        padding: 0 0 0 49px;
    }

    [dir='rtl'] .testimonial__author,
    [dir='rtl'] .testimonial-list__nav {
        padding: 0 49px 0 0;
    }

    .testimonial__author,
    .testimonial-list__nav {
        /* The blockquote has a natural spacing that we have to add on other elements */
        margin-top: 32px;
    }
}

@media screen and (min-width: 1000px) {
    .testimonial-list {
        max-width: 690px;
    }
}

@media screen and (min-width: 1200px) {
    .testimonial-list {
        max-width: 875px;
    }

    [dir='ltr'] .testimonial__author,
    [dir='ltr'] .testimonial-list__nav {
        padding: 0 0 0 69px;
    }

    [dir='rtl'] .testimonial__author,
    [dir='rtl'] .testimonial-list__nav {
        padding: 0 69px 0 0;
    }

    .testimonial__author,
    .testimonial-list__nav {
        /* The blockquote has a natural spacing that we have to add on other elements */
        margin-top: 40px;
    }
}

.text-with-icons {
    display: block;
}

.text-with-icons__list {
    scroll-snap-type: x mandatory;
    display: flex;
    margin-right: calc(-1 * var(--container-gutter));
    margin-left: calc(-1 * var(--container-gutter));
}

.text-with-icons__item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: block;
    flex: none;
    width: 100%;
    padding: 0 48px;
    text-align: center;
}

.text-with-icons__icon-wrapper {
    margin-bottom: 16px;
}

.text-with-icons__custom-icon {
    display: block;
    max-width: 24px;
}

.text-with-icons__icon-wrapper > * {
    margin: 0 auto;
}

.text-with-icons__dots {
    margin-top: 26px;
}

@media screen and (min-width: 1000px) {
    .text-with-icons__list {
        display: grid;
        grid-auto-columns: minmax(200px, 400px);
        grid-auto-flow: column;
        grid-gap: 48px;
        gap: 48px;
        justify-content: center;
        margin-right: 0;
        margin-left: 0;
    }

    .text-with-icons__item {
        padding: 0; /* Spacing is already added by the grid */
    }

    .text-with-icons__content-wrapper .heading + p {
        margin-top: 16px; /* We have a slightly different spacing here */
    }
}

.timeline__inner {
    position: relative;
}

.timeline__list-wrapper {
    display: block;
}

.timeline__list {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: safe center;
    min-width: min-content;
}

.timeline__item {
    color: rgb(var(--text-color));
}

.timeline__content {
    padding: 40px;
    background: rgb(var(--section-box-background));
}

.timeline__image.placeholder-background {
    background: rgb(var(--text-color));
    fill: rgb(var(--section-background));
}

.timeline__nav-wrapper {
    margin-top: 40px;
}

.timeline__nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--section-items-count), minmax(0, 1fr));
    align-items: start;
    padding-top: 18px;
}

[dir='ltr'] .timeline__nav-item {
    padding-right: 48px;
}

[dir='rtl'] .timeline__nav-item {
    padding-left: 48px;
}

.timeline__nav-item {
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

[dir='ltr'] .timeline__nav-item:last-child {
    padding-right: 0;
}

[dir='rtl'] .timeline__nav-item:last-child {
    padding-left: 0;
}

.timeline__nav-item[aria-current='true'] {
    opacity: 1;
}

[dir='ltr'] .timeline__progress-bar {
    left: 0;
}

[dir='rtl'] .timeline__progress-bar {
    right: 0;
}

.timeline__progress-bar {
    position: absolute;
    top: 0;
    width: 100%;
}

.timeline__progress-bar::before {
    transition: transform 0.3s ease-in-out;
}

[dir='ltr'] .timeline__prev-next-buttons {
    right: calc(var(--container-outer-width) - 28px);
}

[dir='rtl'] .timeline__prev-next-buttons {
    left: calc(var(--container-outer-width) - 28px);
}

.timeline__prev-next-buttons {
    position: absolute;
    z-index: 1;
    top: calc(50% - 56px); /* 56px is the height of a single button */ /* 28px is half the width of button */
}

@media screen and (max-width: 999px) {
    /* On mobile and tablet we have a very special layout and scrolling pattern. What happens is that by default
     images appear "static", and when scrolling the content goes "on top" of the image */
    .timeline {
        --timeline-image-max-width: 70vw;
        --timeline-content-max-width: 79vw;
    }

    .timeline__list-wrapper {
        scroll-snap-type: x mandatory;
    }

    .timeline__list-wrapper .container {
        padding-right: 0;
        padding-left: 0;
    }

    .timeline__list {
        padding-right: calc((100vw - var(--timeline-image-max-width)) / 2);
        padding-left: calc((100vw - var(--timeline-image-max-width)) / 2);
    }

    .timeline__item {
        display: grid;
        grid-template-columns: var(--timeline-image-max-width) var(--timeline-content-max-width);
        align-items: center;
    }

    [dir='ltr'] .timeline__item:not(:last-child) {
        padding-right: calc((100vw - var(--timeline-image-max-width)));
    }

    [dir='rtl'] .timeline__item:not(:last-child) {
        padding-left: calc((100vw - var(--timeline-image-max-width)));
    }

    [dir='ltr'] .timeline__image-wrapper {
        left: calc((100vw - var(--timeline-image-max-width)) / 2);
    }

    [dir='rtl'] .timeline__image-wrapper {
        right: calc((100vw - var(--timeline-image-max-width)) / 2);
    }

    .timeline__image-wrapper {
        position: sticky;
    }

    .timeline__image {
        width: 100%;
        border-radius: var(--block-border-radius);
    }

    .timeline__content-wrapper {
        z-index: 1;
        max-width: var(--timeline-content-max-width);
        border-radius: var(--block-border-radius);
        box-shadow: -10px 0 30px 10px rgba(var(--section-background), 0.2);
    }

    [dir='ltr'] .timeline__content {
        margin-right: calc(-1 * (var(--timeline-content-max-width) - var(--timeline-image-max-width)));
    }

    [dir='rtl'] .timeline__content {
        margin-left: calc(-1 * (var(--timeline-content-max-width) - var(--timeline-image-max-width)));
    }

    .timeline__content {
        position: relative;
        border-radius: var(--block-border-radius);
    }

    [dir='ltr'] .timeline__content::before {
        right: 100%;
    }

    [dir='rtl'] .timeline__content::before {
        left: 100%;
    }

    .timeline__content::before {
        pointer-events: none;
        content: '';
        position: absolute;
        top: 0;
        width: var(--timeline-image-max-width);
        height: 100%;
    }

    .timeline__content,
    .timeline__content::before {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .timeline__nav-wrapper {
        margin-right: calc(-1 * var(--container-gutter));
        margin-left: calc(-1 * var(--container-gutter));
    }

    .timeline__nav-scroller {
        width: max-content;
        min-width: 100%;
    }

    .timeline__nav {
        margin-right: 24px;
        margin-left: 24px;
    }

    .timeline__nav-item {
        max-width: 190px;
    }
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .timeline {
        --timeline-image-max-width: 50vw;
        --timeline-content-max-width: 54vw;
    }
}

@media screen and (min-width: 1000px) {
    .timeline__list {
        align-items: stretch;
    }

    .timeline__list-wrapper {
        overflow: hidden;
    }

    .timeline__item {
        z-index: 0; /* Creating new stacking context is needed on Safari to apply the border radius */
        overflow: hidden;
        display: flex;
        flex: none;
        width: calc(var(--grid-column-width) * 13 + var(--grid-gap) * 12);
        background: rgb(var(--section-box-background));
        border-radius: var(--block-border-radius);
        transition: opacity 0.25s ease-in-out;
    }

    .timeline__item[hidden] {
        will-change: opacity;
        opacity: 0.2;
    }

    [dir='ltr'] .timeline__item:not(:last-child) {
        margin-right: calc(var(--grid-column-width) + var(--grid-gap));
    }

    [dir='rtl'] .timeline__item:not(:last-child) {
        margin-left: calc(var(--grid-column-width) + var(--grid-gap));
    }

    .timeline__item:last-child:not(:only-child) {
        margin-right: var(--container-outer-width);
    }

    .timeline__content-wrapper {
        align-self: center;
    }

    .timeline__content-wrapper--top {
        align-self: flex-start;
    }

    .timeline__content-wrapper--bottom {
        align-self: flex-end;
    }

    .timeline__image-wrapper,
    .timeline__content-wrapper {
        flex: none;
        width: 50%;
    }

    .timeline__image-wrapper {
        min-height: 100%;
    }

    .timeline__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    [dir='ltr'] .timeline__nav-item {
        padding-right: 20px;
    }

    [dir='rtl'] .timeline__nav-item {
        padding-left: 20px;
    }
}

@media screen and (min-width: 1400px) {
    .timeline__content {
        padding: 64px;
    }
}

/* For the boxed variation, the size setting controls the width */

.video-section--boxed {
    margin-right: auto;
    margin-left: auto;
}

.video-section--boxed.video-section--small {
    max-width: 800px;
}

.video-section--boxed.video-section--medium {
    max-width: 1000px;
}

.video-section--boxed.video-section--large {
    max-width: 1200px;
}

/* For the full-width, the size setting controls the height */

.video-section--full .video-wrapper {
    --video-width: 100vw;

    height: var(--video-height);
}

.video-section--full.video-section--small {
    --video-height: 250px;
}

.video-section--full.video-section--medium {
    --video-height: 350px;
}

.video-section--full.video-section--large {
    --video-height: 450px;
}

@media screen and (min-width: 741px) and (max-width: 999px) {
    .video-section--full.video-section--small {
        --video-height: 300px;
    }

    .video-section--full.video-section--medium {
        --video-height: 375px;
    }

    .video-section--full.video-section--large {
        --video-height: 425px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
    .video-section--full.video-section--small {
        --video-height: 400px;
    }

    .video-section--full.video-section--medium {
        --video-height: 500px;
    }

    .video-section--full.video-section--large {
        --video-height: 570px;
    }
}

@media screen and (min-width: 1200px) {
    .video-section--full.video-section--small {
        --video-height: 600px;
    }

    .video-section--full.video-section--medium {
        --video-height: 700px;
    }

    .video-section--full.video-section--large {
        --video-height: 800px;
    }
}

/* NOTE: this code is to fix a temporary issue introduced by Safari 15.4 that prevents any overflow: hidden to be scrollable
   programmatically. Those temporary fixes will be removed from the theme once a new version of Safari is released
 */

@media screen and (min-width: 1000px) {
    .product-list__inner--scroller {
        scroll-snap-type: x mandatory;
        overflow: auto hidden;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .product-list__inner--scroller .product-item {
        scroll-snap-align: end;
    }

    .timeline__list-wrapper {
        scroll-snap-type: x mandatory;
        overflow: auto hidden;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .timeline__item {
        scroll-snap-align: center;
    }
}

/******* START OF LOCAL CUSTOMIZATION FOR M-EXPERIMENT ********/

.h2 {
    scroll-margin-top: 70px;
}

@media screen and (min-width: 741px) {
    .h2 {
        scroll-margin-top: 98px;
    }
}

/* swatches customization */
.block-swatch__radio + .block-swatch__item {
    color: rgb(var(--primary-button-text));
    background: rgb(var(--secondary-background));
    border-color: rgb(var(--text-color));
}

.block-swatch__radio:checked + .block-swatch__item {
    color: #fff;
    background: rgb(var(--background));
    border-color: rgb(var(--primary-button-background));
    border-width: 3px;
}

.block-swatch__item::after {
    content: none;
}

.color-swatch__radio + .color-swatch__item {
    color: rgb(var(--primary-button-text));
    background: rgb(var(--secondary-background));
    border: 1px solid rgb(var(--text-color));
}

.color-swatch__radio:checked + .color-swatch__item {
    color: #fff;
    background: rgb(var(--background));
    border-color: rgb(var(--primary-button-background));
    border-width: 3px;
}

.color-swatch__item::after {
    content: none;
}

.color-swatch__item::before {
    content: none;
}

/* hiding arrows in article list */
.article-list .article-item__arrow {
    display: none;
}

.article__inner .gallery {
    margin-top: 5rem;
}

.gallery .container {
    padding: 0;
}

.article__prev-next {
    background: rgb(var(--root-background));
}

.article__inner {
    flex-direction: column;
}

@media screen and (min-width: 741px) {
    .article__inner {
        display: block;
        margin: 0;
    }
}

@media screen and (min-width: 741px) {
    .gallery__list-wrapper.is-scrollable .gallery__list::after {
        content: none;
    }
}

.prev-next-button {
    color: rgb(241 241 242);
    background: rgb(0 0 0);
    border-color: rgb(241 241 242 / 15%);
}

.article__inner .gallery__prev-next-buttons {
    z-index: 0;
}

@media screen and (min-width: 741px) {
    .article__inner .gallery__prev-next-buttons {
        right: -27px;
    }
}

.article .section__headings,
.article__prev-next .section__headings {
    --container-outer-margin: 0px;

    width: 100%;
    max-width: var(--container-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: left;
}

/* updating the up-sell drawer to use a dark background */
.mini-cart__recommendations-inner {
    background: rgb(var(--background));
}

/* change product image background color (for products page, variants, swatches, product listing, featured products)
.PwzrGrid-item img,
.pwzrswiper-slide-active img,
.variant-swatch__item img,
.product-list__inner .product-item .product-item__image-wrapper {
  background-color: #fff;
}
*/

/* change sub heading size for mobile */
div.heading.heading--small,
h3.heading.heading--small {
    font-size: 18px;
}

/* change sub heading size for desktop */
@media screen and (min-width: 741px) {
    div.heading.heading--small,
    h3.heading.heading--small {
        font-size: 20px;
    }
}

/* changing password page button color */
.drawer__content .button--primary {
    --button-background: 226, 168, 41;

    background-image: linear-gradient(
            178deg,
            rgb(var(--button-background)),
            rgb(var(--button-background)) 10%,
            rgb(0 0 0 / 7%) 10%,
            rgb(0 0 0 / 7%) 100%
        ),
        linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
}

/* fixing issue where background image on button is overflowing the button */
.button,
.shopify-challenge__button,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button {
    border: 1px solid rgb(var(--button-background));
}

/* fixing issue where primary button color was not configurable via the customizer */
.button--primary,
.shopify-challenge__button,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button {
    --button-background: var(--root-primary-button-background);
    --button-text-color: var(--root-primary-button-text-color);
}

/* customization of variant collection, mostly carousel tweaks for mobile */

.product-list__inner:first-of-type {
    margin-top: 2rem;
}

.block__header {
    text-align: center;
}

.variant-collection .section__headings {
    margin-bottom: 24px;
}

@media screen and (max-width: 1000px) {
    .product-list__prev-next {
        display: flex;
    }
}

.product-list__prev-next {
    pointer-events: none;
    position: absolute;
    top: calc(var(--item-width) / var(--smallest-image-aspect-ratio) / 2 + 28px);
    left: -24px;
    display: flex;
    justify-content: space-between;
    width: calc(100% + 48px);
}

@media screen and (min-width: 1000px) {
    .product-list__prev-next {
        top: calc(var(--item-width) / var(--smallest-image-aspect-ratio) / 2 - 28px);
    }
}

.prev-next-button--prev:hover::before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 5px;
    display: block;
    width: 100px;
    height: 100px;
}

.prev-next-button--prev:not([disabled]),
.prev-next-button--next:not([disabled]) {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

/* 3 items */
@media screen and (min-width: 740px) {
    .product-list__prev-next--md-hidden {
        display: none;
    }
}

/* 4 items */
@media screen and (min-width: 1000px) {
    .product-list__prev-next--lg-hidden {
        display: none;
    }
}

@media screen and (min-width: 1000px) {
    .product-list__prev-next {
        left: -24px;
        width: calc(100% + 48px);
    }
}

.gallery__prev-next-buttons {
    left: -24px;
    display: flex;
    justify-content: space-between;
    width: calc(100% + 48px);
}

.prev-next-button {
    width: 24px;
    height: 32px;
}

@media screen and (min-width: 741px) {
    .prev-next-button:not(.prev-next-button--small) {
        width: 24px;
        height: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .prev-next-button:not(.prev-next-button--small) {
        width: 24px;
        height: 32px;
    }
}

@media screen and (max-width: 1000px) {
    .product-list__arrow {
        z-index: 1;
        transform: scale(0.5);
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 0.15s ease-in-out,
            visibility 0.15s ease-in-out,
            transform 0.15s ease-in-out;
    }

    .product-list__arrow:not([disabled]) {
        z-index: 1;
        transform: scale(1);
        visibility: visible;
        opacity: 0.85;
    }
}

@media screen and (min-width: 1000px) {
    .gallery__prev-next-buttons {
        left: -30px;
        width: calc(100% + 60px);
    }

    .gallery__arrow.prev-next-button:not(.prev-next-button--small) {
        width: 30px;
        height: 40px;
    }
}

.featured-collections product-list:not(:last-of-type) {
    margin-bottom: 4rem;
}

.featured-collections div.subheading,
.featured-collections h3.subheading {
    margin-bottom: 2rem !important;
    font-family: 'Helvetica Neue', var(--heading-font-family), sans-serif;
    font-weight: 300;
}

.product-list {
    /* We calculate the width of one product item cell thanks to power of CSS variables */
    --item-width: calc(
        (min(100vw - var(--container-gutter) * 2, var(--container-max-width-minus-gutters)) - 56px) /
            var(--section-products-per-row) -
            (var(--grid-gap) / var(--section-products-per-row) * (var(--section-products-per-row) - 1))
    );
}

.product-list__inner {
    padding: 0;
}

.product-list__inner--scroller {
    grid-auto-columns: calc(50% - 6px);
    grid-auto-flow: column;
    grid-template-columns: none;
    min-width: auto;
    margin-right: 24px;
    margin-left: 24px;
}

@media screen and (min-width: 740px) {
    .product-list__inner--scroller {
        grid-auto-columns: calc(
            100% / var(--section-products-per-row, 4) -
                (var(--grid-gap) / var(--section-products-per-row, 4) * (var(--section-products-per-row, 4) - 1))
        );
        margin-right: 40px;
        margin-left: 40px;
    }
}

@media screen and (min-width: 999px) {
    .product-list__inner--scroller {
        margin-right: 0;
        margin-left: 0;
    }
}

/* updating the lightbox background color to white */
:root {
    --rio-lightbox-background-color: #fff !important;
}

/* adjusting font size for blog posts */
.article__content--16px p {
    font-size: 16px;
}

.article__content--18px p {
    font-size: 18px;
}

.article__content--20px p {
    font-size: 20px;
}

.article__content--22px p {
    font-size: 22px;
}

.article__content--24px p {
    font-size: 24px;
}

.article__content p img {
    max-width: 100%;
}

@media screen and (min-width: 1000px) {
    .article__content p img {
        max-width: 120%;
    }
}

.text-container img:not([style*='float']),
.rte img:not([style*='float']) {
    margin: 48px 0;
}

.gallery {
    --gallery-image-height: 320px;
}

@media screen and (min-width: 1000px) {
    .gallery {
        --gallery-image-height: 35vw;
    }
}

@media screen and (min-width: 1200px) {
    .gallery {
        --gallery-image-height: 30vw;
    }
}

@media screen and (min-width: 1400px) {
    .gallery {
        --gallery-image-height: 25vw;
    }
}

/* slideshow customizations */
.slideshow__text-wrapper .heading {
    word-break: break-word;
}

@media screen and (min-width: 740px) {
    .image-overlay__content-wrapper .text-container,
    .slideshow .text-container {
        width: auto;
    }
}

@media screen and (min-width: 1000px) {
    .image-overlay__content-wrapper .text-container,
    .slideshow .text-container {
        max-width: unset;
        padding: 50px;
    }
}

.image-overlay__content-wrapper .text-container,
.slideshow .text-container {
    z-index: 1;
    padding: 24px 0;
}

@media screen and (min-width: 740px) {
    .image-overlay__content-wrapper .text-container,
    .slideshow .text-container {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1200px) {
    .image-overlay__content-wrapper .text-container,
    .slideshow .text-container {
        padding: 0 100px;
    }
}

.slideshow .subheading,
image-with-text-overlay .subheading,
.section .subheading {
    font-family: 'Helvetica Neue', var(--heading-font-family), sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

@media screen and (min-width: 740px) {
    .slideshow h3.heading--small {
        font-size: 18px;
        font-weight: 500;
    }
}

.footer .linklist__item {
    display: block;
    margin: 0;
    padding-top: 0;
    font-size: 15px;
    line-height: 22.5px;
    line-height: auto;
}

.footer .linklist__item a {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 22.5px;
    -webkit-font-smoothing: auto;
}

.footer .linklist__item a:hover {
    text-decoration: underline;
}

.article__label {
    display: block;
    padding-bottom: 24px;
    font-weight: 500;
}

.article__back {
    padding-bottom: 0;
}

.article__icon {
    vertical-align: middle;
}

.article__icon-left {
    margin-right: 0.5rem;
}

.article__icon-right {
    margin-left: 0.5rem;
}

/* overwrite the shoy pay styles */

.shopify-payment-button__button svg,
.shopify-cleanslate svg.qZgSr5RiiBCTAMfQYsty {
    display: none !important;
}

.shopify-payment-button__button .ElVMgDjOgshGFMIvg3se {
    display: block;
    width: 82px;
    height: 20px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA5OSAyNCI+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBkPSJNMTMgLjAwNGgxNFYyMEgxM1ptMCAwIi8+PC9jbGlwUGF0aD48Y2xpcFBhdGggaWQ9ImIiPjxwYXRoIGQ9Ik02MiAuMDA0aDM3VjI0SDYyWm0wIDAiLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIHN0eWxlPSJzdHJva2U6bm9uZTtmaWxsLXJ1bGU6bm9uemVybztmaWxsOiNmZmY7ZmlsbC1vcGFjaXR5OjEiIGQ9Ik0yNS4zNjMgNy41NWMtLjc5My0xLjY4My0yLjMtMi43NjktNC41NjYtMi43NjktLjcuMDEyLTEuMzgzLjE4OC0yIC41MDgtLjYyMS4zMi0xLjE2Ljc4MS0xLjU3NCAxLjM0OGwtLjA4Mi4xMDFWLjE0OGEuMTQyLjE0MiAwIDAgMC0uMDQzLS4xMDFBLjE0LjE0IDAgMCAwIDE3IC4wMDRoLTMuMjFhLjE4NC4xODQgMCAwIDAtLjA5OS4wNDMuMTQ1LjE0NSAwIDAgMC0uMDM5LjEwMXYxOC44OTljMCAuMDM5LjAxMi4wNzQuMDQuMTAxLjAyNy4wMjQuMDYyLjA0LjA5Ny4wNGgzLjQzOGMuMDM1IDAgLjA3LS4wMTYuMDk3LS4wNGEuMTQyLjE0MiAwIDAgMCAuMDQzLS4xMDF2LTguMDU5YzAtMS41NjYgMS4wMzUtMi42NzUgMi42OTItMi42NzUgMS44MDggMCAyLjI2NSAxLjUwMyAyLjI2NSAzLjAzOXY3LjY5NWMwIC4wMzkuMDE2LjA3NC4wNDMuMTAxLjAyOC4wMjQuMDYzLjA0LjA5OC4wNGgzLjQzYy4wMzUgMCAuMDctLjAxNi4wOTctLjA0YS4xNDIuMTQyIDAgMCAwIC4wNDMtLjEwMVYxMC44OWMwLS4yODIgMC0uNTU1LS4wMzUtLjgyYTcuMzAyIDcuMzAyIDAgMCAwLS42MzctMi41MlptMCAwIi8+PC9nPjxwYXRoIHN0eWxlPSJzdHJva2U6bm9uZTtmaWxsLXJ1bGU6bm9uemVybztmaWxsOiNmZmY7ZmlsbC1vcGFjaXR5OjEiIGQ9Ik04LjIxIDEwLjM1MnMtMS43NDUtLjQxOC0yLjM5LS41ODJjLS42NDQtLjE2OC0xLjc3LS41MjQtMS43Ny0xLjM4MyAwLS44Ni45MDctMS4xMzMgMS44MjktMS4xMzMuOTIyIDAgMS45NDUuMjI2IDIuMDIzIDEuMjU4YS4xNS4xNSAwIDAgMCAuMDUxLjA5M2MuMDI3LjAyOC4wNjMuMDQuMDk4LjA0bDMuMzg2LS4wMTJhLjEzNS4xMzUgMCAwIDAgLjEwNS0uMDQ3LjEzOC4xMzggMCAwIDAgLjAzMi0uMDVjLjAwOC0uMDIuMDA4LS4wNC4wMDgtLjA2LS4yMS0zLjMtMy4wNzgtNC40OC01LjcyMy00LjQ4LTMuMTM2IDAtNS40MzMgMi4wOS01LjQzMyA0LjM5IDAgMS42OC40NzIgMy4yNTkgNC4xNzIgNC4zNTYuNjQ4LjE4OCAxLjUzLjQzOCAyLjMwNC42NTMuOTI2LjI2MSAxLjQyMi42NTYgMS40MjIgMS4yNzcgMCAuNzIzLTEuMDMxIDEuMjIzLTIuMDUgMS4yMjMtMS40NyAwLTIuNTE2LS41NTEtMi42MDItMS41NGEuMTM2LjEzNiAwIDAgMC0uMDQ3LS4wOTMuMTU2LjE1NiAwIDAgMC0uMTAyLS4wNGwtMy4zNzUuMDE2Yy0uMDIgMC0uMDM5LjAwNC0uMDU4LjAxMmEuMTA3LjEwNyAwIDAgMC0uMDQ3LjAzNS4xLjEgMCAwIDAtLjAzMS4wNS4xNDMuMTQzIDAgMCAwLS4wMTIuMDZjLjE1NiAzLjExMyAzLjEzNyA0Ljc5MyA1LjkxNCA0Ljc5MyA0LjEzNyAwIDYuMDA4LTIuMzUyIDYuMDA4LTQuNTUxLjAwNC0xLjAzNS0uMjMtMy4zOS0zLjcxMS00LjI4NVpNNTEuNzY2IDQuNzc3Yy0xLjcyIDAtMy4xNi45NjEtNC4wODYgMi4xMjFWNC45MTRhLjE0Mi4xNDIgMCAwIDAtLjA0My0uMTAxLjEzNi4xMzYgMCAwIDAtLjA5NC0uMDRoLTMuMjE1YS4xMzYuMTM2IDAgMCAwLS4wOTguMDQuMTQyLjE0MiAwIDAgMC0uMDQyLjEwMXYxOC41MzFjLjAwMy4wMzUuMDE5LjA3NS4wNDIuMDk4LjAyOC4wMjcuMDYzLjAzOS4wOTguMDM5aDMuNDM4Yy4wMzUgMCAuMDctLjAxMi4wOTctLjAzOWEuMTM2LjEzNiAwIDAgMCAuMDQtLjA5OHYtNi4wOTNoLjA1Yy41NDcuODQzIDIuMDQgMS44NTEgMy45OTIgMS44NTEgMy42NjQgMCA2LjcyMy0zLjA3IDYuNzIzLTcuMjE5LjAwNC0zLjk4LTMuMDQtNy4yMDctNi45MDItNy4yMDdabS0uMzE3IDEwLjg5MWEzLjU5IDMuNTkgMCAwIDEtMi4wNDctLjU3NCAzLjYyNiAzLjYyNiAwIDAgMS0xLjM4Mi0xLjYzIDMuNzE1IDMuNzE1IDAgMCAxLS4yNDctMi4xMjggMy42OSAzLjY5IDAgMCAxIC45NzMtMS45MDYgMy42MTkgMy42MTkgMCAwIDEgMS44NjMtMS4wMzUgMy42MDUgMy42MDUgMCAwIDEgMi4xMTguMTg3IDMuNjc3IDMuNjc3IDAgMCAxIDIuMjc3IDMuNDAyYy4wMDguNDc3LS4wNzguOTU0LS4yNTQgMS4zOTVhMy41ODMgMy41ODMgMCAwIDEtLjc2NiAxLjE5MSAzLjUyIDMuNTIgMCAwIDEtMS4xNi44MDVjLS40MzMuMTg4LS45MDIuMjktMS4zNzUuMjkzWk0zNC4wMTYgMy45NmMtMy4yMDMgMC00LjgwMSAxLjEwMy02LjA4NiAxLjk4MWwtLjA0LjAyOGEuMzE0LjMxNCAwIDAgMC0uMTI4LjE5MS4zMjguMzI4IDAgMCAwIC4wMzUuMjM1bDEuMjY1IDIuMjAzYS4zNDUuMzQ1IDAgMCAwIC4yMjcuMTU2LjMyLjMyIDAgMCAwIC4yNTgtLjA3bC4xMDEtLjA4NmMuNjYtLjU1OSAxLjcyLTEuMzA1IDQuMjc4LTEuNTA4IDEuNDI2LS4xMTMgMi42NTYuMjYyIDMuNTYyIDEuMTE3IDEgLjkzIDEuNTk4IDIuNDMgMS41OTggNC4wMTYgMCAyLjkxNC0xLjcwMyA0Ljc0Ni00LjQzNCA0Ljc4NS0yLjI1NC0uMDE2LTMuNzctMS4yLTMuNzctMi45NTMgMC0uOTI2LjQxOS0xLjUzMiAxLjIzMS0yLjEzN2EuMzQyLjM0MiAwIDAgMCAuMTI1LS4xODguMzE4LjMxOCAwIDAgMC0uMDMxLS4yMjJMMzEuMDcgOS4zMzZhLjMzMS4zMzEgMCAwIDAtLjA4Mi0uMDk4LjI4NS4yODUgMCAwIDAtLjExNy0uMDYyYy0uMDQzLS4wMTItLjA4Ni0uMDE2LS4xMzMtLjAxMmEuMzc0LjM3NCAwIDAgMC0uMTI1LjA0N2MtMS4yNzcuNzYyLTIuODQzIDIuMTY0LTIuNzYxIDQuODUxLjEwNSAzLjQyMiAyLjkyNSA2LjAzNiA2LjU5IDYuMTQxaC40MzNjNC4zNTUtLjE0NCA3LjUtMy40MDYgNy41LTcuODI4IDAtNC4wNjMtMi45MzQtOC40MTQtOC4zNi04LjQxNFpNNzIuMjE1IDYuMDVINzAuMDNhLjE5OS4xOTkgMCAwIDAtLjEzNi4wNi4xODMuMTgzIDAgMCAwLS4wNi4xMzZ2NC42MjVjMCAuMDUuMDI0LjA5OC4wNi4xMzdhLjE5NS4xOTUgMCAwIDAgLjEzNi4wNTVoMi4xODRjMS4zMjggMCAyLjMwOC0xLjA2IDIuMzA4LTIuNTA0IDAtMS40NS0uOTgtMi41MDgtMi4zMDgtMi41MDhaTTc4LjkxOCAxNC4yM2MwIC42NjguNTYyIDEuMDQzIDEuNTM5IDEuMDQzIDEuMzMyIDAgMi4xMTctLjcyNiAyLjExNy0yLjAxMXYtLjM3MWwtMS45OTIuMTAxYy0xLjA1LjA1NS0xLjY2NC40OTYtMS42NjQgMS4yMzhabTAgMCIvPjxnIGNsaXAtcGF0aD0idXJsKCNiKSI+PHBhdGggc3R5bGU9InN0cm9rZTpub25lO2ZpbGwtcnVsZTpub256ZXJvO2ZpbGw6I2ZmZjtmaWxsLW9wYWNpdHk6MSIgZD0iTTk1LjA4Ni4wNDdINjUuNzU0Yy0uNDggMC0uOTU3LjA5OC0xLjQwMi4yODEtLjQ0Ni4xODgtLjg0OC40NjEtMS4xODguODA1LS4zNC4zNC0uNjEuNzUtLjc5MyAxLjE5OS0uMTg0LjQ1LS4yNzcuOTMtLjI3NyAxLjQxNFYxOS45NWMwIC45OC4zODMgMS45MjIgMS4wNyAyLjYxN2EzLjY1OCAzLjY1OCAwIDAgMCAyLjU5IDEuMDgyaDI5LjMzMmMuNDguMDA0Ljk1Ny0uMDkzIDEuNDAyLS4yNzdhMy43MTIgMy43MTIgMCAwIDAgMS45OTItMmMuMTg0LS40NS4yNzgtLjkzLjI4Mi0xLjQxNFYzLjc1YzAtLjQ4NC0uMDk0LS45NjktLjI4Mi0xLjQxOGEzLjcwNyAzLjcwNyAwIDAgMC0uNzkzLTEuMjAzIDMuNzUgMy43NSAwIDAgMC0xLjE5NS0uODA1IDMuNjk5IDMuNjk5IDAgMCAwLTEuNDA2LS4yNzdaTTcyLjMyNCAxMi44ODNoLTIuMzA4Yy0uMDUxIDAtLjA5OC4wMi0uMTM3LjA1NWEuMjEyLjIxMiAwIDAgMC0uMDU1LjE0djMuMzE3YS4xOTkuMTk5IDAgMCAxLS4xOTUuMTk1aC0xLjYyNWEuMjI3LjIyNyAwIDAgMS0uMTM3LS4wNTkuMjAyLjIwMiAwIDAgMS0uMDU1LS4xMzZWNC40MzRjMC0uMDUxLjAyLS4xMDIuMDU1LS4xMzdhLjIwNy4yMDcgMCAwIDEgLjEzNy0uMDU5aDQuMzJjMi40NDYgMCA0LjIgMS44MDEgNC4yIDQuMzI0IDAgMi41MjQtMS43MzkgNC4zMjUtNC4xODggNC4zMjVaTTg0LjQ4IDE2LjM5YzAgLjAyNy0uMDAzLjA1LS4wMTUuMDc0YS4yMjkuMjI5IDAgMCAxLS4wNC4wNjZjLS4wMTkuMDE2LS4wMzguMDMyLS4wNjYuMDQzLS4wMjMuMDA4LS4wNDYuMDE2LS4wNzQuMDE2aC0xLjUzMWMtLjAyNyAwLS4wNS0uMDA4LS4wNzQtLjAxNmEuMjc4LjI3OCAwIDAgMS0uMDY3LS4wNDMuMjI5LjIyOSAwIDAgMS0uMDM5LS4wNjYuMTU5LjE1OSAwIDAgMS0uMDE1LS4wNzR2LS4zNmEuMTQ1LjE0NSAwIDAgMC0uMDItLjA5LjIwMi4yMDIgMCAwIDAtLjA3LS4wNTguMTU0LjE1NCAwIDAgMC0uMDk0LS4wMDQuMTQyLjE0MiAwIDAgMC0uMDc0LjA1Yy0uNDU3LjUwNS0xLjIwMy44NzItMi4zOS44NzItMS43NSAwLTIuOTA3LS45MTgtMi45MDctMi41MDgtLjAxNi0uMzg3LjA2Mi0uNzcuMjMtMS4xMjFhMi4zIDIuMyAwIDAgMSAuNzM1LS44NzFjLjYyOS0uNDggMS42MS0uNzI3IDMuMDU4LS43ODVsMS41NC0uMDUxdi0uNDUzYzAtLjkxOC0uNjEtMS4zMDUtMS41OS0xLjMwNS0uOTggMC0xLjU5OC4zNDgtMS43NDMuOTE4YS4xOTIuMTkyIDAgMCAxLS4wNy4xMDIuMTguMTggMCAwIDEtLjExNy4wMzVoLTEuNTJhLjIwNC4yMDQgMCAwIDEtLjA4Mi0uMDE2LjIwMS4yMDEgMCAwIDEtLjEwNS0uMTIxLjE2LjE2IDAgMCAxLS4wMDQtLjA4NmMuMjI3LTEuMzU1IDEuMzQtMi4zODcgMy43MS0yLjM4NyAyLjUyIDAgMy40MjcgMS4xODQgMy40MjcgMy40NDJabTkuNTU1LTcuNzU4LTMuNDE0IDkuMTkxYy0uNzc3IDIuMTMzLTIuMTMzIDIuNjg0LTMuNjIxIDIuNjg0YTIuOTk4IDIuOTk4IDAgMCAxLS44MzItLjEwMi4yMTkuMjE5IDAgMCAxLS4xMDYtLjA3NC4xOTUuMTk1IDAgMCAxLS4wMzktLjEyMXYtMS4zOTVhLjIxLjIxIDAgMCAxIC4wMTYtLjA4Ni4xOS4xOSAwIDAgMSAuMDU1LS4wNy4yMjQuMjI0IDAgMCAxIC4wNzQtLjAzOS4xNi4xNiAwIDAgMSAuMDg2IDBjLjIzNC4wNDMuNDczLjA2Ny43MS4wNjdhMS44NDMgMS44NDMgMCAwIDAgMS44NTUtMS4zMjRsLjEwMy0uMzIxYS4xOTQuMTk0IDAgMCAwIDAtLjEzM0w4NS43MyA4LjYzN2EuMTkyLjE5MiAwIDAgMS0uMDA3LS4wOTQuMjI4LjIyOCAwIDAgMSAuMDMtLjA4Ni4yMDIuMjAyIDAgMCAxIC4wNzEtLjA1OS4xODEuMTgxIDAgMCAxIC4wOS0uMDIzaDEuNTVjLjA0IDAgLjA3OS4wMTIuMTE0LjAzNWEuMjEzLjIxMyAwIDAgMSAuMDcuMDk0bDIuMTY4IDUuODM2Yy4wMTYuMDM1LjA0LjA3LjA3NS4wOTQuMDMuMDIzLjA3LjAzNS4xMTMuMDM1LjAzOSAwIC4wNzgtLjAxMi4xMTMtLjAzNWEuMjA2LjIwNiAwIDAgMCAuMDctLjA5NGwxLjg4My01LjgyYS4xODYuMTg2IDAgMCAxIC4xODQtLjEzN2gxLjU5NGMuMDI3IDAgLjA1OC4wMDguMDg2LjAyLjAyNy4wMTUuMDUuMDM0LjA3LjA1OC4wMi4wMjcuMDMxLjA1NS4wMzUuMDg2YS4xNzQuMTc0IDAgMCAxLS4wMDQuMDlabTAgMCIvPjwvZz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-position: left;
    background-position-x: left;
    background-size: 82px;
}

div.shopify-cleanslate .DnvZqPMEvBFbBre5UuP9,
div.shopify-cleanslate .DnvZqPMEvBFbBre5UuP9:hover:not(.LVeInvZ5HcNOW1Zsn7NH) {
    background: #000 !important;
    border-color: #000 !important;
}

@media screen and (min-width: 740px) {
    .shopify-section--apps .vertical-breather {
        padding: 32px;
    }
}

/* legal RTE styles */

.faq-navigation + .rte h1 {
    padding: 0 24px;
    font-size: 32px;
    color: #fff;
}

@media screen and (min-width: 740px) {
    .faq-navigation + .rte h1 {
        font-size: 40px;
    }
}

.faq-navigation + .rte h2 {
    --anchor-offset: 20px;

    scroll-margin-top: calc(
        var(--header-height, 0px) * var(--enable-sticky-header) + var(--announcement-bar-height, 0px) *
            var(--enable-sticky-announcement-bar) + var(--anchor-offset, 20px)
    );
    display: block;
    margin-bottom: 2rem;
    padding: 20px 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2222222222;
    color: #fff;
    text-transform: var(--heading-text-transform);
    letter-spacing: 0.5px;
    background: rgb(38 38 38);
}

.faq-navigation + .rte h3 {
    margin: 0;
    margin-top: 1.25rem;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: var(--heading-text-transform);
    letter-spacing: 0;
}

.faq-navigation + .rte p {
    margin: 0;
    padding: 0 24px;
}

.faq-navigation + .rte ul {
    margin: 0;
    padding: 24px 24px 0 60px;
}

.faq-navigation + .rte a {
    font-weight: 700;
}

.shopify-section--main-customers-addresses h1,
.shopify-section--main-customers-addresses h1 *,
.shopify-section--main-customers-addresses .account__address-title,
.shopify-section--main-customers-addresses .account__address-details {
    color: #fff;
}

.shopify-section--main-customers-addresses .account__address,
.shopify-section--main-customers-addresses .account__address svg {
    color: #000;
}

.shopify-section--main-customers-login h1 {
    color: #fff;
}

.shopify-section--main-customers-account h1 {
    color: #fff;
}

/* subscribe/unsubscribe confirmations */
.shopify-email-marketing-confirmation__container {
    max-width: var(--container-max-width) !important;
    padding: 112px var(--container-gutter) 112px var(--container-gutter) !important;
}

.bis-edge-left .bis-button {
    display: none !important;
}

.product-form__payment-container #BIS_trigger {
    background: rgb(226 168 41);
}

.product-form__add-button.button.button--disabled.button--full {
    color: #fff;
    background: #707070;
}

/* adding * to required form fields */
form input[required='required'] + label::after,
form input[required] + label::after {
    content: ' *';
}

.shopify-section--main-customers-register .heading,
#login-form-container .heading {
    color: #ccc;
}

/* used to overlay svgs on images (tech page) */
.svg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.svg-overlay--scroller {
    top: 48px;
}

.badge {
    display: inline-block;
    padding: 2px 8px 1px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
}

@media screen and (min-width: 400px) {
    .badge {
        font-size: 14px;
    }
}

.card__badge {
    position: absolute;
    top: 1rem;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}

@media screen and (min-width: 400px) {
    .card__badge {
        left: 1rem;
        font-size: 14px;
    }
}

/* forcing the order of the badge on the PDP relative to the sibling element coming from variant wizard */
.product__badge {
    order: 1;
}

.rio-product-option-title {
    order: 2;
}
sup {
    position: relative;
	font-size: 40%;
	vertical-align: super;
	opacity: 1;
	font-weight: inherit;
    top: -0.3em;
    padding-left: 2px;
}
/* sup {
    position: relative;
    top: -3.2em;
    left: 2px;
    font-size: 20%;
    font-weight: 600;
    line-height: 0;
    vertical-align: baseline;
    opacity: 0.7;
}
sup.large {
    font-size: 42%;
    top: -1.4em;
}
sup-pdp {
    position: relative;
    top: -1.5em;
    left: 0.25rem;
    font-size: 40%;
    line-height: 0;
    vertical-align: baseline;
}

.l-product__title sup,
.tech-specs__item sup,
.l-tech-modal sup,
sup.tm-mark {
	position: relative;
	font-size: 40%;
	vertical-align: super;
	opacity: 1;
	font-weight: inherit;
    top: -3px;
} */

sup-footer {
    position: relative;
    top: -0.5em;
    left: 2px;
    font-size: 80%;
    vertical-align: baseline;
}

.va {
    position: relative;
    top: -0.12em;
}

.product-content ul:first-of-type,
.product-content ul:nth-of-type(2) {
    margin-left: 0;
    list-style: none;
}

.product-content ul:first-of-type li {
    padding-bottom: 10px;
}

.product-content ul:first-of-type li svg {
    width: 20px;
    height: 20px;
    margin-right: 0.3rem;
    vertical-align: text-bottom;
}

.product-content ul:nth-of-type(2) li svg {
    width: 26px;
    height: 26px;
    margin-right: 0.1rem;
    vertical-align: top;
}

/************************************************************************************************************************************************************************
*************************************************************************************************************************************************************************
*************************************************************************************************************************************************************************

CUSTOMIZE CODE

*************************************************************************************************************************************************************************
*************************************************************************************************************************************************************************
*************************************************************************************************************************************************************************/
.l-media-ratio {
    position: relative;
    height: 0;
    /* padding-top: var(--l-media-ratio-mobile, 100%); */
    padding-top: 100%;
}

@media screen and (min-width: 990px) {
    .l-media-ratio {
        padding-top: var(--l-media-ratio-desktop, 100%);
    }
}

.l-media-ratio > * {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.l-scrollbar {
    --scrollbar-width: 0.4rem;
    --scrollbar-radius: 0.5rem;
    --scrollbar-thumb-width: 0.2rem;
    --scrollbar-thumb-bg: #c6bfbf;
    --scrollbar-thumb-hover-bg: #1f1e1e;
    --scrollbar-track-bg: #f1eded;
    --scrollbar-button-bg: #999393;
}

.l-scrollbar::-webkit-scrollbar {
    width: var(--scrollbar-width);
}

.l-scrollbar::-webkit-scrollbar-thumb {
    width: var(--scrollbar-thumb-width);
    background-color: var(--scrollbar-thumb-bg);
    border-radius: var(--scrollbar-radius);
}

@media (hover: hover) {
    .l-scrollbar::-webkit-scrollbar-thumb:hover {
        background-color: var(--scrollbar-thumb-hover-bg);
    }
}

.l-scrollbar::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-bg);
}

.l-scrollbar::-webkit-scrollbar-button {
    background-color: var(--scrollbar-button-bg);
    border-radius: var(--scrollbar-radius);
}

.l-scrollbar--hidden {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.l-scrollbar--hidden::-webkit-scrollbar-track,
.l-scrollbar--hidden::-webkit-scrollbar-button,
.l-scrollbar--hidden::-webkit-scrollbar-thumb,
.l-scrollbar--hidden::-webkit-scrollbar {
    display: none;
    width: 0;
}

/************************************************************************************

GENERAL

*************************************************************************************/
.l-relative {
  position: relative;
}

.l-absolute {
  position: absolute;
}

.l-inset-0 {
  inset: 0;
}

.l-zindex-1 {
  --l-link-overlay-z-index: 1;
  z-index: 1;
}

.l-zindex-2 {
  --l-link-overlay-z-index: 2;
  z-index: 2;
}

.l-zindex-3 {
  --l-link-overlay-z-index: 3;
  z-index: 3;
}

.l-zindex-4 {
  --l-link-overlay-z-index: 4;
  z-index: 4;
}

.l-hidden {
    display: none !important;
}

@media screen and (max-width: 479px) {
    .l-hidden-max-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 480px) {
    .l-hidden-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 749px) {
    .l-hidden-max-tablet {
        display: none !important;
    }
}

@media screen and (min-width: 750px) {
    .l-hidden-tablet {
        display: none !important;
    }
}

@media screen and (max-width: 989px) {
    .l-hidden-max-desktop {
        display: none !important;
    }
}

@media screen and (min-width: 990px) {
    .l-hidden-desktop {
        display: none !important;
    }
}


@media screen and (max-width: 1279px) {
  .l-hidden-max-desktopLg {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .l-hidden-desktopLg {
    display: none !important;
  }
}

.l-overflow-hidden {
    overflow: hidden;
}

.l-overflow-y-auto {
    overflow-y: auto;
}

.l-overflow-x-auto {
    overflow-x: auto;
}

.l-overflow-x-hidden {
    overflow-x: hidden;
}

.l-overflow-y-hidden {
    overflow-y: hidden;
}

.l-visually-hidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    word-wrap: normal !important;
    clip: rect(0 0 0 0);
    border: 0;
}

.l-input-visually-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
}

.l-flex {
    display: flex;
}

.l-flex-wrap {
    flex-wrap: wrap;
}

.l-flex-nowrap {
    flex-wrap: nowrap;
}

.l-flex-col {
    flex-direction: column;
}

.l-flex-1 {
    flex: 1;
}

.l-items-center {
    align-items: center;
}

.l-items-start {
    align-items: flex-start;
}

.l-items-end {
    align-items: flex-end;
}

.l-justify-center {
    justify-content: center;
}

.l-justify-start {
    justify-content: flex-start;
}

.l-justify-end {
    justify-content: flex-end;
}

.l-justify-between {
    justify-content: space-between;
}

.l-block {
    display: block;
}

.l-inline-block {
    display: inline-block;
}

.l-inline {
    display: inline;
}

.l-inline-flex {
    display: inline-flex;
}

.l-grid {
    display: grid;
}

.l-w-full {
    width: 100%;
}

.l-h-full {
    height: 100%;
}

.l-ml-auto {
    margin-left: auto;
}

.l-mr-auto {
    margin-right: auto;
}

.l-mt-auto {
    margin-top: auto;
}

.l-mb-auto {
    margin-bottom: auto;
}

.l-mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.l-my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.l-text-left {
    text-align: left;
}

.l-text-center, .text-center {
    text-align: center;
}

.l-text-right {
    text-align: right;
}

.l-text-400 {
    font-weight: 400;
}

.l-text-500 {
    font-weight: 500;
}

.l-text-600 {
    font-weight: 600;
}

.l-text-700 {
    font-weight: 700;
}

.l-text-none {
    font-size: 0;
}

.l-leading-1 {
    line-height: 1;
}

.l-underline {
    text-decoration: underline;
}

.l-transition-default {
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.l-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.l-input {
    padding: 0 5px;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 500;
    color: currentcolor;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: none;
    box-shadow: none;
}

.l-input::-webkit-outer-spin-button,
.l-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.l-input[type='number'] {
    appearance: textfield;
}


/*********************************************
*              OVERLAY CONTENT               *
**********************************************/
@media screen and (max-width: 479px) {
  .l-content-wrapper {
    align-items: var(--l-cw-vertical-mobile, flex-start);
    justify-content: var(--l-cw-horizontal-mobile, flex-start);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-content-wrapper {
    align-items: var(--l-cw-vertical-tablet, var(--l-cw-vertical-mobile));
    justify-content: var(--l-cw-horizontal-tablet, var(--l-cw-horizontal-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-content-wrapper {
    align-items: var(--l-cw-vertical-desktop, var(--l-cw-vertical-mobile));
    justify-content: var(--l-cw-horizontal-desktop, var(--l-cw-horizontal-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-content-inner {
    max-width: var(--l-content-max-width-mobile);
    padding: var(--l-content-inner-pad-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-content-inner {
    max-width: var(--l-content-max-width-tablet, var(--l-content-max-width-mobile));
    padding: var(--l-content-inner-pad-tablet, var(--l-content-inner-pad-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-content-inner {
    max-width: var(--l-content-max-width-desktop, var(--l-content-max-width-mobile));
    padding: var(--l-content-inner-pad-desktop, var(--l-content-inner-pad-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-content-bg {
    background: var(--l-content-bg-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-content-bg {
    background: var(--l-content-bg-tablet, var(--l-content-bg-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-content-bg {
    background: var(--l-content-bg-desktop, var(--l-content-bg-mobile));
  }
}
.l-content-overlay--all-screens {
  position: absolute;
  z-index: var(--l-content-overlay-index, 3);
  inset: 0;
  background: var(--l-content-overlay-bg);
}
@media screen and (min-width: 480px) {
  .l-content-overlay--mobile {
    position: absolute;
    z-index: var(--l-content-overlay-index, 3);
    inset: 0;
    background: var(--l-content-overlay-bg);
  }
}
@media screen and (min-width: 768px) {
  .l-content-overlay--tablet {
    position: absolute;
    z-index: var(--l-content-overlay-index, 3);
    inset: 0;
    background: var(--l-content-overlay-bg);
  }
}
@media screen and (min-width: 1024px) {
  .l-content-overlay--desktop {
    position: absolute;
    z-index: var(--l-content-overlay-index, 3);
    inset: 0;
    background: var(--l-content-overlay-bg);
  }
}
.l-content-overlay-wrapper--all-screens {
  height: min-content;
}
@media screen and (min-width: 480px) {
  .l-content-overlay-wrapper--mobile {
    height: min-content;
  }
}
@media screen and (min-width: 768px) {
  .l-content-overlay-wrapper--tablet {
    height: min-content;
  }
}
@media screen and (min-width: 1024px) {
  .l-content-overlay-wrapper--desktop {
    height: min-content;
  }
}

/*********************************************
*               BLOCK CLASSES                *
**********************************************/
@media screen and (max-width: 479px) {
  .l-block-spacing {
    margin-bottom: var(--l-block-mb-mobile);
    padding-bottom: var(--l-block-pb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-spacing {
    margin-bottom: var(--l-block-mb-tablet, var(--l-block-mb-mobile));
    padding-bottom: var(--l-block-pb-tablet, var(--l-block-pb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-spacing {
    margin-bottom: var(--l-block-mb-desktop, var(--l-block-mb-mobile));
    padding-bottom: var(--l-block-pb-desktop, var(--l-block-pb-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-text-alignment {
    text-align: var(--l-block-alignment-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-text-alignment {
    text-align: var(--l-block-alignment-tablet, var(--l-block-alignment-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-text-alignment {
    text-align: var(--l-block-alignment-desktop, var(--l-block-alignment-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-blocks-alignment {
    justify-content: var(--l-blocks-alignment-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-blocks-alignment {
    justify-content: var(--l-blocks-alignment-tablet, var(--l-blocks-alignment-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-blocks-alignment {
    justify-content: var(--l-blocks-alignment-desktop, var(--l-blocks-alignment-mobile));
  }
}
@media screen and (max-width: 1023px) {
  .l-block-max-width {
    max-width: var(--l-block-max-width-mobile);
  }
}
@media screen and (min-width: 1024px) {
  .l-block-max-width {
    max-width: var(--l-block-max-width-desktop, var(--l-block-max-width-mobile));
  }
}
@media screen and (max-width: 1023px) {
  .l-block-content-position--mobile-left {
    margin-right: auto;
  }
  .l-block-content-position--mobile-center {
    margin-right: auto;
    margin-left: auto;
  }
  .l-block-content-position--mobile-right {
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .l-block-content-position--desktop-left {
    margin-right: auto;
  }
  .l-block-content-position--desktop-center {
    margin-right: auto;
    margin-left: auto;
  }
  .l-block-content-position--desktop-right {
    margin-left: auto;
  }
}
@media screen and (max-width: 1023px) {
  .l-block-gap {
    gap: var(--l-block-gap-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-gap {
    gap: var(--l-block-gap-tablet, var(--l-block-gap-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-gap {
    gap: var(--l-block-gap-desktop, var(--l-block-gap-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-icon {
    width: var(--l-icon-width-mobile);
    height: var(--l-icon-height-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-icon {
    width: var(--l-icon-width-tablet, var(--l-icon-width-mobile));
    height: var(--l-icon-height-tablet, var(--l-icon-height-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-icon {
    width: var(--l-icon-width-desktop, var(--l-icon-width-mobile));
    height: var(--l-icon-height-desktop, var(--l-icon-height-mobile));
  }
}
@media screen and (max-width: 1023px) {
  .l-block-icon img {
    object-fit: var(--l-icon-object-fit-mobile);
  }
}
@media screen and (min-width: 1024px) {
  .l-block-icon img {
    object-fit: var(--l-icon-object-fit-desktop, var(--l-icon-object-fit-mobile));
  }
}
.l-block-icon > svg {
  width: 100%;
  height: 100%;
}

h1.l-block-text,
h2.l-block-text,
h3.l-block-text,
h4.l-block-text,
h5.l-block-text,
h6.l-block-text {
  margin-top: 0;
}

.l-block-text,
.l-block-text *:not(.l-button) {
  font-family: var(--l-text-font-family);
}
@media screen and (max-width: 479px) {
  .l-block-text,
  .l-block-text *:not(.l-button) {
    font-size: var(--l-text-size-mobile);
    font-weight: var(--l-text-weight-mobile);
    line-height: var(--l-text-lh-mobile);
    color: var(--l-text-color);
    letter-spacing: var(--l-text-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-text,
  .l-block-text *:not(.l-button) {
    font-size: var(--l-text-size-tablet, var(--l-text-size-mobile));
    font-weight: var(--l-text-weight-tablet, var(--l-text-weight-mobile));
    line-height: var(--l-text-lh-tablet, var(--l-text-lh-mobile));
    color: var(--l-text-color-tablet, var(--l-text-color));
    letter-spacing: var(--l-text-ls-tablet, var(--l-text-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-text,
  .l-block-text *:not(.l-button) {
    font-size: var(--l-text-size-desktop, var(--l-text-size-mobile));
    font-weight: var(--l-text-weight-desktop, var(--l-text-weight-mobile));
    line-height: var(--l-text-lh-desktop, var(--l-text-lh-mobile));
    color: var(--l-text-color-desktop, var(--l-text-color));
    letter-spacing: var(--l-text-ls-desktop, var(--l-text-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-text a:not(.l-button) {
    color: var(--l-text-link-color, var(--l-text-color));
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-text a:not(.l-button) {
    color: var(--l-text-link-color-tablet, var(--l-text-color));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-text a:not(.l-button) {
    color: var(--l-text-link-color-desktop, var(--l-text-color));
  }
}
.l-block-text--default {
  --l-text-color: #000;
  --l-text-size-mobile: 15px;
  --l-text-weight-mobile: 500;
  --l-text-lh-mobile: 1.2;
  --l-text-ls-mobile: 0;
}
.l-block-rte {
  font-family: var(--l-rte-font-family);
}
@media screen and (max-width: 479px) {
  .l-block-rte {
    font-size: var(--l-rte-size-mobile);
    font-weight: var(--l-rte-weight-mobile);
    line-height: var(--l-rte-lh-mobile);
    color: var(--l-rte-color);
    letter-spacing: var(--l-rte-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte {
    font-size: var(--l-rte-size-tablet, var(--l-rte-size-mobile));
    font-weight: var(--l-rte-weight-tablet, var(--l-rte-weight-mobile));
    line-height: var(--l-rte-lh-tablet, var(--l-rte-lh-mobile));
    color: var(--l-rte-color-tablet, var(--l-rte-color));
    letter-spacing: var(--l-rte-ls-tablet, var(--l-rte-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte {
    font-size: var(--l-rte-size-desktop, var(--l-rte-size-mobile));
    font-weight: var(--l-rte-weight-desktop, var(--l-rte-weight-mobile));
    line-height: var(--l-rte-lh-desktop, var(--l-rte-lh-mobile));
    color: var(--l-rte-color-desktop, var(--l-rte-color));
    letter-spacing: var(--l-rte-ls-desktop, var(--l-rte-ls-mobile));
  }
}
.l-block-rte h1,
.l-block-rte h2,
.l-block-rte h3,
.l-block-rte h4,
.l-block-rte h5,
.l-block-rte h6,
.l-block-rte .h1,
.l-block-rte .h2,
.l-block-rte .h3,
.l-block-rte .h4,
.l-block-rte .h5,
.l-block-rte .h6,
.l-block-rte strong,
.l-block-rte b,
.l-block-rte th {
  font-weight: var(--l-font-heading-weight);
}
.l-block-rte h1,
.l-block-rte h1 *,
.l-block-rte .h1,
.l-block-rte .h1 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h1,
  .l-block-rte h1 *,
  .l-block-rte .h1,
  .l-block-rte .h1 * {
    font-size: var(--l-heading-h1-size-mobile);
    line-height: var(--l-heading-h1-lh-mobile);
    letter-spacing: var(--l-heading-h1-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h1,
  .l-block-rte h1 *,
  .l-block-rte .h1,
  .l-block-rte .h1 * {
    font-size: var(--l-heading-h1-size-tablet, var(--l-heading-h1-size-mobile));
    line-height: var(--l-heading-h1-lh-tablet, var(--l-heading-h1-lh-mobile));
    letter-spacing: var(--l-heading-h1-ls-tablet, var(--l-heading-h1-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h1,
  .l-block-rte h1 *,
  .l-block-rte .h1,
  .l-block-rte .h1 * {
    font-size: var(--l-heading-h1-size-desktop, var(--l-heading-h1-size-mobile));
    line-height: var(--l-heading-h1-lh-desktop, var(--l-heading-h1-lh-mobile));
    letter-spacing: var(--l-heading-h1-ls-desktop, var(--l-heading-h1-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h1,
  .l-block-rte .h1 {
    margin-bottom: var(--l-heading-h1-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h1,
  .l-block-rte .h1 {
    margin-bottom: var(--l-heading-h1-mb-tablet, var(--l-heading-h1-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h1,
  .l-block-rte .h1 {
    margin-bottom: var(--l-heading-h1-mb-desktop, var(--l-heading-h1-mb-mobile));
  }
}
.l-block-rte h2,
.l-block-rte h2 *,
.l-block-rte .h2,
.l-block-rte .h2 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h2,
  .l-block-rte h2 *,
  .l-block-rte .h2,
  .l-block-rte .h2 * {
    font-size: var(--l-heading-h2-size-mobile);
    line-height: var(--l-heading-h2-lh-mobile);
    letter-spacing: var(--l-heading-h2-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h2,
  .l-block-rte h2 *,
  .l-block-rte .h2,
  .l-block-rte .h2 * {
    font-size: var(--l-heading-h2-size-tablet, var(--l-heading-h2-size-mobile));
    line-height: var(--l-heading-h2-lh-tablet, var(--l-heading-h2-lh-mobile));
    letter-spacing: var(--l-heading-h2-ls-tablet, var(--l-heading-h2-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h2,
  .l-block-rte h2 *,
  .l-block-rte .h2,
  .l-block-rte .h2 * {
    font-size: var(--l-heading-h2-size-desktop, var(--l-heading-h2-size-mobile));
    line-height: var(--l-heading-h2-lh-desktop, var(--l-heading-h2-lh-mobile));
    letter-spacing: var(--l-heading-h2-ls-desktop, var(--l-heading-h2-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h2,
  .l-block-rte .h2 {
    margin-bottom: var(--l-heading-h2-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h2,
  .l-block-rte .h2 {
    margin-bottom: var(--l-heading-h2-mb-tablet, var(--l-heading-h2-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h2,
  .l-block-rte .h2 {
    margin-bottom: var(--l-heading-h2-mb-desktop, var(--l-heading-h2-mb-mobile));
  }
}
.l-block-rte h3,
.l-block-rte h3 *,
.l-block-rte .h3,
.l-block-rte .h3 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h3,
  .l-block-rte h3 *,
  .l-block-rte .h3,
  .l-block-rte .h3 * {
    font-size: var(--l-heading-h3-size-mobile);
    line-height: var(--l-heading-h3-lh-mobile);
    letter-spacing: var(--l-heading-h3-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h3,
  .l-block-rte h3 *,
  .l-block-rte .h3,
  .l-block-rte .h3 * {
    font-size: var(--l-heading-h3-size-tablet, var(--l-heading-h3-size-mobile));
    line-height: var(--l-heading-h3-lh-tablet, var(--l-heading-h3-lh-mobile));
    letter-spacing: var(--l-heading-h3-ls-tablet, var(--l-heading-h3-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h3,
  .l-block-rte h3 *,
  .l-block-rte .h3,
  .l-block-rte .h3 * {
    font-size: var(--l-heading-h3-size-desktop, var(--l-heading-h3-size-mobile));
    line-height: var(--l-heading-h3-lh-desktop, var(--l-heading-h3-lh-mobile));
    letter-spacing: var(--l-heading-h3-ls-desktop, var(--l-heading-h3-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h3,
  .l-block-rte .h3 {
    margin-bottom: var(--l-heading-h3-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h3,
  .l-block-rte .h3 {
    margin-bottom: var(--l-heading-h3-mb-tablet, var(--l-heading-h3-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h3,
  .l-block-rte .h3 {
    margin-bottom: var(--l-heading-h3-mb-desktop, var(--l-heading-h3-mb-mobile));
  }
}
.l-block-rte h4,
.l-block-rte h4 *,
.l-block-rte .h4,
.l-block-rte .h4 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h4,
  .l-block-rte h4 *,
  .l-block-rte .h4,
  .l-block-rte .h4 * {
    font-size: var(--l-heading-h4-size-mobile);
    line-height: var(--l-heading-h4-lh-mobile);
    letter-spacing: var(--l-heading-h4-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h4,
  .l-block-rte h4 *,
  .l-block-rte .h4,
  .l-block-rte .h4 * {
    font-size: var(--l-heading-h4-size-tablet, var(--l-heading-h4-size-mobile));
    line-height: var(--l-heading-h4-lh-tablet, var(--l-heading-h4-lh-mobile));
    letter-spacing: var(--l-heading-h4-ls-tablet, var(--l-heading-h4-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h4,
  .l-block-rte h4 *,
  .l-block-rte .h4,
  .l-block-rte .h4 * {
    font-size: var(--l-heading-h4-size-desktop, var(--l-heading-h4-size-mobile));
    line-height: var(--l-heading-h4-lh-desktop, var(--l-heading-h4-lh-mobile));
    letter-spacing: var(--l-heading-h4-ls-desktop, var(--l-heading-h4-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h4,
  .l-block-rte .h4 {
    margin-bottom: var(--l-heading-h4-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h4,
  .l-block-rte .h4 {
    margin-bottom: var(--l-heading-h4-mb-tablet, var(--l-heading-h4-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h4,
  .l-block-rte .h4 {
    margin-bottom: var(--l-heading-h4-mb-desktop, var(--l-heading-h4-mb-mobile));
  }
}
.l-block-rte h5,
.l-block-rte h5 *,
.l-block-rte .h5,
.l-block-rte .h5 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h5,
  .l-block-rte h5 *,
  .l-block-rte .h5,
  .l-block-rte .h5 * {
    font-size: var(--l-heading-h5-size-mobile);
    line-height: var(--l-heading-h5-lh-mobile);
    letter-spacing: var(--l-heading-h5-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h5,
  .l-block-rte h5 *,
  .l-block-rte .h5,
  .l-block-rte .h5 * {
    font-size: var(--l-heading-h5-size-tablet, var(--l-heading-h5-size-mobile));
    line-height: var(--l-heading-h5-lh-tablet, var(--l-heading-h5-lh-mobile));
    letter-spacing: var(--l-heading-h5-ls-tablet, var(--l-heading-h5-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h5,
  .l-block-rte h5 *,
  .l-block-rte .h5,
  .l-block-rte .h5 * {
    font-size: var(--l-heading-h5-size-desktop, var(--l-heading-h5-size-mobile));
    line-height: var(--l-heading-h5-lh-desktop, var(--l-heading-h5-lh-mobile));
    letter-spacing: var(--l-heading-h5-ls-desktop, var(--l-heading-h5-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h5,
  .l-block-rte .h5 {
    margin-bottom: var(--l-heading-h5-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h5,
  .l-block-rte .h5 {
    margin-bottom: var(--l-heading-h5-mb-tablet, var(--l-heading-h5-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h5,
  .l-block-rte .h5 {
    margin-bottom: var(--l-heading-h5-mb-desktop, var(--l-heading-h5-mb-mobile));
  }
}
.l-block-rte h6,
.l-block-rte h6 *,
.l-block-rte .h6,
.l-block-rte .h6 * {
  font-weight: var(--l-font-heading-weight);
  color: var(--l-headings-color);
}
@media screen and (max-width: 479px) {
  .l-block-rte h6,
  .l-block-rte h6 *,
  .l-block-rte .h6,
  .l-block-rte .h6 * {
    font-size: var(--l-heading-h6-size-mobile);
    line-height: var(--l-heading-h6-lh-mobile);
    letter-spacing: var(--l-heading-h6-ls-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h6,
  .l-block-rte h6 *,
  .l-block-rte .h6,
  .l-block-rte .h6 * {
    font-size: var(--l-heading-h6-size-tablet, var(--l-heading-h6-size-mobile));
    line-height: var(--l-heading-h6-lh-tablet, var(--l-heading-h6-lh-mobile));
    letter-spacing: var(--l-heading-h6-ls-tablet, var(--l-heading-h6-ls-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h6,
  .l-block-rte h6 *,
  .l-block-rte .h6,
  .l-block-rte .h6 * {
    font-size: var(--l-heading-h6-size-desktop, var(--l-heading-h6-size-mobile));
    line-height: var(--l-heading-h6-lh-desktop, var(--l-heading-h6-lh-mobile));
    letter-spacing: var(--l-heading-h6-ls-desktop, var(--l-heading-h6-ls-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte h6,
  .l-block-rte .h6 {
    margin-bottom: var(--l-heading-h6-mb-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte h6,
  .l-block-rte .h6 {
    margin-bottom: var(--l-heading-h6-mb-tablet, var(--l-heading-h6-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte h6,
  .l-block-rte .h6 {
    margin-bottom: var(--l-heading-h6-mb-desktop, var(--l-heading-h6-mb-mobile));
  }
}
@media screen and (max-width: 479px) {
  .l-block-rte a:not(.l-button) {
    color: var(--l-rte-link-color, var(--l-rte-link-color));
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte a:not(.l-button) {
    color: var(--l-rte-link-color-tablet, var(--l-rte-link-color));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte a:not(.l-button) {
    color: var(--l-rte-link-color-desktop, var(--l-rte-link-color));
  }
}
.l-block-rte p {
  margin-bottom: var(--l-rte-p-mb-mobile);
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-rte p {
    margin-bottom: var(--l-rte-p-mb-tablet, var(--l-rte-p-mb-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-block-rte p {
    margin-bottom: var(--l-rte-p-mb-desktop, var(--l-rte-p-mb-mobile));
  }
}
.l-block-rte ul,
.l-block-rte ol {
  margin: var(--l-rte-ul-ol-margin-mobile);
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .l-block-rte ul,
  .l-block-rte ol {
    margin: var(--l-rte-ul-ol-margin-desktop, var(--l-rte-ul-ol-margin-mobile));
  }
}
.l-block-rte ul li:not(:last-child),
.l-block-rte ol li:not(:last-child) {
  margin-bottom: var(--l-rte-li-mb-mobile);
}
@media screen and (min-width: 1024px) {
  .l-block-rte ul li:not(:last-child),
  .l-block-rte ol li:not(:last-child) {
    margin-bottom: var(--l-rte-li-mb-desktop, var(--l-rte-li-mb-mobile));
  }
}
.l-block-rte ul {
  list-style-type: disc;
}
.l-block-rte ol {
  padding-left: var(--l-rte-ol-padding-left, 10px);
  list-style-type: decimal;
}
.l-block-rte blockquote {
  margin: var(--l-rte-blockquote-margin);
  padding: var(--l-rte-blockquote-padding);
  font-style: italic;
  color: var(--l-rte-blockquote-color);
  background-color: var(--l-rte-blockquote-bg);
  border-left: var(--l-rte-blockquote-border-left);
}
.l-block-rte img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: var(--l-rte-img-margin);
}
.l-block-rte iframe,
.l-block-rte video {
  display: block;
  max-width: 100%;
  height: auto;
  margin: var(--l-rte-video-iframe-margin);
  border: none;
  outline: none;
}
.l-block-rte table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}
.l-block-rte table th,
.l-block-rte table td {
  min-width: max-content;
  padding: 8px;
  text-align: left;
  text-wrap: nowrap;
  border: var(--l-rte-table-border);
}
.l-block-rte table th {
  font-weight: 700;
  background-color: var(--l-rte-table-tg-bg);
}
.l-block-rte > *:first-child {
  margin-top: var(--l-rte-first-child-mt, 0);
}
.l-block-rte > *:last-child {
  margin-bottom: var(--l-rte-last-child-mb, 0);
}
.l-block-rte--default {
  --l-heading-h1-mb-desktop: 32px;
  --l-heading-h1-mb-mobile: 24px;
  --l-heading-h2-mb-desktop: 28px;
  --l-heading-h2-mb-mobile: 20px;
  --l-heading-h3-mb-desktop: 24px;
  --l-heading-h3-mb-mobile: 18px;
  --l-heading-h4-mb-desktop: 20px;
  --l-heading-h4-mb-mobile: 16px;
  --l-heading-h5-mb-desktop: 16px;
  --l-heading-h5-mb-mobile: 12px;
  --l-heading-h6-mb-desktop: 12px;
  --l-heading-h6-mb-mobile: 8px;
  --l-rte-size-mobile: 15px;
  --l-rte-size-desktop: 16px;
  --l-rte-link-color: inherit;
  --l-rte-p-mb-mobile: 14px;
  --l-rte-p-mb-desktop: 16px;
  --l-rte-ul-ol-margin-mobile: 0 0 16px 24px;
  --l-rte-li-mb-mobile: 8px;
  --l-rte-blockquote-margin: 16px 0;
  --l-rte-blockquote-padding: 12px 16px;
  --l-rte-blockquote-color: #666;
  --l-rte-blockquote-bg: #f5f5f5;
  --l-rte-blockquote-border-left: 4px solid #ccc;
  --l-rte-img-margin: 16px 0;
  --l-rte-video-iframe-margin: 16px 0;
  --l-rte-table-border: 1px solid #ddd;
  --l-rte-table-tg-bg: #f1f1f1;
}
.l-block-review {
  gap: var(--l-rr-gap, 10px);
}
.l-block-review__stars svg {
  width: var(--l-stars-size-mobile);
  height: var(--l-stars-size-mobile);
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-review__stars svg {
    width: var(--l-stars-size-tablet);
    height: var(--l-stars-size-tablet);
  }
}
@media screen and (min-width: 1024px) {
  .l-block-review__stars svg {
    width: var(--l-stars-size-desktop);
    height: var(--l-stars-size-desktop);
  }
}
.l-block-benefits__item--row {
  display: grid;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .l-block-benefits__item--row-mobile {
    display: grid;
    grid-template-columns: var(--l-icon-width-mobile) 1fr;
    gap: var(--l-grid-gap-mobile);
    align-items: var(--l-benefit-align-mobile, center);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-benefits__item--row-tablet {
    display: grid;
    grid-template-columns: var(--l-icon-width-tablet) 1fr;
    gap: var(--l-grid-gap-tablet);
    align-items: var(--l-benefit-align-tablet, center);
  }
}
@media screen and (min-width: 1024px) {
  .l-block-benefits__item--row-desktop {
    display: grid;
    grid-template-columns: var(--l-icon-width-desktop) 1fr;
    gap: var(--l-grid-gap-desktop);
    align-items: var(--l-benefit-align-desktop, center);
  }
}
.l-block-benefits__content {
  max-width: var(--l-benefit-max-width);
}
@media screen and (max-width: 479px) {
  .l-block-benefits__content {
    margin-right: var(--l-benefit-content-mr-mobile, auto);
    margin-left: var(--l-benefit-content-ml-mobile, auto);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-block-benefits__content {
    margin-right: var(--l-benefit-content-mr-tablet, auto);
    margin-left: var(--l-benefit-content-ml-tablet, auto);
  }
}
@media screen and (min-width: 1024px) {
  .l-block-benefits__content {
    margin-right: var(--l-benefit-content-mr-desktop, auto);
    margin-left: var(--l-benefit-content-ml-desktop, auto);
  }
}

.l-link-cover::before {
  content: "";
  position: absolute;
  z-index: var(--l-link-cover-z-index, 2);
  inset: 0;
  display: block;
}
.l-link-overlay {
  position: absolute;
  z-index: var(--l-link-overlay-z-index, 2);
  inset: 0;
  display: block;
  background: var(--l-link-overlay-bg);
}
.l-link-tap::after {
  content: "";
  position: absolute;
  z-index: var(--l-link-cover-z-index, 2);
  inset: var(--l-link-tap-inset, -10px);
  display: block;
}

.l-button--reset {
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-family: var(--font-body-family);
    background-color: transparent;
    border: transparent;
    border: none;
    outline: none;
}

.l-button {
    cursor: pointer;
    font-family: var(--l-button-font-family, var(--l-font-body-family));
    color: var(--l-button-text-color);
    text-decoration: var(--l-button-text-decoration, none);
    background-color: var(--l-button-bg-color);
    border: var(--l-button-border-width) solid var(--l-button-border-color);
    border-color: var(--l-button-border-color);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 1023px) {
    .l-button {
        gap: var(--l-button-gap-mobile);
        justify-content: var(--l-button-alignment-mobile);
        width: var(--l-button-width-mobile);
        max-width: var(--l-button-max-width-mobile);
        padding: var(--l-button-padding-mobile);
        font-size: var(--l-button-font-size-mobile);
        font-weight: var(--l-button-font-weight-mobile);
        line-height: var(--l-button-line-height-mobile);
        letter-spacing: var(--l-button-letter-spacing-mobile);
        border-radius: var(--l-button-radius-mobile);
    }
}

@media screen and (min-width: 1024px) {
    .l-button {
        gap: var(--l-button-gap-desktop, var(--l-button-gap-mobile));
        justify-content: var(--l-button-alignment-desktop, var(--l-button-alignment-mobile));
        width: var(--l-button-width-desktop, var(--l-button-width-mobile));
        max-width: var(--l-button-max-width-desktop, var(--l-button-max-width-mobile));
        padding: var(--l-button-padding-desktop, var(--l-button-padding-mobile));
        font-size: var(--l-button-font-size-desktop, var(--l-button-font-size-mobile));
        font-weight: var(--l-button-font-weight-desktop, var(--l-button-font-weight-mobile));
        line-height: var(--l-button-line-height-desktop, var(--l-button-line-height-mobile));
        letter-spacing: var(--l-button-letter-spacing-desktop, var(--l-button-letter-spacing-mobile));
        border-radius: var(--l-button-radius-desktop, var(--l-button-radius-mobile));
    }
}

.l-button:focus,
.l-button:hover {
    color: var(--l-button-hover-text-color);
    background-color: var(--l-button-hover-bg-color);
    border-color: var(--l-button-hover-border-color);
}

.l-button.is-loading {
    pointer-events: none;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.l-button.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--l-button-bg-color);
}

.l-button.is-loading::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid var(--l-button-text-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.l-button:disabled,
.l-button.is-disabled {
    pointer-events: none;
    opacity: 0.4;
}

.l-button--default-space {
    --l-button-gap-mobile: 10px;
    --l-button-width-mobile: max-content;
    --l-button-alignment-mobile: center;
    --l-button-min-width-mobile: max-content;
    --l-button-padding-mobile: 10px 14px;
    --l-button-padding-desktop: 14px 20px;
    --l-button-font-size-mobile: 14px;
    --l-button-font-size-desktop: 16px;
    --l-button-font-weight-mobile: 400;
    --l-button-line-height-mobile: 1;
    --l-button-letter-spacing-mobile: 0;
    --l-button-border-width: 2px;
    --l-button-radius-mobile: 40px;
}

.l-button--default-colors {
    --l-button-bg-color: #000;
    --l-button-border-color: #000;
    --l-button-text-color: #fff;
    --l-button-hover-text-color: #000;
    --l-button-hover-bg-color: #fff;
    --l-button-hover-border-color: #000;
}

/*********************************************
*                 CONTAINER                  *
**********************************************/

.l-container--full-width {
    padding: 0;
}

.l-container {
  max-width: var(--l-container-width, 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--l-container-gap-mobile, 24px);
  padding-left: var(--l-container-gap-mobile, 24px);
  background-color: var(--l-container-bg);
}
@media screen and (min-width: 1024px) {
  .l-container {
    padding-right: var(--l-container-gap-desktop, 40px);
    padding-left: var(--l-container-gap-desktop, 40px);
  }
}
.l-container--full {
  --l-container-width: 100%;
  --l-container-gap-mobile: 0;
  --l-container-gap-desktop: 0;
}
.l-container-no-space-all {
  --l-container-gap-mobile: 0;
  --l-container-gap-desktop: 0;
}
@media screen and (max-width: 479px) {
  .l-container-no-space-only-mobile {
    --l-container-gap-mobile: 0;
    --l-container-gap-desktop: 0;
  }
}
@media screen and (min-width: 480px) {
  .l-container-no-space-from-mobile {
    --l-container-gap-mobile: 0;
    --l-container-gap-desktop: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-container-no-space-from-tablet {
    --l-container-gap-mobile: 0;
    --l-container-gap-desktop: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-container-no-space-from-desktop {
    --l-container-gap-mobile: 0;
    --l-container-gap-desktop: 0;
  }
}

/*********************************************
*                     GRID                   *
**********************************************/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  .l-row {
    gap: var(--l-row-gap-mobile, 0) var(--l-column-gap-mobile, 0);
    padding: var(--l-row-pad-top-mobile) var(--l-row-pad-right-mobile) var(--l-row-pad-bottom-mobile) var(--l-row-pad-left-mobile);
    border-radius: var(--l-row-radius-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-row {
    gap: var(--l-row-gap-tablet, 0) var(--l-column-gap-tablet, 0);
    padding: var(--l-row-pad-top-tablet) var(--l-row-pad-right-tablet) var(--l-row-pad-bottom-tablet) var(--l-row-pad-left-tablet);
    border-radius: var(--l-row-radius-tablet, var(--l-row-radius-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-row {
    gap: var(--l-row-gap-desktop, 0) var(--l-column-gap-desktop, 0);
    padding: var(--l-row-pad-top-desktop) var(--l-row-pad-right-desktop) var(--l-row-pad-bottom-desktop) var(--l-row-pad-left-desktop);
    border-radius: var(--l-row-radius-desktop, var(--l-row-radius-mobile));
  }
}

.l-column {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 479px) {
  .l-column {
    max-width: calc(var(--l-column-width-mobile) - (var(--l-column-gap-mobile)) * (var(--l-flex-cols-mobile) - 1) / var(--l-flex-cols-mobile));
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-column {
    max-width: calc(var(--l-column-width-tablet) - (var(--l-column-gap-tablet)) * (var(--l-flex-cols-tablet) - 1) / var(--l-flex-cols-tablet));
  }
}
@media screen and (min-width: 1024px) {
  .l-column {
    max-width: calc(var(--l-column-width-desktop) - (var(--l-column-gap-desktop)) * (var(--l-flex-cols-desktop) - 1) / var(--l-flex-cols-desktop));
  }
}
@media screen and (max-width: 479px) {
  .l-column-order {
    order: var(--l-column-order-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-column-order {
    order: var(--l-column-order-tablet, var(--l-column-order-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-column-order {
    order: var(--l-column-order-desktop, var(--l-column-order-mobile));
  }
}
.l-column__inner {
  width: 100%;
  max-width: var(--l-column-max-width, 100%);
}

.l-grid {
  display: grid;
}
@media screen and (max-width: 479px) {
  .l-grid {
    grid-template-columns: repeat(var(--l-grid-cols-mobile), minmax(0, 1fr));
    gap: var(--l-grid-gap-mobile);
  }
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .l-grid {
    grid-template-columns: repeat(var(--l-grid-cols-tablet), minmax(0, 1fr));
    gap: var(--l-grid-gap-tablet, var(--l-grid-gap-mobile));
  }
}
@media screen and (min-width: 1024px) {
  .l-grid {
    grid-template-columns: repeat(var(--l-grid-cols-desktop), minmax(0, 1fr));
    gap: var(--l-grid-gap-desktop, var(--l-grid-gap-mobile));
  }
}

/*********************************************
*                   SECTION                  *
**********************************************/
.l-section--background {
  background: var(--l-section-background);
}
@media screen and (max-width: 1023px) {
  .l-section--spacing {
    margin-top: var(--l-section-margin-top-mobile);
    margin-bottom: var(--l-section-margin-bottom-mobile);
    padding-top: var(--l-section-padding-top-mobile);
    padding-bottom: var(--l-section-padding-bottom-mobile);
  }
}
@media screen and (min-width: 1024px) {
  .l-section--spacing {
    margin-top: var(--l-section-margin-top-desktop);
    margin-bottom: var(--l-section-margin-bottom-desktop);
    padding-top: var(--l-section-padding-top-desktop);
    padding-bottom: var(--l-section-padding-bottom-desktop);
  }
}

/*********************************************
*                DRAWER ELEMENT              *
**********************************************/
.l-drawer {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
}
.l-drawer.is-active {
  --l-drawer-translate-x: 0;
  --l-drawer-translate-Y: 0;
  pointer-events: all;
  opacity: 1;
}
.l-drawer__card {
  will-change: transform;
  width: 100%;
  max-width: var(--l-drawer-max-width, 480px);
    background: rgb(var(--background));
}
@media screen and (max-width: 479px) {
  .l-drawer__card {
    transform: translateY(var(--l-drawer-translate-Y, 100%));
  }
}
@media screen and (min-width: 480px) {
  .l-drawer__card {
    transform: translateX(var(--l-drawer-translate-x, 100%));
  }
}
.l-drawer__inner {
  overflow: hidden auto;
  max-height: var(--l-viewport-height, 100vh);
}

/*********************************************
*             JAVASCRIPT CLASSES             *
**********************************************/
.js-block-page {
  overflow: hidden !important;
  box-sizing: border-box !important;
}
@media screen and (min-width: 1024px) {
  .js-block-page {
    padding-right: 4px !important;
  }
}

/************************************************************************************

CUSTOMIZE: SEARCH DRAWER

*************************************************************************************/
.predictive-search-drawer .drawer__footer .button {
    display: none;
}

.predictive-search-drawer .line-item__content-wrapper {
    margin-top: 20px;
}

.predictive-search-drawer .line-item__image {
    aspect-ratio: 1.3;
    object-fit: cover;
}

/************************************************************************************

* [SECTION]: COLLECTION BREADCRUMBS

*************************************************************************************/
.l-breadcrumbs__link--current {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.l-breadcrumbs__dot {
  --l-text-size-mobile: 12px;
  opacity: 0.6;
  padding: 0 2px;
}
.l-block-collectionTags {
  font-size: 0;
}
.l-block-collectionTags__link {
  --l-button-alignment-mobile: center;
  --l-button-padding-mobile: 8px 12px;
  --l-button-padding-desktop: 8px 12px;
  --l-button-font-size-mobile: 14px;
  --l-button-font-size-desktop: 16px;
  --l-button-font-weight-mobile: 600;
  --l-button-line-height-mobile: 1;
  --l-button-letter-spacing-mobile: 0;
  --l-button-border-width: 1px;
  --l-button-radius-mobile: 40px;
  --l-font-body-family: 'Avenir Next';

  display: inline-block;
  text-transform: capitalize;
  margin-right: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 1000px) {
  .header-customer__item.is-open .header-customer__navigation {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}
@media screen and (min-width: 1000px) {
  .header-customer__item:hover .header-customer__navigation {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}
.header-customer__navigation.nav-dropdown {
  top: 34px;
  margin-left: -60px;
  padding: 10px 10px;
}
.header-customer__navigation-link {
  font-family: "Helvetica Neue", var(--heading-font-family), sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  line-height: 1;
}
.header-customer__navigation-link svg {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

/************************************************************************************

* CUSTOMIZE OVERLAY OVERLAP ISSUSE

*************************************************************************************/

body:has(.l-drawer.is-active) #launcher,
body:has(.popover[open]) #launcher,
body:has(.popover[open]) #launcher + iframe,
html.lock-all #launcher,
.l-audioEye-hide #ae_toolbar {
    pointer-events: none !important;
    display: none !important;
    opacity: 0 !important;
}

#ae_launcher > button {
    pointer-events: none !important;
    display: none !important;
    opacity: 0 !important;
}


.product-message {
  text-align: center;
}
.product-message span {
  font-weight:600;
}


/************************************************************************************

* CUSTOMIZE Affiliate Marketing

*************************************************************************************/
.bgModal__content {
    background-color: #191919 !important;
    box-shadow: none !important;
}
.bgModal .bgHeading, .bgModal .bgContent  {
    color: #fff;
}
.bgInputWrapper .bgInput, .bgModal .bgHeading, .bgModal .bgContent {
    font-weight: 400;
}
.bgModal .bgHeading {
    font-size: 37px;
    text-transform: uppercase;
}
.bgModal .bgBtn--primary {
    --button-background: var(--root-primary-button-background);
    --button-text-color: var(--root-primary-button-text-color);
    height: 52px;
    border-radius: 0;
    background-color: #e2a829;
    transform: translateZ(0);
        background-image: linear-gradient(178deg, rgb(var(--button-background)), rgb(var(--button-background)) 10%, #00000012 10% 100%), linear-gradient(rgb(var(--button-background)), rgb(var(--button-background)));
        background-repeat: no-repeat;
        background-position: 100% -100%, 100% 100%;
        background-size: 100% 200%, 100% 100%;
        transition: background-position .3s 
    cubic-bezier(.215, .61, .355, 1);
}
.bgModal .bgBtn__content {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--text-font-family);
    font-size: 14px;
    color: #191919;
}
.bgModal .bgBtn--primary:hover {
    background-position: 100% 25%, 100% 100%;
}
/************************************************************************************

* CUSTOMIZE Regional Modal

*************************************************************************************/
.region-modal__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.region-modal {
    background: #191919;
    color: #ffffff;
    max-width: 640px;
    width: 90%;
    padding: 40px;
    text-align: center;
    animation: regionFadeIn .1s ease;
    position: relative;
}
.l-media-lightbox button.video-overlay {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    padding: 6px;
    border-radius: 50%;
    opacity: .5;
}
.l-media-lightbox button.video-overlay svg {
    width: 100%;
    height: 100%;
}
.l-media-lightbox button.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.region-modal__message h3 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
    text-transform: uppercase;
}
.region-modal__message p { margin-top: 0; }
.region-modal__message a { text-decoration: underline !important; }
.region-modal__btn--close {
    color: rgba(255,255,255,.6);
    font-size: 25px;
    position: absolute;
    top: -7px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
.region-modal__btn--close:hover {
    color: rgba(255,255,255,1);
}
@keyframes regionFadeIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 479px) {
    .region-modal {
        padding: 40px 20px;
    }
}

/************************************************************************************

* Navigation (progress bar thumbs)

*************************************************************************************/
.slideshow__text-container {
    width: 100%;
    position: absolute;
    height: 100%;
}
.carouselMainSwiper {
    width: 100%;
}
.carouselThumbSwiper {
    width: 96%;
    margin: 0 auto;
    overflow: initial;
    box-sizing: border-box;
    padding: 40px 51px 40px 51px;
}
.carouselThumbSwiper .swiper-slide {
    width: 25%;
    cursor: pointer;
    text-align:center;
}
.carouselThumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.carouselThumbSwiper .thumb-text {
    position: absolute;
    right: 14%;
    top: 47%;
    font-size: 1.1vw;
    letter-spacing: -.03vw;
}
.carouselThumbSwiper sup {
    font-weight: 400;
}
.carouselMainSwiper .swiper-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.carouselMainSwiper .swiper-pagination-bullet,
.carouselMainSwiper .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    width: 12%;
    height: 40px;
    margin: 0 1% !important;
}
.carouselMainSwiper .swiper-pagination-bullet,
.swiper-image-carousel .swiper-pagination-bullet {
    background-color: transparent;
    position: relative;
}
.carouselMainSwiper .swiper-pagination-bullet:after,
.carouselMainSwiper .swiper-pagination-bullet:before,
.swiper-image-carousel .swiper-pagination-bullet:after,
.swiper-image-carousel .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 100%;
    height: 4px;
    background: rgba(152, 152, 152, 0.5);
    transition: background 0.2s ease-in-out;
}
.carouselMainSwiper .swiper-pagination-bullet:after,
.swiper-image-carousel .swiper-pagination-bullet:after {
    transform-origin: left;
    transform: scaleX(0);
    background: #FFE201;
}
.carouselMainSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.swiper-image-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active:after  {
    background: #FFE201;
}
.swiper-image-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: none;
}
.carouselMainSwiper .swiper-slide {
  backface-visibility: hidden;
}
@media (max-width: 999px) {
    .carouselThumbSwiper .thumb-text {
        right: 13.5%;
        top: 48%;
        font-size: 1.6vw;
    }
}
@media (max-width: 740px) {
    .carouselThumbSwiper {
        padding: 15px 20px 15px 20px;
    }
}
@media (max-width: 639px) {
    .carouselThumbSwiper .thumb-text {
        letter-spacing: 0;
    }
}


/************************************************************************

* NEW STYLES FOR PDP2 REDESIGN

***************************************************************************/
.container-inner {
    border-bottom: 1px solid #707070;
}
.f-heading {
    font-weight: 600;
    font-family: "ITC Avant Garde Pro XLt";
}
.f-text {
    font-weight: 400;
    font-family: "Helvetica Neue";
}
.fw-normal {
  font-weight: 400;
}
.fw-bold {
    font-weight: 600;
}
.fw-bolder {
    font-weight: 800;
}
.text-black {
  color: #000000;
}
.text-gray {
  color: #404040;
}
.text-light-gray {
  color: #6B6B6B;
}
.fs-12 {
  font-size: 12px;
  line-height: 17px;
}
.fs-15 {
  font-size: 15px;
  line-height: 20px;
}
.fs-16 {
  font-size: 16px;
  line-height: 20px;
}
.fs-20 {
  font-size: 20px;
  line-height: 27px;
}
.fs-25 {
  font-size: 25px;
  line-height: 33px;
}
.fs-30 {
  font-size: 30px;
  line-height: 40px;
}
.fs-35 {
  font-size: 35px;
  line-height: 47px;
}
.fs-40 {
  font-size: 40px;
  line-height: 53px;
}
.fs-45 {
  font-size: 45px;
  line-height: 60px;
}
.fs-50 {
  font-size: 50px;
  line-height: 75px;
}
.fs-55 {
  font-size: 55px;
  line-height: 73px;
}
.fs-60 {
  font-size: 60px;
  line-height: 80px;
}
.fs-90 {
  font-size: 90px;
  line-height: 95px;
}
.fs-100 {
  font-size: 100px;
  line-height: 105px;
}
.border-0 {
  border: 0;
}
.mt-0, .m-0 {
  margin-top: 0;
}
.mb-0, .m-0 {
  margin-bottom: 0;
}
.mb-100 {
  margin-bottom: 100px;
}
.pt-10, .py-10 {
  padding-top: 10px;
}
.pb-10, .py-10 {
  padding-bottom: 10px;
}
.pt-20, .p-20, .py-20 {
  padding-top: 20px;
}
.pb-20, .p-20, .py-20 {
  padding-bottom: 20px;
}
.pt-30, .p-30 {
  padding-top: 30px;
}
.pb-30, .p-30 {
  padding-bottom: 30px;
}
.pt-40, .py-40, .p-40 {
  padding-top: 40px;
}
.pb-40, .py-40, .p-40 {
  padding-bottom: 40px;
}
.px-40 {
  padding-left: 40px;
}
.px-40 {
  padding-right: 40px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80, .p-80, .py-80 {
  padding-top: 80px;
}
.pb-80, .p-80, .py-80 {
  padding-bottom: 80px;
}
.px-80 {
  padding-left: 80px;
}
.px-80 {
  padding-right: 80px;
}
.pt-100, .py-100, .p-100 {
  padding-top: 100px;
}
.pb-100, .py-100, .p-100 {
  padding-bottom: 100px;
}
  text-align: center;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-capitalize {
    text-transform: capitalize;
}
/* Header */
.shopify-section--header#shopify-section-header {
    z-index: 5;
}
/* Preview Modal Drawer */
.l-fulldetail-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.83);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.l-fulldetail-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.l-fulldetail-modal {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid #707070;
}
.drawer--filter .l-fulldetail-modal {
    max-width: 500px;
    
}
.l-fulldetail-modal .drawer--content,
.drawer--filter .drawer--header,
.l-fulldetail-modal .drawer--actions {
    padding-left: 30px;
    padding-right: 30px;
}
.l-fulldetail-modal-block {
    border-top: 1px solid #707070;
}
.l-fulldetail-modal-overlay.is-open .l-fulldetail-modal {
    transform: translateX(0);
}
.drawer--filter .drawer--header,
.l-fulldetail-modal .drawer--actions {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
}
.drawer--filter .drawer--header {
    padding-top: 44px;
    padding-bottom:5px;
}
.l-fulldetail-modal .drawer--actions {
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
.l-fulldetail-modal .drawer--actions .btn-action {
    border: 1px solid #707070;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #404040;
    text-transform: uppercase;
    display: block;
}
.l-fulldetail-modal__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.l-fulldetail-modal__close svg {
    width: 40px;
}
.d-none {
    display: none;
}
.d-block {
    display: block !important;
}
.d-grid {
    display: grid !important;
}
.ws-normal {
    white-space: normal !important;
}
@media (min-width: 981px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-grid {
        display: grid !important;
    }
}
@media (max-width: 980px) {
    .d-none {
        display: none !important;
    }
  
    .fs-t-20 {
        font-size: 20px;
        line-height: 30px;
        }
        .fs-t-23 {
        font-size: 23px;
            line-height: 31px;
    }
    .fs-t-25 {
        font-size: 25px;
            line-height: 33px;
    }
    .fs-t-30 {
        font-size: 30px;
            line-height: 40px;
    }
    .fs-t-35 {
        font-size: 35px;
            line-height: 47px;
    }
    .fs-t-40{
        font-size: 40px;
        line-height: 55px;
    }
    .fs-t-45 {
        font-size: 45px;
        line-height: 60px;
    }
    .fs-t-50 {
        font-size: 50px;
        line-height: 67px;
    }
    .fs-t-70 {
        font-size: 70px;
        line-height: 75px;
    }
    .fs-t-75 {
        font-size: 75px;
        line-height: 80px;
    }
    
    .fs-t-16 {
        font-size: 16px;
        line-height: 20px;
    }
    .pb-t-0 {
        padding-bottom: 0px;
    }
    .pb-t-10 {
        padding-bottom: 10px;
    }
    .pt-t-35 {
        padding-top: 35px;
    }
    .pb-t-30 {
        padding-bottom: 30px;
    }
    .pb-t-20 {
        padding-bottom: 20px;
    }
    .pt-t-20 {
        padding-top: 20px;
    }
    .py-t-60 {
        padding-top: 60px;
    }
    .py-t-60, .pb-t-60 {
        padding-bottom: 60px;
    }
    .text-title, .text-subtitle {
        white-space: nowrap;
        line-height: initial;
    }
    .text-title {
        font-size: 8.7vw;
    }
    .text-subtitle {
        font-size: 5.7vw;
    }
}
@media (max-width: 767px) {
    .py-100, .pt-100 {
        padding-top: 40px;
    }
    .pb-100, .py-100, .pb-80 {
        padding-bottom: 40px;
    }
    .px-40 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .fs-m-16 {
        font-size: 16px;
        line-height: 20px;
    }
    .fs-m-20 {
        font-size: 20px;
        line-height: 30px;
    }
    .fs-m-30 {
        font-size: 40px;
        line-height: 55px;
    }
    .fs-m-40 {
        font-size: 30px;
        line-height: 40px;
    }
    .pb-m-10 {
        padding-bottom:10px;
    }
    .pb-m-20 {
        padding-bottom:20px;
    }
    .fs-m-20 {
        font-size: 20px;
        line-height: 30px;
    }
    .fs-m-50 {
        font-size: 50px;
        line-height: 75px;
    }
    .fs-m-60 {
        font-size: 60px;
        line-height: 80px;
    }
}

/************************************************************************

* NEW STYLES FOR PDP2 REDESIGN [HEADER]

***************************************************************************/
.header__logo {
  display: flex;
  align-items: center;
}

.header__inline-navigation, .header__wrapper {
  align-items: normal;
}
.header__linklist, .header__linklist-item, .header__linklist-link {
  height: 100%;
}
.header__linklist-link {
  flex-wrap: nowrap;
}
.header__linklist-item:not(:last-child) {
  margin-right: 0 !important;
}
.header__linklist-item {
  padding-right: 16px;
  padding-left: 16px;
}
.header__linklist-item:last-child{
  padding-right: 0;
}
.header__linklist-item:first-child{
  padding-left: 0;
}
.header__linklist-link {
  padding-top: 31.5px;
  padding-bottom:31.5px;
}
.mega-menu__columns-wrapper {
  padding: 40px 0px;
}
.mega-menu__column {
  min-width: 150px;
  margin: 0;
  padding: 0px 30px;
}
.mega-menu,
.nav-dropdown {
  background: #fff;
}
.mega-menu,
.nav-dropdown,
.mega-menu__title {
  color: #404040;
}
.mega-menu__column ul li img {
  max-width: 150px;
  width: 100%;
}
@media (min-width: 1200px) {
    .header__wrapper {
    padding-top: 0;
    padding-bottom: 0;
    }
  li[data-item-title="SUNGLASSES"] .mega-menu__column:first-child,
  li[data-item-title="GEAR"] .mega-menu__column:first-child,
  li[data-item-title="ALLIANCES"] .mega-menu__column:first-child {
    border-right: 1px solid #707070;
  }
}