/** Shopify CDN: Minification failed

Line 1812:1 Unexpected "6B6B6B"

**/
:root {

     /* --- Primary and Typography Color --- */
    --color-white: #ffffff;      /* White */
    --color-black: #131413;    /* Black */
    --color-subtext: #6B6B6B;      /* Subtext */
    --color-error: #942521;   /* Error Red */

    /* --- Border Color --- */
    --color-stroke-1: #E2DDD0;    /* Stroke 1 */
    --color-stroke-2: #C3C3C3;    /* Stroke 2 */

    /* --- Background Colors --- */
    --color-bg-primary: #F7F5F2;      /* Primary Background */

    /* Font Families */
    --font-family-primary: "Montserrat", sans-serif;
    --font-family-secondary: "Nunito Sans", sans-serif;

    

    /* --- Heading Scale (Canela Trial) --- */
    --text-xl-size: 72px;
    --text-xl-line-height: 1.111;
    --text-lg-size: 48px;
    --text-lg-line-height: 1.16;
    --text-md-size: 36px;
    --text-md-line-height: 52px;
    --text-md2-size: 28px;
    --text-md2-line-height: 36px;
    --text-sm-size: 24px;
    --text-sm-line-height: 40px;
    --text-sm2-line-height: 1.50;




    /* --- Body Scale  --- */
    --text-body-1-size: 20px;
    --text-body-1-line-height: 1.60;
    --text-body-2-size: 18px;
    --text-body-2-line-height: 28px;
    --text-body-3-size: 16px;
    --text-body-3-line-height: 24px;
    --text-body-4-size: 14px;
    --text-body-4-line-height: 22px;
    --text-body-5-size: 12px;
    --text-body-5-line-height: 20px;
    --text-btn-size: 16px;


    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    
}

@media (max-width: 768px) {
    :root {
        /* Mobile Heading Scale Overrides (using px as requested) */

        --text-xl-size: 40px;
        --text-xl-line-height: 44px;
        --text-lg-size: 24px;
        --text-lg-line-height: 36px;
        --text-md-size: 18px;
        --text-md-line-height: 24px;
        --text-md2-line-height: 20px;

        /* --- Body Scale  --- */
        --text-body-1-size: 16px;
        --text-body-1-line-height: 24px;
        --text-body-2-size: 14px;
        --text-body-2-line-height: 20px;
        --text-body-2-2-line-height: 32px;
        
    
    }
}


/* * Apply base styles globally */
body {
    font-family: var(--font-family-secondary);
    font-size: var(--text-body-1-size);
    color: var(--color-black);
    line-height: var(--text-body-1-line-height);
}

/* Apply Canela Trial font to all native heading elements */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-primary);
    color: var(--color-black);
}
/* p, a, span, li, div {
    font-family: var(--font-family-secondary);
} */



/* Specific styling for the standard H1-H6 elements */
h1, .h1{ 
    font-size: var(--text-xl-size); 
    line-height: var(--text-xl-line-height);
}
h2, .h2,  .main-page-title { 
    font-size: var(--text-lg-size); 
    line-height: var(--text-lg-line-height);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
}
h3, .h3 { 
    font-size: var(--text-md-size); 
    line-height: var(--text-md-line-height); 
}
h4, .h4 { 
    font-size: var(--text-md2-size); 
    line-height: var(--text-md2-line-height); 
}
h5, .h5 { 
    font-size: var(--text-sm-size); 
    line-height: var(--text-sm-line-height);
}
h6, .h6 { 
    font-size: var(--text-sm-size); 
    line-height: var(--text-sm2-line-height); 
}


/* Body classes for different font sizes */
.text-body-1 { 
    font-size: var(--text-body-1-size); 
    line-height: var(--text-body-1-line-height); 
}
.text-body-2 { 
    font-size: var(--text-body-2-size); 
    line-height: var(--text-body-2-line-height); 
}
.text-body-3 { 
    font-size: var(--text-body-3-size); 
    line-height: var(--text-body-3-line-height); 
}
.text-body-4 { 
    font-size: var(--text-body-4-size); 
    line-height: var(--text-body-4-line-height); 
}
.text-body-5 { 
    font-size: var(--text-body-5-size); 
    line-height: var( --text-body-5-line-height); 
}

/* Button text style */
/* ===============================
   COMMON BUTTON STYLE
================================= */

.ms-primary-btn,
.ms-primary-sm-btn,
.ms-secondary-btn,
.ms-secondary-cart-btn,
.button--primary,
.button--secondary {

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

  font-size: var(--text-btn-size);
  font-family: var(--font-family-primary);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;

  padding: 16px 40px;
  cursor: pointer;

  transition: all 0.35s ease;
}

/* ===============================
   PRIMARY BUTTON
================================= */

.ms-primary-btn,
.button--primary {
  background: var(--color-white);
  height: 72px;
  color: var(--color-black);
}

/* Small Primary Button */
.ms-primary-sm-btn {
  background: var(--color-white);
  height: 48px;
  color: var(--color-black);
}

/* ===============================
   SECONDARY BUTTON
================================= */

.ms-secondary-btn,
.ms-secondary-cart-btn,
.button--secondary {
  background: var(--color-black);
  height: 72px;
  color: var(--color-white);
}

/* ===============================
   TERTIARY BUTTON
================================= */

.ms-tertiary-btn{

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

  font-size: 16px;
  font-family: var(--font-family-primary);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;

  cursor: pointer;

  transition: all 0.35s ease;
}

.ms-tertiary-btn {
  position: relative;
  display: inline-block;
  background: transparent;
  color: var(--color-black);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.4px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.ms-tertiary-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: width 0.3s ease;
}

.ms-tertiary-btn:hover::after {
  width: 0;
}

.ms-tertiary-btn:hover {
  opacity: 0.8;
}


/* ===============================
   HOVER EFFECT (MODERN)
================================= */

.ms-primary-btn:hover,
.ms-primary-sm-btn:hover,
.ms-secondary-btn:hover,
.ms-secondary-cart-btn:hover,
.button--primary:hover,
.button--secondary:hover {
  opacity: 0.9;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


/* ===============================
   ACTIVE (CLICK PRESS EFFECT)
================================= */

.ms-primary-btn:active,
.ms-primary-sm-btn:active,
.ms-secondary-btn:active,
.ms-secondary-cart-btn:active,
.button--primary:active,
.button--secondary:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
}


/* Header style  */

header.header {
    height: 82px;
    padding-top: 0;
    padding-bottom: 0;
    .header__heading-logo{
         width: 130px ;
    }
}
a.pagination__item.pagination__item--prev, a.pagination__item.pagination__item--next {
    background: var(--color-black);
    color: var(--color-white);
    width: 89px;
    padding: 15px 12px;
    text-align: center;
    font-family: var( --font-family-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: 2px;
}
a.pagination__item.pagination__item--next{
    width: 109px;
    position: relative;
    left: -67px;
}

.template-page-about-us{
    .rich-text__text{
        h4{
           color: var(--color-black);
            font-family: var( --font-family-primary);
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 36px; 
            letter-spacing: 2.2px;
            text-transform: uppercase; 
        }
    }
}

/* faq section style */
.faq-section-wrapper{
    
    
    .faq-section {
        display: flex;
        /* gap: 64px; */
        /* align-items: center; */
        justify-content: center;
        /* Individual Item Styles */

    .faq-image {
        width: 50%;
        img{
            height: auto;
            width: 100%;
            /* visibility: hidden; */
        }
    }
    .faq-content {
        width: 50%;
        background-color: #F3F3F3;
        padding: 32px 0px 32px 130px;
        h2{
            letter-spacing: 2px;
            margin-bottom: 56px;
        }
        .faq-item {
            border-top: 1px solid #dcdcdc;
            padding: 40px 0;
            &:last-child {
                border-bottom: 1px solid #dcdcdc;
            }
            .faq-question {
                list-style: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.60; /* 160% */
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .faq-question::-webkit-details-marker {
                display: none;
            }

            .icon::after {
                content: '';
                display: inline-block;
                width: 10px;
                height: 10px;
                border-right: 2px solid currentColor;
                border-bottom: 2px solid currentColor;
                transform: rotate(45deg); /* Points Down */
                transition: transform 0.3s ease;
                margin-right: 10px;
                }

        
            /* Answer Content Styles */
            .faq-answer {
                padding-top: 15px;
                max-width: 90%;
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.50; /* 150% */
                letter-spacing: 1px;
            }
        }
        .faq-button{
            margin-top: 56px;
        }
        /* Change Icon when Parent is Open (Chevron Up) */
        details[open] .icon::after {
        transform: rotate(-135deg); /* Points Up */
        }
    }
    }
}



/* faq section style */
.faq-page-wrapper{
    .faq-page {
        display: flex;
        justify-content: center;
        margin: 120px auto;
    .faq-content {
        width: 100%;
        max-width: 1012px;
        background-color: var(--color-bg-primary);
        padding: 64px 80px;
        h2{
            letter-spacing: 2px;
            margin-bottom: 0;
            margin-top: 0;
            p{
                margin-bottom: 56px;
                margin-top: 0;
                text-align: center;
            }
        }
        .faq-item {
            border-top: 1px solid var(--color-stroke-1);
            padding: 40px 0;
            &:last-child {
                border-bottom: 1px solid var(--color-stroke-1);
            }
            .faq-question {
                list-style: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.60; /* 160% */
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .faq-question::-webkit-details-marker {
                display: none;
            }

            .icon::after {
                content: '';
                display: inline-block;
                width: 10px;
                height: 10px;
                border-right: 2px solid currentColor;
                border-bottom: 2px solid currentColor;
                transform: rotate(45deg); /* Points Down */
                transition: transform 0.3s ease;
                margin-right: 10px;
                }

        
            /* Answer Content Styles */
            .faq-answer {
                padding-top: 15px;
                max-width: 90%;
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.50; /* 150% */
                letter-spacing: 1px;
            }
        }
        .faq-button{
            margin-top: 56px;
        }
        /* Change Icon when Parent is Open (Chevron Up) */
        details[open] .icon::after {
        transform: rotate(-135deg); /* Points Up */
        }
    }
    }
}


.metafield-rich_text_field ul li {
    color: var(--color-black);
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .faq-section-wrapper{
    .faq-section {
        flex-direction: column;
        .faq-image {
            width: 100%;
        }
        .faq-content {
            width: 100%;
            h2 {
                letter-spacing: 2.2px;
                margin: 0;
               
            }
            
        }
    }
}
}

/* Base style for mobile (below 1024px) */
.page-width {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

/* 1024px and up - still 100% width with 16px padding */
@media screen and (min-width: 1024px) {
  .page-width {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 1280px and up - Page width becomes 1200px */
@media screen and (min-width: 1280px) {
  .page-width {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* 1370px and up - Page width becomes 1320px */
@media screen and (min-width: 1370px) {
  .page-width {
    max-width: 1320px;
  }
}

/* 1500px and up - Page width becomes 1440px */
@media screen and (min-width: 1500px) {
  .page-width {
    max-width: 1440px;
  }
}


/* footer style  */

details[open] .header__icon-close {
    display: inline-block;
    display: none;
}

.search-modal__form input.search__input::placeholder {
    opacity: 1;
    padding-left: 40px;
    color: var(--color-subtext);
    text-align: left;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.50;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.search__button {
    left: 5px;
    top: 9px !important;
    position: absolute;
}

/* Hide the search button when the search input has content (user typed, placeholder hidden) */
.search-modal__form input.search__input:not(:placeholder-shown) + .search__button,
.search-modal__form input.search__input:not(:placeholder-shown) ~ .search__button,
/* Use :has() where supported as a reliable parent selector fallback */
.search-modal__form:has(input.search__input:not(:placeholder-shown)) .search__button {
    display: none;
    visibility: hidden;
    pointer-events: none;
}
.reset__button {
    display: none;
}

.predictive-search__result-group{
    .caption-with-letter-spacing{
        color: var(--color-black);
        font-family: var(--font-family-primary);
        font-size: 20px;
        font-style: normal;
        font-weight: var(--font-weight-light);
        line-height: 24px; /* 120% */
        letter-spacing: 2px;
        text-transform: uppercase;
    }
}


 input.field__input{
    font-family: var(--font-family-primary);
    font-size: 18px;
    padding: .6rem 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-black);
    height: 36px;
    letter-spacing: 2px;
    &::placeholder {
        color: var(--color-black);
        display: block;
        opacity: 1;
        font-size: 18px;
        padding: .6rem 0rem;
        font-weight: var(--font-weight-regular);
        letter-spacing: 2px;
    }
    &:focus{
    padding: .6rem 1.5rem;
    box-shadow: none;
    }
}
.text-area{
    font-family: var(--font-family-primary);
    font-size: 18px;
    padding: .6rem 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-black);
    letter-spacing: 2px;
    &::placeholder {
        color: var(--color-black);
        display: block;
        opacity: 1;
        font-size: 18px;
        padding: .6rem 0rem;
        font-weight: var(--font-weight-regular);
        letter-spacing: 2px;
    }
}
label.field__label{
    font-size: 1rem;
    top: 25px;
    display: none;
}

.field:before, .field::after{
        box-shadow: none;
    }
    input[type="email"], input[type="text"], input[type="tel"], .text-area{
        /* border-radius: 130px; */
        border-bottom: 1px solid #000;
        background-color: #fff;
        padding: 0 !important;
    }
    .field:hover.field:after, .select:hover.select:after, .select__select:hover.select__select:after, .customer .field:hover.field:after, .customer select:hover.select:after, .localization-form__select:hover.localization-form__select:after {
        box-shadow: none;
        outline: 0;
        border-radius: var(--inputs-radius);
}

.product-splide .splide-slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
    height: 300px !important;
}
.product-grid{
    .card--standard .card__inner{
        height: 300px;
        .card__media{
            img{
                object-fit: contain;
            }
        }
    }
    .card__content{
        .card__badge{
            span{
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px; /* 142.857% */
                letter-spacing: 2px;
                text-transform: uppercase;
            }
        }
        .card__information{
            text-align: center;
            margin: auto;
            .card__heading{
                color: var(--color-black);
                text-align: center;
                font-family: var(--font-family-primary);
                font-size: 14px;
                font-style: normal;
                font-weight: var(--font-weight-medium);
                line-height: 20px; /* 142.857% */
                letter-spacing: 2.2px;
                text-transform: uppercase;
                position: relative;
            }
            .card-information{
                text-align: center;
                .price__container{
                    span{
                        color: var(--color-black);
                        text-align: center;
                        font-family: var(--font-family-primary);
                        font-size: 14px;
                        font-weight: var(--font-weight-medium);
                        line-height: 20px; /* 142.857% */
                        letter-spacing: 2.2px;
                        text-transform: uppercase;
                    }
                }
            }
        }
    }
}

.collection-list{
    .collection-list__item{
        
        .card--standard .card__inner{
            height: 638px;
            
        }
        .card__content  {
               position: absolute;
                bottom: 0;
            .card__information{
                    cursor: pointer;
                    transition-duration: 0.5s;
                    background: rgba(0, 0, 0, 0.38);
                    backdrop-filter: blur(12px);
                    margin: 8px;
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                .card__heading{
                   
                    color: var(--Pure-White, #fff);
                    text-align: center;
                    /* Desktop/Display sm/Regular */
                    font-family: var( --font-family-primary);
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 36px; /* 150% */
                    letter-spacing: 2.2px;
                    text-transform: uppercase;
                    a.full-unstyled-link{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                       
                    }
                     .icon-wrap{
                            display: none;
                        }
                    
                }
            }
}
   }
           
}
    

/* When the mouse enters the card, change the information background */




.collection-list .collection-list__item:hover .card__information {
    background: #fff !important;
    .card__heading {
        color: var(--color-black) !important;
        a.full-unstyled-link {
            justify-content: space-around;
        }
        .icon-wrap{
            vertical-align: middle;
            display: inline-block;
            position: relative;
            top: 5px;
        }
    }
}

/* Smooth transition for elements */
.collection-list .card__information,
.collection-list .card__heading,
.collection-list .card__heading a.full-unstyled-link,
.collection-list .card__heading .icon-wrap {
  transition: all 0.5s ease;
}

/* Hover effect */
.collection-list .collection-list__item:hover .card__information {
  background: #fff !important;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Heading color change */
.collection-list .collection-list__item:hover .card__heading {
  color: var(--color-black) !important;
}

/* Link layout animation */
.collection-list .collection-list__item:hover 
.card__heading a.full-unstyled-link {
  justify-content: space-between;
  letter-spacing: 2px;
}

/* Icon animation */
.collection-list .collection-list__item:hover 
.card__heading .icon-wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  transform: translateX(6px);
}


/* Splide slider styles for product card gallery */
.product-splide{
    position: absolute;
    inset: 0; /* fill the media container */
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.card-wrapper:hover .product-splide{
    opacity: 1;
    pointer-events: auto;
}
.product-splide .splide__list,
.product-splide .splide__slide{
    height: 100%;
}
.product-splide .splide-slide-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product-splide .splide__arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    .splide__arrow{
        -ms-flex-align: center;
        align-items: center;
        background: var(--color-white);
        border: 1px solid #6B6B6B;
        border-radius: 0;
        cursor: pointer;
        display: -ms-flexbox;
        display: flex;
        height: 40px;
        -ms-flex-pack: center;
        justify-content: center;
        opacity: .7;
        padding: 0;
        position: unset;
        top: 1%;
        transform: translateY(-50%);
        width: 40px;
        z-index: 1;
    }
}
.product-splide .splide__pagination{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    z-index: 5;
}

/* Featured image sits under the splide slider and is visible by default */
.product-featured-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* ensure splide overlays the featured image and doesn't block pointer events when hidden */
.product-splide{
    z-index: 2;
    pointer-events: none;
}
.card-wrapper:hover .product-splide{
    pointer-events: auto;
}

.slideshow__text.banner__box{
    .banner__heading{
        color: var(--color-white);
        text-align: center;
        -webkit-text-stroke-width: 0.2px;
        -webkit-text-stroke-color: var(--color-white);
        font-family: var(--font-family-primary);
        font-size: 72px;
        font-style: normal;
        font-weight: 400;
        line-height: 80px; /* 111.111% */
        letter-spacing: 2px;
        text-transform: none;
    }

}


/* Make slider clickable and stop card click */
.product-splide,
.product-splide * {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

/* Prevent card media from triggering link */
.card__media {
  position: relative;
  z-index: 1;
}



footer.footer {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Footer-specific newsletter form overrides (flat selectors) */
.footer-main .footer-block__newsletter .newsletter-form__button {
    width: 125px;
    z-index: 2;
    letter-spacing: 2px;
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 1.11;
    color: var(--color-black);
}

.footer-main .footer-block__newsletter p{
    color: var(--color-black);
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 1.50;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 16px 0 0 0;
}

.footer-main .footer-block__newsletter h2.footer-newsletter-heading{
    margin: 0;
}

footer.footer .newsletter-form__field-wrapper .field:before,
footer.footer .newsletter-form__field-wrapper .field::after {
    box-shadow: none;
}

footer.footer .newsletter-form__field-wrapper input[type="email"] {
    border-bottom: 1px solid #000;
    background-color: #fff;
    padding: 0 !important;
}

footer.footer .newsletter-form__field-wrapper .field:hover.field:after,
footer.footer .newsletter-form__field-wrapper .select:hover.select:after,
footer.footer .newsletter-form__field-wrapper .select__select:hover.select__select:after,
footer.footer .newsletter-form__field-wrapper .customer .field:hover.field:after,
footer.footer .newsletter-form__field-wrapper .customer select:hover.select:after,
footer.footer .newsletter-form__field-wrapper .localization-form__select:hover.localization-form__select:after {
    box-shadow: none;
    outline: 0;
    border-radius: var(--inputs-radius);
}

.footer_top_area_newspaper {
    display: none;
}



.footer_top_area .footer-block--newsletter {
    max-width: 59.5rem;
    margin: auto;
    padding: 120px 0 58px 0;
}

    
        
           
        .footer-logo-social-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 98px 0 40px 0;
            margin-bottom: 40px;
            .svg-wrapper {
                width: 24px;
                height: 24px;
                svg{
                    color: var(--color-white);
                }
            }
            .footer-logo {
                img{
                    max-width: 160px;
                }
            }
        }
  

    .footer-menu-widget{
        .footer-menu-heaing, h2.footer-block__heading.rte{
            margin-bottom: 24px;
            display: inline-block;
            color: var(--color-subtext);
            font-weight: var(--font-weight-regular);
            font-size: 16px;
            font-family: var(--font-family-primary);
            line-height: 1.50;
            letter-spacing: 2.2px;
            text-transform: uppercase;
        }
        .contact_texts{
            li{
                display: flex;
                justify-content: start;
                align-items: center;
                gap: 10px;
                svg{
                    width: 20px;
                    height: 20px;
                    color: var(--color-black);
                }
                a{
                    color: var(--color-black);
                    font-family: var(--font-family-secondary);
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 400;
                    line-height:1.60;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                }
            }
        }
        .footer-widget-text{
            p{
                color: var(--color-black);
                margin: 0;
                font-family: var(--font-family-secondary);
                font-size: 16px;
                font-weight: var(--font-weight-regular);
                line-height: 1.50;
                letter-spacing: 1px;
                max-width: 387px
            }
        }
    }
    .footer-block--menu{
        ul{
            
            li{
                a{
                    color: var(--color-black) !important;
                    font-family: var(--font-family-secondary);
                    font-size: 20px !important;
                    font-weight: var(--font-weight-regular);
                    line-height: 1.60;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                }
            }
        }
    }
    .footer-hidden-section{
        display: none !important
    }
    .footer-content-copyright{
      
        .footer__copyright{
            margin-top: 0;
            margin-bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            p{
                margin: 0;
                padding: 0;
                color: var(--color-black);
                font-family: var(--font-family-secondary);
                font-size: 12px;
                font-style: normal;
                font-weight: var(--font-weight-regular);
                line-height: 1.40;
                letter-spacing: 2px;
            }

            .footer-payment {
                display: flex;
                img{
                    max-width: 300px;
                }
            }
        }

    }


/* Mega Menu Styles for Collections */
.mega-menu__explore {
    padding: 0 0;
}

.mega-menu__explore-title {
    margin-bottom: 28px;
    margin-top: 24px;
    text-align: left;
    color: var(--color-black);
    font-family: var(--font-family-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.50; 
    letter-spacing: 2.2px;
    text-transform: uppercase;
    border-bottom: 0.5px solid var(--color-stroke-2);
    width: 521px;
    padding-bottom: 12px;
}

.mega-menu__explore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.mega-menu__collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    width: 85%;
    align-items: center;
}

.mega-menu__collection-item {
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    letter-spacing: 1px;
    color: var(--color-black);
    text-decoration: none;
}

/* add top spacing only to the very first grid item */
.mega-menu__collections-grid .mega-menu__collection-item:first-child {
    margin-top: 1rem; /* adjust as needed */

    transition: opacity 0.3s ease;
    display: block;
    padding: 0 0;
    letter-spacing: 2px;
}

.mega-menu__collection-item:hover {
    opacity: 0.6;
}

.mega-menu__products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    top: -75px;
}

.mega-menu__product-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mega-menu__product-card:hover {
    transform: translateY(-4px);
}

.mega-menu__product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    height: 208px;
    img{
        width: 100%;
        height: 208px !important;
        object-fit: contain !important;
    }
}


.mega-menu__product-name {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 8px 0;
    font-size: 20px;
    line-height: 1.50;
    letter-spacing: 2.2px;
    text-align: left;
}

.mega-menu__product-price {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    color: var(--color-subtext);
    margin: 0;
    display: none;
}

.header__icon {
    .desktop-only{
        display: flex;
    }
    .mobile-only{
        display: none;
    }
}

.product__info-container{
    .product__title{
        h5{
            font-weight: var(--font-weight-medium);
            letter-spacing: 2.2px;
            text-transform: uppercase;
            color: var(--color-black);
            font-family: var(--font-family-primary);
            font-size: 24px;
        }
    }
}

body.template-product{
    .multicolumn-list li:last-child .multicolumn-card__image-wrapper {
        width: 100%;
        position: absolute;
        padding-bottom: 170px;
        max-width: 403px;
    }
    .multicolumn-list li .multicolumn-card__image-wrapper {
        width: 48px;
        margin: auto;
    }
} 


body.template-page-shipping-delivery{
    .multicolumn-list h3 {
        text-align: left;
        font-weight: 600;
    }
    .multicolumn-card__info ul {
        margin: 0;
        list-style: disc;
    }
    .image-with-text__media {
        border: none;
        img {
            object-fit: contain;
            object-position: top;
        }
    }
    .image-with-text__content {
        padding: 0 0 0 60px;
        
    }
    p{
        font-weight: 300;
    }
    .image-with-text__text{
        h4{
            margin: 24px 0 0 0;
            padding: 0;
            color: var(--color-black);
            font-family: var(--font-family-primary);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 1.50; 
            letter-spacing: 2.2px;
            text-transform: uppercase;
        }
        ul {
            margin: 0;
            padding: 0 !important;
        }
    }
}

.product__info-wrapper{
    h2.accordion__title{
        color: var(--color-black);
        font-family: var(--font-family-primary);
        font-size: 16px !important;
        font-style: normal;
        font-weight: 500;
        line-height: 1.50; /* 150% */
        letter-spacing: 2.4px;
        text-transform: uppercase;
    }
    .icon-with-text__item .h4{
        color: var(--color-subtext);
        /* Desktop/Body 3/Pragraph */
        font-family: var(--font-family-secondary);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
        letter-spacing: 1px;
        a{
            color: var(--color-black);
            font-family: var(--font-family-secondary);
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 1px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: none;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
            text-transform: uppercase;
        }
    }
     
}
.product-form__quantity .form__label {
    margin-bottom: 0;
    display: none;
}
nav.breadcrumb {
    margin-bottom: 32px;
    a{
        color: var(--color-subtext);
        font-family: var(--font-family-secondary);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.50; 
        letter-spacing: 2.2px;
        text-transform: uppercase;
    }
    span{
        color: var(--color-black);
        font-family: var(--font-family-secondary);
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 150% */
        letter-spacing: 2.2px;
        text-transform: uppercase;
        padding: 5px;
    }
}
.template-product{
    /* .product__media-wrapper{
       background: var(--color-bg-primary);
       padding: 40px;
    } */
    media-gallery {
        align-items: center;
         background: var(--color-bg-primary);
       padding: 40px;
       min-height: 792px;
    }
    .multicolumn-card__info {
        padding: 20px 0 0 0;
        width: 310px;
        margin: auto;
    }
}
.social-media-link a {
    padding: 8px;
    display: inline-block;
}


.rich-text__text h4, .returns-body h4 {
    color: var(--color-black);
    /* Desktop/Display sm/Regular */
    font-family: var( --font-family-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.50; /* 150% */
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

body.template-product {
    .grid__item.product__media-wrapper {
        max-height: 684px;
    }
    .social-media-link{
        margin-top: 64px;
    }
}


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

    body.template-product{
        .multicolumn-list li:last-child .multicolumn-card__image-wrapper {
            width: 100%;
            position: inherit;
            padding-bottom: 32px;
        }
    }

    .collection-list {
    & .collection-list__item {
        & .card__content {
            & .card__information .card__heading {
        color: var(--Pure-White, #fff);
        text-align: center;
        font-family: var( --font-family-primary);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
        letter-spacing: 2.2px;
        text-transform: uppercase;
    }
}
    }
}

    .slideshow-header h2 {
        font-size: 24px !important;
        margin: 0px 0 24px 0 !important
    }
    .bis-title {
        font-size: 24px !important;
        margin-bottom: 24px !important;
    }
    .bis-subtitle {
        font-size: 16px !important;
    }
    .bis-next-preview {
        width: 200px;
        align-self: center;
        z-index: 1;
        position: inherit !important;
        bottom: 0;
        margin-top: 56px;
    }
    .bis-content-wrapper{
        text-align: center;
        .ms-tertiary-btn {
            text-align: center;
            margin: auto;
        }
    }
    .faq-section-wrapper {
        & .faq-section {
            .faq-content {
                padding: 16px;
            }
        }
    }
    .slideshow__text.banner__box{
    .banner__heading{
        font-size: 40px;
        line-height: 44px;
        padding-top: 115px;
    }
     .banner__buttons {
        margin-top: 48px;
        padding-bottom: 115px;
    }
    }
    .multicolumn-card p br {
        display: none;
    }
    
    .header__icon {
        width: 24px;
        .desktop-only{
            display: none;
        }
        .mobile-only{
            display: flex;
        }
    }
    .header__icons {
        padding-right: 0;
        gap: 12px;
    }
    .mega-menu__explore-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mega-menu__collections-grid {
        grid-template-columns: 1fr;
    }
}
.footer__blocks-wrapper .footer-block:nth-child(1){
    width: 30%;
}
.footer__blocks-wrapper .footer-block:nth-child(2) {
    width: 10%;
}
.footer__blocks-wrapper .footer-block:nth-child(3) {
    width: 25%;
    /* padding-left: 80px; */
    .footer-widget-text{
        p, a{
            color: var(--color-black);
            font-family: var(--font-family-secondary);
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.60; /* 160% */
            letter-spacing: 1px;
            text-transform: uppercase;
            vertical-align: middle;
        }
    }
}

.footer__blocks-wrapper .footer-block:nth-child(4) {
    width: 12%;
    .footer-block__brand-info{
        text-align: right;


    }
    .footer-block__brand-info .footer__list-social.list-social {
        justify-content: flex-end;
    }
}
.footer-block.footer-menu-widget.grid__item.scroll-trigger.animate--slide-in img {
    margin-bottom: 34px;
    height: auto;
    width: 200px;
}

@media all and (max-width: 1024px) {
.footer__blocks-wrapper .footer-block:nth-child(3){
    width: 38%;

}
.footer__blocks-wrapper .footer-block:nth-child(4){
    width: 13%;
    
}
}

@media all and (max-width: 768px) {

    .faq-page-wrapper{
        .faq-page {
            .faq-content {
                padding: 64px 16px;
            
            }
        }
    }


    .footer-main .footer-block__newsletter p{
        width: 246px;
        margin: auto;
    }
    .footer-block__newsletter{
        gap: 0 !important;
    }
    .footer__blocks-wrapper .footer-block:nth-child(1){
        width: 100%;
    }
    .footer__blocks-wrapper .footer-block:nth-child(2) {
    padding-left: 0;
    width: 100%;
    }
    .footer__blocks-wrapper .footer-block:nth-child(3) {
        padding-left: 0;
        width: 100%;
    }
    .footer__blocks-wrapper .footer-block:nth-child(4){
        width: 100%;
    }
    .footer__copyright {
        flex-direction: column;
        row-gap: 16px;
    }
    .footer__blocks-wrapper .footer-block:nth-child(3) {
    & .footer-widget-text {
        p, a {
            font-size: 16px;
        }
        }
    }
    footer.footer {
    & .footer-menu-widget {
        & .contact_texts {
            & li {
                a {
                    font-size: 16px;
                    
                }
            }
        }        & .footer-widget-text {
            p {
                font-size: 16px;
            }
        }
        & ul {
            & li {
                a {
                    font-size: 16px;         padding: 10px 0;
                }
            }
        }
    }
}
.footer-block__details-content{
    margin-bottom: 0;
}
.footer-block__newsletter {
    width: 100% !important;
    height: auto !important;
    padding: 64px 20px !important;
    margin-top: -320px; 
    display: flex;
    row-gap: 16px;
        .text-body-1 {
        margin-top: 0 !important;
        margin-bottom: 64px !important;
        font-size: 16px;
        line-height: 1.60;
        letter-spacing: 1.31px;
    }
    .footer-newsletter-heading {
        width: 100% !important;
    }
}
.footer-main {
    height: 773px;
}
.footer-logo {
    img {
        max-width: 260px !important;
        width: 260px !important;
        height: auto;
    }
}
.search__input.field__input {
    padding-right: 0;
}
.multicolumn-card-spacing {
    padding-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.multicolumn-card__info {
    padding: 16px 0;
}
body.template-page-shipping-delivery .image-with-text__content {
    padding: 16px  0 0 0;
}
.rich-text__blocks {
    padding: 0 !important;
    max-width: 100%;
    background: #fff  !important;
    text-align: left;
    box-shadow: none !important;
}
.rich-text__wrapper {
    width: 100% !important;
}
.multicolumn-card {

    display: flex;
    flex-direction: column;
    align-items: center;
}
.multicolumn-card__info {
    padding: 0 !important;
}
.footer-block__newsletter {
    max-width: 343px !important;
    height: 356px;
}
.footer-main {
    height: inherit;
    padding: 194px 0;
}
.footer-logo-social-icons {
    padding: 64px 0 40px 0 !important;
    margin-bottom: 40px;
}

.footer-main .footer-block__newsletter p{
    font-size: 16px;
    margin-top: 16px !important
}

.footer__blocks-wrapper .footer-block:nth-child(4) {
    .footer-block__brand-info{
        text-align: left;

    }
    .footer-block__brand-info .footer__list-social.list-social {
        justify-content: flex-start;
    }
}6B6B6B
}