/** Shopify CDN: Minification failed

Line 485:21 Unexpected ";"

**/
/* ==========================================================
   WildMasons Component Library
========================================================== */

.wm-container{
    max-width:1480px;
    margin:0 auto;
    padding:0 40px;
}

/* ==========================================================
   WM Content Slider
========================================================== */

.wm-content-slider{
    padding-top:var(--wm-padding-top,40px);
    padding-bottom:var(--wm-padding-bottom,40px);

    background:var(--wm-section-bg,transparent);
    color:var(--wm-text,inherit);
}

.wm-section-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;

    padding-top:20px;

    margin-bottom:40px;
}

.wm-header-link{
    align-self:flex-start;

    margin-top:58px;

    display:inline-flex;
    align-items:center;
    gap:6px;

    font-size:1rem;
    font-weight:500;

    color:inherit;
    text-decoration:none;

    transition:opacity .25s ease;
}

.wm-header-link:hover{
    opacity:.7;
}


.wm-section-heading{
    max-width:var(--wm-heading-width,700px);
}
/* ==========================================================
   Section Typography
========================================================== */

.wm-title{
    margin:0;
    line-height:0.95;
    font-weight:700;
    letter-spacing:-0.03em;
}

.wm-title--small{
    font-size:clamp(2rem,3vw,2.25rem);
}

.wm-title--medium{
    font-size:clamp(2.4rem,4vw,3rem);
}

.wm-title--large{
    font-size:clamp(3rem,5vw,3.75rem);
}

.wm-title--display{
    font-size:clamp(3.5rem,6vw,5rem);
}

.wm-section-subtitle{
    margin:0 0 12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.12em;
    opacity:.7;
}

.wm-section-subtitle--small{
    font-size:12px;
}

.wm-section-subtitle--medium{
    font-size:14px;
}

.wm-section-subtitle--large{
    font-size:16px;
}

.wm-section-description{
    margin:10px 0 0;
    max-width:680px;

    font-weight:400;
    line-height:1.45;
    letter-spacing:-0.01em;
}

.wm-section-description--small{
    font-size:1.25rem;
}

.wm-section-description--medium{
    font-size:1.5rem;
}

.wm-section-description--large{
    font-size:1.75rem;
}
/* ==========================================================
   Slider
========================================================== */

.wm-slider-wrapper{
    position:relative;
    padding:0 0 20px;
}

.wm-slider-track{
    display:flex;
    gap:var(--gap,24px);
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.wm-slider-track::-webkit-scrollbar{
    display:none;
}

.wm-slide{
    flex:0 0 31%;
    scroll-snap-align:start;
}

/* ==========================================================
   Card
========================================================== */
.wm-card{
    background:var(--wm-card-bg,#F5F5F5);

    border:1px solid rgba(58,35,22,.06);
    border-radius:24px;

    box-shadow:0 2px 6px rgba(0,0,0,.025);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.wm-card:hover{
    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.wm-slide{
    display:flex;
}

.wm-slide .wm-card{
    width:100%;
}


.wm-card-media{
    position:relative;
    overflow:hidden;
    border-radius:var(--wm-media-radius,20px);
    background:#f5f5f5;
}

/* Image Ratios */

.wm-card-media.ratio-square{
    aspect-ratio:1 / 1;
}

.wm-card-media.ratio-portrait{
    aspect-ratio:4 / 5;
}

.wm-card-media.ratio-three-four{
    aspect-ratio:3 / 4;
}

.wm-card-media.ratio-three-two{
    aspect-ratio:3 / 2;
}

.wm-card-media.ratio-landscape{
    aspect-ratio:16 / 9;
}

.wm-card-media.ratio-adapt{
    aspect-ratio:auto;
}

.wm-card-media img,
.wm-card-media video,
.wm-card-media iframe{
    transition:transform .5s ease;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.wm-card:hover .wm-card-media img{
    transform:scale(1.04);
}

.wm-card-content{
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:16px;
    flex:1;
}

.wm-card-content .wm-button{
    margin-top:auto;
}

.wm-card-title{
    margin:0;
    font-size:1.55rem;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-0.02em;
}

.wm-card-text{
    margin:0;

    font-size:1.25rem;
    line-height:1.6;
    color:rgba(0,0,0,.78);
}

/* ==========================================================
   WM Buttons
========================================================== */

.wm-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;

    padding:14px 28px;

    border:none;
    border-radius:999px;

    text-decoration:none;
    font-weight:600;
    font-size:0.95rem;
    line-height:1.2;
    white-space:nowrap;

    cursor:pointer;
    
    transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.wm-button--primary{
    background:var(--wm-button-bg,#F47B20);
    color:var(--wm-button-text,#ffffff);
}

.wm-button--primary:hover{
    opacity:.9;
}

.wm-button--secondary{
    background:transparent;
    color:inherit;
    border:1px solid currentColor;
}

.wm-button--secondary:hover{
    background:rgba(0,0,0,.04);
}

.wm-button--underline{
    padding:0;
    border:none;
    border-radius:0;
    background:none;
    color:inherit;
    text-decoration:underline;
}

/* ==========================================================
   WM Slider Footer
========================================================== */

.wm-slider-footer{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-top:32px;
}

.wm-slider-navigation{
    display:flex;
    gap:12px;
}

.wm-slider-navigation{
    display:flex;
    gap:12px;
}

.wm-slider-arrow{

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:999px;

    cursor:pointer;

    transition:.25s ease;

    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.wm-slider-arrow:hover{

    background:#F47B20;
    color:#fff;

    transform:translateY(-2px);

}

.wm-slider-arrow svg{

    width:20px;
    height:20px;

}

.wm-slider-arrow path{

    stroke:currentColor;

}
/* ==========================================================
   Responsive
========================================================== */

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

    .wm-slide{
        flex:0 0 calc((100% - (var(--mobile-columns,2) - 1) * var(--gap,24px)) / var(--mobile-columns,2));
    }

}

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

    .wm-section-header{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .wm-slide{
        flex:0 0 88%;
    }

    .wm-container{
        padding:0 20px;
    }

}
.wm-arrow-icon{
    width:20px !important;
    height:20px !important;
    display:block;
    flex:none;
}

.wm-arrow-icon path{
    stroke:currentColor !important;
}
/* ==========================================================
   WM Product Ingredients
========================================================== */

.wm-ingredient-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    text-decoration:none;
    color:inherit;

    gap:12px;
}

.wm-ingredient-media{
    width:120px;
    height:120px;

    border-radius:50%;
    overflow:hidden;

    background:#F7F7F7;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:transform .25s ease;
}

.wm-ingredient-card:hover .wm-ingredient-media{
    transform:scale(1.05);
}

.wm-ingredient-image,
.wm-ingredient-video,
.wm-ingredient-media iframe{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.wm-ingredient-title{
    margin:0;

    font-size:.95rem;
    font-weight:500;
    line-height:1.3;
}
.wm-ingredient-slide{
    flex:0 0 auto;
    width:140px;
}
/* ==========================================================
   WM Product Ingredients
========================================================== */

#wm-product-ingredients .wm-ingredients-wrapper
    position:relative;
    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

#wm-product-ingredients .wm-ingredients-wrapper
    position:relative;

    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

#wm-product-ingredients .wm-ingredients-wrapper::-webkit-scrollbar{
    display:none;
}

#wm-product-ingredients .wm-ingredients-track{
    display:inline-flex;
    gap:24px;
}

#wm-product-ingredients .wm-ingredient-slide{
    flex:0 0 132px;
}

.wm-ingredient-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    color:inherit;
    gap:12px;
}

.wm-ingredient-media{
    width:118px;
    height:118px;

    border-radius:999px;
    overflow:hidden;

    background:#f6f6f6;

    transition:transform .25s ease;
}

.wm-ingredient-card:hover .wm-ingredient-media{
    transform:scale(1.05);
}

.wm-ingredient-image,
.wm-ingredient-video,
.wm-ingredient-media iframe{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.wm-ingredient-title{
    margin:0;

    text-align:center;

    font-size:.95rem;
    font-weight:500;
    line-height:1.35;
}
#wm-product-ingredients .wm-slider-arrow{
    width:44px;
    height:44px;

    top:50%;

    transform:translateY(-50%);
}

#wm-product-ingredients .wm-prev{
    left:-22px;
}

#wm-product-ingredients .wm-next{
    right:-22px;
}
.wm-product-ingredients-slider{
    overflow:hidden;
}

.wm-product-ingredients-slider [data-swiper]{
    overflow:visible;
}

.wm-product-ingredients-slider [data-swiper-container]{
    display:flex;
    align-items:flex-start;
}

.wm-product-ingredients-slider [data-swiper-slide]{
    width:118px;
    flex:0 0 118px;
    margin-right:20px;
}

.wm-ingredient-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none;
    color:inherit;
    gap:12px;
}

.wm-ingredient-media{
    width:118px;
    height:118px;

    border-radius:999px;
    overflow:hidden;

    background:#f6f6f6;
}

.wm-ingredient-image,
.wm-ingredient-video,
.wm-ingredient-media iframe{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

.wm-ingredient-title{
    margin:0;
    font-size:.95rem;
    font-weight:500;
    line-height:1.3;
}
/* ==========================================================
   WM Ingredient Details
========================================================== */

.wm-ingredient-details{
    padding:80px 0;
}

.wm-ingredient-details-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
    margin-top:48px;
}

.wm-ingredient-detail-card{
    padding:32px;
    border-radius:24px;
    background:#fafafa;
}

.wm-ingredient-detail-image{
    width:72px;
    height:72px;
    object-fit:contain;
    margin-bottom:20px;
}

.wm-ingredient-detail-title{
    margin:0 0 8px;
    font-size:1.5rem;
    font-weight:600;
    line-height:1.2;
}

.wm-ingredient-detail-subtitle{
    margin:0 0 16px;
    font-size:1rem;
    font-weight:500;
    opacity:.8;
}

.wm-ingredient-detail-text{
    line-height:1.7;
}

.wm-ingredient-detail-text p:last-child{
    margin-bottom:0;
}
.wm-product-ingredients__header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.wm-product-ingredients__icons{
    display:flex;
    gap:18px;
    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;
    -ms-overflow-style:none;

    -webkit-overflow-scrolling:touch;
    scroll-behavior:smooth;

    width:100%;
}

.wm-product-ingredients{
    width:100%;
    overflow:hidden;
}

.wm-product-ingredients__icons::-webkit-scrollbar{
    display:none;
}

.wm-product-ingredient{
    flex:0 0 100px;
    text-align:center;

    color:inherit;
    text-decoration:none !important;
}

.wm-product-ingredient:hover{
    text-decoration:none !important;
    color:inherit;
}

.wm-product-ingredient span{
    text-decoration:none !important;
}

.wm-product-ingredient__image{
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#FAF8F5;
    border:1px solid #F4E9DA;
    border-radius:50%;

    padding:12px;
    box-sizing:border-box;

    transition:background-color .25s ease,
               border-color .25s ease;
}

.wm-product-ingredient__image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.wm-product-ingredient:hover .wm-product-ingredient__image{
    background:#F7F1E9;
    border-color:#F3722B;
}

.wm-product-ingredient span{
    display:block;
    margin-top:8px;

    font-size:11px;
    line-height:1.2;
    font-weight:500;
    color:#3A2316;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.wm-product-ingredients__link{
    display:flex;
    align-items:flex-end;
    gap:4px;

    color:#3A2316;
    font-size:13px;
    font-weight:500;

    text-decoration:none !important;
}

.wm-product-ingredients__link::after{
    content:"›";
    font-size:18px;
    line-height:1;
    transition:transform .25s ease;
}

.wm-product-ingredients__link:hover{
    color:#F3722B;
    text-decoration:none !important;
}

.wm-product-ingredients__link:hover::after{
    transform:translateX(3px);
}
.wm-product-ingredients__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:20px;
}
.wm-product-ingredients__heading{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#3A2316;
}
.wm-product-ingredients__link{
    align-self:flex-end;
    margin-bottom:5px;
}