/** Shopify CDN: Minification failed

Line 68:4 Unexpected "/"
Line 69:4 Unexpected "/"
Line 70:4 Unexpected "/"
Line 71:4 Unexpected "/"
Line 72:4 Unexpected "/"

**/
@font-face {
    font-family: Palanquin;
    src: url("https://cdn.shopify.com/s/files/1/0943/2773/4613/files/Palanquin.woff2?v=1744707579") format("woff2");
    font-style: normal; font-weight: 400; font-display: swap;
}

@font-face {
    font-family: Palanquin;
    src: url("https://cdn.shopify.com/s/files/1/0943/2773/4613/files/palanquin-v13-latin-600.woff2?v=1748336892") format("woff2");
    font-style: normal; font-weight: 600; font-display: swap;
}

@font-face {
    font-family: Pluto;
    src: url("https://cdn.shopify.com/s/files/1/0943/2773/4613/files/PlutoRegular.woff2?v=1744707661") format("woff2");
    font-style: normal; font-weight: 400; font-display: swap;
}

@font-face {
    font-family: Pluto;
    src: url("https://cdn.shopify.com/s/files/1/0943/2773/4613/files/PlutoBold.woff2?v=1744707671") format("woff2");
    font-style: normal; font-weight: 700; font-display: swap;
}

.font-heading {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}



/* Spacing */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.mx-0 { margin-left: 0; margin-right: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.w-full { width: 100%; }
.w-1/2 { width: 50%; }
.w-1/3 { width: 33.33%; }
.w-2/3 { width: 66.67%; }
.w-1/4 { width: 25%; }
.w-3/4 { width: 75%; }
.h-screen { height: 100vh; }
.h-full { height: 100%; }

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end, .justify-right { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }

/* Positioning */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Font Weight */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.underline { text-decoration: underline; }

/* Colors */
.text-primary { color: #000; }
.text-secondary { color: #DD052B; }
.bg-primary { background-color: #DD052B; }
.bg-secondary { background-color: #FDF6F1; }
.bg-white { background-color: #fff; }
.bg-success { background-color: #328200; }

.radius {
    border-radius: 16px;
}

.cursor-pointer {
    cursor: pointer;
}

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

.btn-outline {
    border: 2px solid;
    border-radius: 4px;
    color: rgb(var(--color-foreground));
    padding: 0.9rem 4.8rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    font-size: 2rem;
    line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.btn-outline > a {
    text-decoration: none;
    color: inherit;
}

.btn-outline:not(select):hover, .btn-outline.active {
    color: rgb(var(--color-button));
}

.field-solid {
    border-radius: 56px;
    background: #fff;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    margin: 0;
}

.slideshow-decorated {
    overflow: hidden;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-radius: 30% 30% 0 0;
    width: calc(100vw + 10%);
    margin-left: -5%;
}

.product-card-wrapper .wishlist-button {
    color: rgb(var(--color-button));
    background: transparent;
    position: absolute;
    right: var(--image-padding);
    top: var(--image-padding);
    border: none;
    cursor: pointer;
    z-index: 10;
}

.product__info-benefits-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.product-card-wrapper .wishlist-button.active svg path {
    fill: rgb(var(--color-button));
}

.image-with-text__text-item .image-with-text__content {
    max-width: calc(var(--page-width) / 2);
}

@media screen and (max-width: 989px) {
    .slideshow-decorated {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
}

@media screen and (max-width: 749px) {
    .instafeed-new-layout-wrapper {
        grid-template-columns: none !important;
        gap: 15px !important;
    }
    .instafeed-new-layout-item {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/2;
    }
    .tag-filters-wrapper .title {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .tag-filters__item.btn-outline {
        font-size: 1.6rem;
        padding: 0.6rem 2.8rem;
    }
    .tag-filters__list {
        justify-content: flex-start;
    }
    .product-card-wrapper .wishlist-button {
        top: 10px;
        right: 5px;
    }
}
