/* ==========================================================================
   CHARTE GRAPHIQUE - AROMA BEAUTÉ (Mise à jour Fonts)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    /* Couleurs principales */
    --color-primary: #6B9B6E;       
    --color-primary-hover: #528059;
    --color-primary-dark: #577F5D;  
    
    /* Couleurs neutres & Fonds */
    --color-text-dark: #1A1A1A;     
    --color-text-muted: #666666;    
    --color-bg-light: #4A5565;      
    --color-white: #FFFFFF;
    
    --color-badge-new: #c44545;     

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em; 
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .products-section-title {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 500;
    text-transform: none !important; 
    letter-spacing: 0;
}

h2, .h2, .products-section-title {
    font-size: 20px;
    line-height: 1.2;
}
a {
    color: #6b9b6e;
    font-family: 'Manrope';
}
.btn-primary, 
.btn-custom-green {
    font-family: var(--font-body);
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    text-transform: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover, 
.btn-custom-green:hover {
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
}

header#header .container {
    max-width: 1920px;
    width: 100%;
}

#header .logo {
    max-width: 61px;
}

#search_widget {
    width: 100%;
    max-width: 100%;
}

.header-action-buttons {
    display: flex;
    justify-content: end;
    gap: 20px;
}
header a.btn {
    border: 2px solid #6B9B6E;
    border-radius: 6px;
    padding: 12px 25px;
}

#header a.btn.btn-custom-green {
    color: #fff;
}

#header a.btn.btn-outline-dark {
    color: #6B9B6E;
}
nav.header-nav a, nav.header-nav span {
    color: #1A1A1A;
    font-size: 12px;
}

nav.header-nav img.banner-icon {
    max-width: 13px;
    height: auto;
    margin-right: 6px;
}

#header .header-nav .blockcart {
    background: transparent;
    padding-block: 0;
    height: auto;
}
#header .header-nav .cart-preview.active {
    background: transparent;
}
#header .header-nav {
    background: #F5F3EF;
    max-height: 32px;
    padding: 4px 0;
}

#header .header-nav #_desktop_contact_link #contact-link {
    margin: 0;
}
#header .header-nav #_desktop_contact_link #contact-link a {
    margin-right: 20px;
}
#header .header-nav .language-selector, #header .header-nav .user-info {
    margin-top: 0;
}

#header .header-nav .blockcart .header {
    margin-top: 0;
}
#search_widget form input {
    padding: 15px 40px 15px 20px;
    border: 1px solid #E5E7EB;
    background: #FAF9F7;
}
#search_widget form input:focus {
    border-color: #6b9b6e;
}
#search_widget form i.material-icons.search {
    right: 30px;
    top: 7px;
    cursor: pointer;
}
#header .header-top{
    padding-bottom: 0;
}
.main-menu-wrp{
    text-align: center;
    border-top: 1px solid #F7F7F7;
    margin-top: 20px;
}

#header .header-top a[data-depth="0"] {
    font-size: 14px;
    font-family: 'Manrope';
    font-weight: 400;
    color: #1A1A1A;
}
#header .menu, #header .menu>ul>li {
    margin: 0 20px;
    position: relative;
}
#top-menu > li > a {
    display: inline-flex !important;
    align-items: center;
    padding: 15px 20px !important;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#top-menu > li > a::before {
    content: "";
    display: inline-block;
    width: 16px;  
    height: 16px; 
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

#top-menu > li:hover > a {
    color: var(--color-primary) !important;
}
#top-menu > li:hover > a::before {
    transform: scale(1.05);
}

/* 1. BOUTIQUE */
#top-menu > li:nth-child(1) > a::before {
    background-image: url('../img/menu-boutique.svg');
}

/* 2. INSTITUT & SOINS */
#top-menu > li:nth-child(3) > a::before {
    background-image: url('../img/menu-institut.svg');
}

/* 3. NOS MARQUES */
#top-menu > li:nth-child(2) > a::before {
    background-image: url('../img/menu-marques.svg');
}

/* 4. AROMA'BOX */
#top-menu > li:nth-child(6) > a::before {
    background-image: url('../img/menu-box.svg');
}

/* 5. BONS PLANS */
#top-menu > li:nth-child(4) > a::before {
    background-image: url('../img/menu-plans.svg');
}

/* 6. NOUVEAUTÉS */
#top-menu > li:nth-child(5) > a::before {
    background-image: url('../img/menu-nouveautes.svg');
}
ul#top-menu li:has(.sub-menu) > a.dropdown-item {
    position: relative;
    padding-right: 35px !important; /* Place pour le chevron */
}

ul#top-menu li:has(.sub-menu) > a.dropdown-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-left: 1.5px solid var(--color-text-dark);
    border-bottom: 1.5px solid var(--color-text-dark);
    transform: translateY(-50%) rotate(-45deg); 
    transition: transform 0.3s ease, border-color 0.3s ease;
}

ul#top-menu li:has(.sub-menu):hover > a.dropdown-item::after {
    border-color: var(--color-primary);
    transform: translateY(-3px) rotate(135deg);
}




/* ==========================================================================
   Home order
   ========================================================================== */
#content.page-home {
    display: flex;
    flex-direction: column;
}

#content.page-home > .double-banner-section:not(.banner-2) {
    order: 1;
}

#content.page-home > #block-reassurance {
    order: 2;
}

#content.page-home > .featured-products.new-product.slick-pdt {
    order: 3 !important;
}

#content.page-home > .featured-products.slick-pdt:not(.new-product) {
    order: 4;
}

#content.page-home > .banner {
    order: 5;
}

#content.page-home > #custom-text {
    order: 6;
}

#content.page-home > .double-banner-section.banner-2 {
    order: 7; 
}

#content.page-home > .featured-products.clearfix.mt-3 {
    order: 8; 
    margin-top: 0 !important;
}

#content.page-home > .home-promo-wrapper {
    order: 9;
}
/* ==========================================================================
   SECTION DOUBLE BANNIÈRE (Boutique / RDV)
   ========================================================================== */
body#index #wrapper {
    padding-top: 0;
    position: relative;
    background: #fff;
    /* top: -30px; */
}
.container {
    width: 100%;
    max-width: 1280px;
}
.double-banner-section {
    display: flex;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 450px;
    margin-top: 0;
    margin-bottom: 30px;
}

.banner-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    position: relative;
}
.banner-half::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 7%) 0%, rgba(0, 0, 0, 0.2) 100%);
    top: 0;
    left: 0;
}
.banner-content {
    max-width: 80%;
    position: relative;
}

.banner-title-brand {
    font-family: var(--font-body); 
    color: #ffffff;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: #ffffff;
    font-family: 'Cormorant Garamond';
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.4;
}

.font-serif-italic {
    font-style: italic;
}

.btn-banner-white {
    background-color: #ffffff !important;
    color: var(--color-primary) !important; 
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease !important;
}

.btn-banner-white .arrow {
    transition: transform 0.3s ease;
}

.btn-banner-white:hover {
    background-color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-banner-white:hover .arrow {
    transform: translateX(4px);
}

section.double-banner-section.banner-2 {
    min-height: 280px;
    margin-block: 50px;
}
section.double-banner-section.banner-2  .banner-half {
    background-position: center center;
    background-size: 100% auto; 
    transition: background-size 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.double-banner-section.banner-2  .banner-half:hover {
    background-size: 110% auto; 
}
/* --------------------------------------------------------------------------
   Reassurances
   -------------------------------------------------------------------------- */

.blockreassurance_product .item-product img, .blockreassurance_product .item-product svg {
    height: 24px;
    width: 24px;
}
#index div#block-reassurance ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
    max-width: 1070px;
    width: 100%;
}

span.h6 {
    font-weight: 400;
}

#index #block-reassurance li {
    border: none;
}

#index div#block-reassurance {
    background: #faf9f7;
    margin-top: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: -30px;
}
#block-reassurance li .block-reassurance-item{
    padding-block: 35px;
}

/* --------------------------------------------------------------------------
   Product Miniatures
   -------------------------------------------------------------------------- */
.new-product {
    margin-top: -57px;
}

.new-product {
    margin: 50px 0 !important;
}

.sec-intro.text-center {
    text-align: center;
    margin-bottom: 30px;
}
.sec-intro.text-center p {
    color: #4A5565;
    font-size: 16px;
}
#products .products-section-title, .featured-products .products-section-title, .product-accessories .products-section-title {
    margin: 20px 0;
}
.product-flags li{
    margin-left: auto;
    margin-right: 10px;
}

.products article .wishlist-button-add {
    display: none;
}
.has-discount .page-content.page-cms ul, .has-discount p, .has-discount.product-price, .page-content.page-cms .has-discount ul {
    color: #C44545;
}
.product-images>li.thumb-container .thumb.selected, .product-images>li.thumb-container .thumb:hover {
    border: #6b9b6e 3px solid;
}
.product-flags li.product-flag, .product-flags li.product-flag.discount, .product-flags li.product-flag.discount-amount, .product-flags li.product-flag.discount-percentage {
    background: #C44545;
    text-transform: none;
    font-family: 'Manrope';
    font-weight: 400 !important;
    font-size: 12px;
    border-radius: 6px;
}

.product-miniature .product-flags li.product-flag {
    min-height: 24px;
    padding: 3px 10px;
}

.product-miniature .thumbnail-container {
    border: 1px solid #F3F4F6;
    border-radius: 6px;
    width: 100%;
    border: none;
}
.product-miniature {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
  border: none !important;
  overflow: hidden; 
  border-radius: 16px;
}

.product-miniature:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px); 
}

.product-miniature .thumbnail-container .product-thumbnail img {
    margin: 0;
    object-fit: cover;
    width: 100%;
}
.add-to-cart.btn-green-full {
    display: block;
    width: 90%;
    margin: 10px auto;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Manrope';
}

.product-miniature .product-title a {
    font-size: 16px;
    color: #000;
}

.product-miniature .product-title {
    text-align: left;
    padding: 0 12px;
    line-height: 1.2;
}
a:focus {
    outline: none;
}


.product-miniature .highlighted-informations .quick-view:hover {
    color: #6b9b6e;
}

.product-miniature .highlighted-informations .quick-view {
    font-size: 12px;
    color: #6b9b6e;
}

.product-miniature .highlighted-informations .quick-view i {
    font-size: 18px;
}
.product-miniature .product-price-and-shipping {
    font-weight: 400;
    text-align: left;
    padding: 15px 12px 5px;
    font-size: 16px;
}
.products.slick-slider {
    display: block !important;
}

.products.slick-slider::before,
.products.slick-slider::after {
    display: none !important;
}
.products.slick-slider .custom-arrow {
    background-color: #ffffff;
    color: var(--color-text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.products.slick-slider .custom-arrow:hover {
    background-color: var(--color-primary); 
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.slick-dots li button:before {
    font-size: 12px;
}

.slick-next:before, .slick-prev:before {
    display: none;
}
.slick-prev {
    left: -50px !important;
}

.slick-next {
    right: -50px !important;
}

.home-promo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.home-promo-wrapper #custom-text {
    text-align: left;
    background: transparent;
    max-width: 642px;
    padding: 0 0 0 50px;
    margin-bottom: 0;
}

#custom-text p {
    color: #364153;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

#custom-text h2 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#wrapper .home-promo-wrapper .banner {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0;
}

.home-promo-wrapper img {
    width: 100%;
}

.home-promo-wrapper a.btn.btn-banner-white {
    margin-top: 10px;
    color: #fff !important;
    background: #6b9b6e !important;
    width: fit-content;
}
#wrapper .banner {
    display: none;
}

div#custom-text {
    display: none;
}

#wrapper .home-promo-wrapper .banner, #wrapper .home-promo-wrapper div#custom-text {
    display: block;
}
/* Section globale */
.aroma-map-section {
    margin: 0 auto 0;
    padding: 65px 20px;
    font-family: 'Manrope';
    background: #FAF9F7;
}

/* En-tête */
.ams-header {
    text-align: center;
    margin-bottom: 40px;
}
.ams-header h2 {
    font-family: 'Cormorant Garamond';
     /* Ton vert foncé/anthracite */
}
.ams-header p {
    color: #4A5565;
    font-size: 16px;
}

/* Layout Flexbox / Grid */
.ams-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}
.ams-map-col {
    flex: 1.4;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.ams-info-col {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 420px;
}

/* Wrapper Map pour garder un aspect ratio propre */
.ams-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.ams-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* La Carte d'informations */
.ams-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

/* Header de la Carte */
.ams-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.ams-avatar {
    background-color: #6b9470; /* Code couleur de ton vert de marque */
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Manrope';
}
.ams-card-header h3 {
    font-size: 18px;
    color: #6b9470;
    margin: 0;
    font-weight: 500;
}

/* Corps de la carte (Items) */
.ams-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
    padding-left: 50px;
}
.ams-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.ams-info-item p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Manrope';
}
.ams-info-item p a {
    color: #4b5563;
    text-decoration: none;
}

/* Gestion des pictos SVG */
.ams-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer & Bouton Itinéraire */
.ams-card-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}
.ams-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b9470;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: 'Manrope';
}
.ams-btn-link:hover {
    color: #557759;
}
.ams-icon-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}
.ams-btn-link:hover .ams-icon-arrow {
    transform: translateX(4px);
}
section.section-nl {
    background: #6B9B6E;
    padding: 50px 0;
}

section.section-nl .block_newsletter {
    background: transparent;
}

.block_newsletter p#block-newsletter-label {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond';
    color: #fff;
    text-align: center;
}
.block_newsletter .sec-intro.text-center p {
    color: #fff;
}
.block_newsletter .btn-primary {
    background: #fff !important;
    color: #6b9b6e !important;
    font-size: 16px;
    border-radius: 6px;
    padding: 10px 30px;
    height: 50px;
}

.block_newsletter form input[type=email] {
    background: transparent;
    border: none;
    color: #fff;
    height: 50px;
    border-radius: 6px;
}

/* Ciblage du placeholder en noir */
.block_newsletter form input[type=email]::placeholder {
    color: #1a1a1a70;
    opacity: 1; /* Force l'opacité à 100% car certains navigateurs comme Firefox l'estompent par défaut */
}

/* Anciens navigateurs (Optionnel mais recommandé pour la rétrocompatibilité) */
.block_newsletter form input[type=email]:-ms-input-placeholder {
    color: #1a1a1a70;
}

.block_newsletter form input[type=email]::-ms-input-placeholder {
    color: #1a1a1a70;
}
.block_newsletter form input[type=email]:focus{
    border-color: #fff;
}
.block_newsletter form {
    max-width: 620px;
    margin: 0 auto;
}
/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer-container .h3, .footer-container .h4, footer #block_myaccount_infos .myaccount-title a {
    font-size: 16px !important;
    text-transform: none !important;
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    color: #000 !important;
}
.footer-container li a, div#contact-infos {
    color: #4A5565;
}
.footer-container li {
    margin-bottom: 15px;
}
.footer-bottom {
    border-top: 1px solid #ebebeb;
    padding: 20px 0;
    margin-top: 20px;
    color: #7a7a7a;
    font-size: 14px;
}

.payment-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.badge-payment {
    background-color: #E5E7EB;
    color: #495057;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #E5E7EB;
}

.paiment-wrp.align-items-center {
    display: flex;
    align-items: center;
    padding-block: 25px;
    border-top: 1px solid #00000038;
    margin: 20px 0 0;
}

.footer-bottom p {
    margin: 0;
}
.footer-container .payment-logos li {
    margin-bottom: 0;
}

.payment-wrapper, span.copyright{
    font-size: 14px;
    color: #4A5565;
}
div#contact-infos {
    line-height: 2;
}

div#contact-infos a {
    color: #6b9b6e;
}


/* Page category */
#subcategories ul li:hover .subcategory-image a {
    padding: 5px;
    border: 5px solid #6b9b6e;
}
.navbar-toggler.collapse-icons i, .pagination .current a, #manufacturer #main ul .brand-infos a:hover, #header a:hover{
    color: #6b9b6e !important;
}
.brands-sort .select-list:hover, .products-sort-order .select-list:hover, .suppliers-sort .select-list:hover, .bootstrap-touchspin .group-span-filestyle .btn-touchspin, .group-span-filestyle .bootstrap-touchspin .btn-touchspin, .group-span-filestyle .btn-default{
    background-color: #6b9b6e;
}
.tabs .nav-tabs .nav-link.active {
    color: #6b9b6e;
}
.tabs .nav-tabs .nav-link.active, .tabs .nav-tabs .nav-link:hover {
    border: 0;
    border-bottom: #6b9b6e 3px solid;
}
.product-price, .account-list a:hover, .block_newsletter form button[type=submit] .search:hover, .footer-container li a:hover{
    color: #6b9b6e;
}
.form-control:focus {
    outline: .1875rem solid #6b9b6e;
    border-color: #6b9b6e;
}
.text-primary, .wishlist-add-to-new i{
    color: #6b9b6e !important;
}
.custom-radio input[type=radio]:checked+span {
    background-color: #6b9b6e;
}
.listing-top-header-fullwidth {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 35px 0 50px;
    border-top: 1px solid #aeaaa23d;
}

.category-cover {}

.listing-top-header-fullwidth .category-cover {
    display: none;
}

.block-category.card.card-block {
    background: transparent;
    height: auto;
    min-height: auto;
    margin-bottom: 0;
    padding: 0;
}

.block-category .block-category-inner {
    max-width: 500px;
}
div#category-description span {
    color: #99A1AF;
    font-size: 12px;
}
.block-category h1 {
    font-size: 48px;
}

.page-content.page-cms div#category-description p {
    color: #6A7282;
}

div#js-product-list-header p {
    color: #6A7282 !important;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0 !important;
}

span.counter-label {
    color: #6A7282;
    font-size: 12px;
    line-height: 16px;
}

span.counter-number {
    display: block;
    text-align: right;
    font-size: 36px;
    line-height: 40px;
    font-family: 'Cormorant Garamond';
    color: #6B9B6E;
    font-weight: 300;
}

#block_myaccount_infos .myaccount-title a, #header a, #wrapper .breadcrumb li a, .block-contact .block-contact-title, .block-contact .navbar-toggler .material-icons, .linklist .blockcms-title a {
    font-size: 12px;
    color: #6A7282;
}

#wrapper .breadcrumb li:last-child {
    color: #1E2939;
    font-size: 12px;
}
.bg-white {
    background: #fff;
    padding: 50px 0;
}

.block-categories .category-sub-menu li[data-depth="0"]>a {
    font-weight: 400;
    font-size: 14px;
    color: #4A5565;
}

#search_filters .facet .facet-title {
    font-size: 14px;
    font-weight: 600;
}

#search_filters .facet .facet-label a {
    font-size: 14px;
    color: #4A5565;
}

.block-categories .category-sub-menu .category-sub-link {
    font-size: 14px;
    color: #4A5565;
}
.custom-checkbox input[type=checkbox]+span {
    border-radius: 2px;
    border: 2px solid #D1D5DC;
}

#search_filters .facet {
    border-top: 1px solid #F3F4F6;
    padding: 20px 0;
}

#search_filters .facet .collapse {
    margin-bottom: 0;
}
.products-sort-order.dropdown{
    text-align: right;
    padding: 0;
}
.products-selection .sort-by {
    display: none;
}

.products-sort-order .select-title {
    width: fit-content;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: 400;
    color: #000;
    padding: 10px 20px;
}

.products-selection .sort-by-row {
    justify-content: end;
    width: 100%;
    padding-right: 0;
}

.products-sort-order .dropdown-menu {left: 32%;}

.brands-sort .select-list, .products-sort-order .select-list, .suppliers-sort .select-list {
    font-size: 14px;
}

.layout-left-column .product-flags li {
    margin-left: 12px;
}

.layout-left-column ul.product-flags {width: fit-content;margin-top: 12px;}

.layout-left-column .product-miniature .product-flags li.product-flag {
    border-radius: 15px;
    width: 80%;
    padding: 6px 15px;
    line-height: 1;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 10px;
}

.layout-left-column .products article .wishlist-button-add {
    display: block;
}

.layout-left-column .products article .wishlist-button-add i {
    font-size: 20px;
    color: #6b9b6e8f;
}

.layout-left-column .product-miniature .thumbnail-container {
    border-radius: 16px;
    width: 100%;
}

article.product-miniature.js-product-miniature.reviews-loaded {
    width: 100%;
}

.layout-left-column .product-miniature .thumbnail-container .product-thumbnail img {
    width: 100%;
    object-fit: contain;
}

.layout-left-column .product-miniature .product-title a {
    font-family: 'Cormorant Garamond';
    font-size: 17.6px;
    color: #101828;
}

.layout-left-column .product-miniature .product-price-and-shipping {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: baseline;
}

.layout-left-column .product-miniature .regular-price {
    font-size: 12px !important;
}

.layout-left-column .product-miniature .product-price-and-shipping {
    font-weight: 600;
    color: #101828;
}
.product-meta-top {
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #79a68a;
    margin-bottom: 6px;
    font-weight: 500;
    padding: 12px 0 0 12px;
}
.meta-sep {
    margin: 0 4px;
    color: #79a68a;
}


.product-main-attribute {
    font-size: 12px;
    color: #99A1AF !important;
    padding: 0 0 0 12px;
    margin-bottom: 15px;
}

.product-bottom-layout {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 15px;
    padding: 0 15px 0 5px;
}

.btn-icon-basket {
    background-color: #6B9B6E !important; 
    color: #ffffff !important;
    border: none !important;
    width: 32px;
    height: 32px;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px !important; 
    transition: background-color 0.2s ease;
    font-size: 0;
}

.btn-icon-basket:hover {
    background-color: #4d7258 !important;
}

.btn-icon-basket .material-icons {
    font-size: 20px !important;
    margin: 0 !important;
}
.layout-left-column div#subcategories.card-block {
    display: none;
}

#js-active-search-filters.active_filters {
    background: #ffffff !important;
    box-shadow: none !important;
    padding: 25px 20px 25px !important;
    margin-bottom: 0px !important;
    border-bottom: 1px solid #eef2f5 !important;
}

#js-active-search-filters .active-filters-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

#js-active-search-filters .active-filter-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1E2939 !important;
    text-transform: capitalize !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

#js-active-search-filters .active-filter-title .material-icons {
    font-size: 18px !important;
    margin-right: 6px !important;
    color: #4a5568 !important;
    opacity: 0.6;
}

#js-active-search-filters .js-search-filters-clear-all {
    font-size: 12px !important;
    color: #689374 !important; 
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 500 !important;
    transition: opacity 0.2s ease;
}

#js-active-search-filters .js-search-filters-clear-all:hover {
    opacity: 0.8;
}

#js-active-search-filters .js-search-filters-clear-all .material-icons {
    font-size: 14px !important;
    margin-right: 3px !important;
}

#js-active-search-filters .active-filters-tags-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

#js-active-search-filters .filter-block {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #689374 !important; 
    color: #ffffff !important;
    padding: 3px 10px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-transform: capitalize !important;
}

#js-active-search-filters .filter-block a {
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 8px !important;
    text-decoration: none !important;
}

#js-active-search-filters .filter-block a .material-icons.close {
    font-size: 10px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    position: relative;
    top: -2px;
}
#left-column {
    display: flex !important;
    flex-direction: column !important;
}

#left-column .filter-active-section {
    order: 1 !important;
}

#left-column .block-categories {
    order: 2 !important;
    margin-bottom: 0;
}

#left-column #search_filters_wrapper {
    order: 3 !important;
}

.main-bg-white {
    background: #fff;
}

#search_filters>.h6 {
    display: none;
}

div#_desktop_search_filters_clear_all {
    display: none;
}
.block-categories .category-sub-menu li {
    margin: 7px 0;
    padding: 5px 10px;
}

.block-categories .category-sub-menu .category-sub-menu {
    margin-top: 0;
    padding-left: 0;
}

.block-categories .category-sub-menu li[data-depth="1"] a:hover {
    background: #689374;
    color: #fff;
}

.block-categories .category-sub-menu li[data-depth="1"] a {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
}

.block-categories .category-sub-menu li[data-depth="1"] {
    margin: 0;
    padding-left: 0;
    padding-bottom: 0;
}
.main-bg-white #products {
    padding-top: 25px;
}
.pagination .col-md-4 {
    display: none;
}

.pagination .page-list li a.next, .pagination .page-list li a.previous {
    font-size: 0;
}

.pagination a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #6A7282;
    width: 36px;
    height: 36px;
    display: inline-block;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    text-align: center;
}

.pagination .current a {
    color: #fff !important;
    background: #6b9b6e;
    font-size: 14px;
}

.pagination .page-list li {
    margin: 0 5px;
}
.product-view-switcher {
    display: inline-flex;
    border: 1px solid #eef2f5;
    border-radius: 6px;
    overflow: hidden;
    vertical-align: middle;
    padding: 0;
    width: 100%;
    max-width: 67px;
    z-index: 1;
    position: relative;
}

.product-view-switcher button {
    background: #ffffff;
    border: none;
    color: #a0aec0; 
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
}
.product-view-switcher img.active {
    display: none;
}

.product-view-switcher .active img.active {
    display: block;
}

.product-view-switcher .active img {
    display: none;
}
.product-view-switcher button .material-icons {
    font-size: 18px !important;
}

.product-view-switcher .btn-view-grid {
    border-right: 1px solid #eef2f5;
}


button.btn-view-grid.active, button.btn-view-list.active{ 
    background-color: #689374 !important;
    color: #ffffff !important;
}

.products.row.view-list ~ .product-view-switcher .btn-view-list,
.view-list-active .product-view-switcher .btn-view-list { 
    background-color: #689374 !important;
    color: #ffffff !important;
}
.products.row.view-list {flex-direction: column;}

.products.row.view-list .js-product.product {
    width: 100% !important;
}

.products.row.view-list .thumbnail-container {
    display: flex;
    margin-bottom: 0;
}

.block-categories .collapse-icons .category-chevron {
    transform: rotate(0deg) !important;
    transition: transform 0.3s ease-in-out !important;
}

.block-categories .collapse-icons[aria-expanded="true"] .category-chevron,
.block-categories .collapse-icons:not(.collapsed) .category-chevron {
    transform: rotate(180deg) !important;
}
.block-categories .collapse-icons {
    position: absolute;
    right: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.block-categories .collapse-icons i {
    font-size: 20px;
    position: relative;
    top: 10px;
}
.block-categories .category-chevron {
    font-size: 20px !important;
    transition: transform 0.3s ease-in-out !important;
    color: #689374 !important; 
}
.main-bg-white .view-list .product-miniature .product-description {
    width: 100%;
    max-height: 128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products.row.view-list .thumbnail-container .thumbnail-top img {
    height: 128px;
    object-fit: cover;
    width: 128px;
}

.main-bg-white .view-list .product-miniature .thumbnail-container .product-thumbnail {display: block;height: auto;}

.view-list .product-main-attribute {
    margin-bottom: 0;
}
.view-list .product-miniature .thumbnail-top {
    width: 100%;
    max-width: 128px;
}
.view-list .btn-icon-basket {
    width: 90px;
    gap: 10px;
    font-size: 12px;
}

.layout-left-column  .view-list .product-miniature .product-price-and-shipping {
    padding: 0 10px 0 0;
}
.layout-left-column .view-list article .wishlist-button-add {
    right: 120px;
    top: 48px;
}

.view-list .product-bottom-layout{
    gap: 50px
}
.products-sort-order .select-title i {
    color: #99A1AF;
    font-size: 20px;
    margin-left: 5px;
}
.layout-left-column .view-list .product-miniature .product-price-and-shipping {
    flex-direction: column;
    align-items: end;
}
span.marques-sous-titre {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    color: #6B9B6E;
    display: block;
    margin-bottom: 10px;
}
#blockcart-modal .product-name{
   color: #6B9B6E; 
}
.page-content.page-cms ul {
    padding-left: 15px;
}

.page-content.page-cms ul li, .page-content.page-cms p, .page-content.page-cms ol li {
    color: #364153;
    font-size: 14px;
}

.page-content.page-cms ul li, .page-content.page-cms ol li {
    margin-bottom: 10px;
}

.page-content.page-cms h1, .page-content.page-cms h2, .page-content.page-cms h3.page-content.page-cms h4 {
    margin-bottom: 25px;
}

.page-content.page-cms h2, .page-content.page-cms h3.page-content.page-cms h4 {
    margin-top: 35px;
}
body#product .main-bg-white {
    padding-top: 50px;
}
.custom-checkbox input[type=checkbox]:checked + span {
    background-color: #689374;
    color: #ffffff; 
}
.custom-checkbox input[type=checkbox]:checked + span i{
    color: #fff;
    font-size: 14px;
    position: relative;
    top: 2px;
    left: 2px;
}
.view-grid .js-product.product.col-xs-12.col-sm-6.col-xl-3 {
    width: 100%;
    max-width: 320px;
}
#category section.aroma-map-section, #manufacturer section.aroma-map-section {
    display: none;
}

/* Fiche produits */
#product #content .images-container.js-images-container {
    display: flex;
    flex-direction: row-reverse;
}

#product #content .js-qv-mask.mask .product-images {
    display: flex;
    flex-direction: column;
}

#product #content {
    max-width: 576px;
    margin-left: 0;
}

#product #content .product-cover {
    max-width: 496px;
    border-radius: 16px;
    overflow: hidden;
}

#product #content .product-images>li.thumb-container .thumb {
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    width: 64px;
    height: 64px;
}

#product #content .product-cover img {
    height: revert-layer;
    object-fit: cover;
}

#product #content .product-flags li {
    margin-left: 100px;
    border-radius: 14px;
    padding: 3px 10px;
}

#product #content .product-flags {
    top: 10px;
}

body#product h1 {
    font-size: 36px;
    margin: 15px 0;
}

#product .product-prices.js-product-prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

#product .has-discount .discount {
    display: none;
}

#product .product-discount .regular-price {
    font-size: 18px;
    color: #99A1AF;
}

#product span.current-price-value {
    font-size: 30px;
    color: #101828;
}

.product-prices .tax-shipping-delivery-label {
    order: 3;
    display: block;
    width: 100%;
    font-size: 12px;
    color: #99A1AF;
}

#product .product-price.h5.has-discount {
    order: 1;
}

#product .product-discount {
    order: 2;
}

#product .product-prices div {
    margin-bottom: 0;
}

#product .product-description p {
    font-size: 14px;
    color: #4A5565;
}

#product .product-information {
    max-width: 576px;
}
.product-comments-additional-info .link-comment.post-product-comment {
    display: none;
}

.product-comments-additional-info .comments-note {
    margin: 0;
}

.product-comments-additional-info .link-comment {
    line-height: 1;
    position: relative;
    top: 3px;
    font-size: 14px;
    color: #6A7282;
}

.product-comments-additional-info .comments-note  span {
    display: none;
}

.product-description-short p {
    color: #4A5565;
    font-size: 14px;
    margin: 25px 0;
}

.social-sharing {
    display: none;
}

.product-manufacturer {
    text-transform: uppercase;
    font-size: 14px;
    color: #6B9B6E;
}
.product-contenance {
    color: #6A7282;
    font-size: 24px;
    font-family: 'Cormorant Garamond';
}

.product-comments-additional-info{
    justify-content: flex-start;
}
.product-features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.product-features-badges span.badge-tag {
    font-size: 12px;
    color: #6B9B6E;
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 5px;
    display: block;
}
#main .images-container .js-qv-mask.scroll {
    width: 70px;
}
.product-prices .tax-shipping-delivery-label {
    display: none;
}

.product-meta-info {
    font-size: 12px;
    color: #99A1AF;
    margin-top: 10px;
}
.grade-stars .star-content{
    margin-left: 0;
}
/* --- SÉLECTEUR DE QUANTITÉ HORIZONTAL --- */
.product-quantity button:focus {
    outline: 1px dotted;
    outline: none;
}
.product-quantity {
    display: flex !important;
    flex-wrap: wrap;
    gap: 25px 15px;
    width: 100%;
}
#product .blockreassurance_product {
    background: #FAF9F7;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 0;
}
#product .blockreassurance_product p.block-title {
    font-size: 12px;
    color: #4A5565;
    margin-bottom: 0;
}

#product .reassurance-item {
    display: flex;
    align-items: baseline;
}
p.product-minimal-quantity.js-product-minimal-quantity {
    margin-bottom: 0;
}
.qty-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qty-container .control-label {
    font-size: 15px;
    color: #4b5563; 
    min-width: 70px;
    margin-bottom: 0 !important;
    width: fit-content;
}

.qty-input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb; 
    border-radius: 8px; 
    padding: 4px;
    background-color: #fff;
}

.qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}

.qty-btn:hover {
    color: #111827;
}

.qty-input-wrapper input#quantity_wanted {
    width: 45px !important;
    height: 32px !important;
    text-align: center;
    border: none !important;
    background: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111827 !important;
    padding: 0 !important;
}

.qty-input-wrapper input::-webkit-outer-spin-button,
.qty-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.product-quantity .add {
    width: 100% !important;
    max-width: calc(100% - 65px);
}

.product-quantity .add .add-to-cart {
    width: 100% !important;
    height: 48px; 
    background-color: #6b9673 !important; 
    border-color: #6b9673 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: none !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}
#product .product-quantity .wishlist-button-add {
    margin: 0;
    border-radius: 6px;
    width: 48px;
    height: 48px;
    border: 1px solid #E5E7EB;
    box-shadow: none;
}
#product .product-quantity .wishlist-button-add i {
    font-size: 24px;
    color: #99A1AF;
}
.scroll-box-arrows.scroll {
    display: none;
}
.product-quantity .add .add-to-cart:hover {
    background-color: #55785c !important;
}

.product-quantity .input-group-btn-vertical {
    display: none;
}
div#product-comments-list-header {
    display: none;
}

div#product-comments-list {
    display: none;
}
/* ==========================================================================
   STRUCTURE GLOBALE DES ONGLETS
   ========================================================================== */
.tabs.product-tabs-container {
    margin: 2rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.product-tabs-container .nav-tabs {
  border-block: 2px solid #f4f4f4;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  justify-content: center;
  padding-top: 7px;
}

.product-tabs-container .nav-link {
  color: #767676;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 0.75rem;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-tabs-container .nav-link:hover,
.product-tabs-container .nav-link.active {
  color: #111111;
  border-bottom-color: #2e2e2e; 
}

.product-tabs-container .tab-content {
    max-width: 1200px;
    margin: 0 auto;
}

.description-tab-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.product-accessories {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f8f9fa; 
  
  padding: 1.5rem 0; 
}

.product-accessories > .products,
.product-accessories > .products-section-title,
.product-accessories > .sec-intro {
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
}
.custom-stock-badge-wrapper {
  margin-top: 1rem;
  display: block;
}

#product-availability.custom-stock-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #F3F4F6;
  margin-bottom: 25px;
  padding-bottom: 25px;
  margin-top: 0;
}

.custom-stock-badge .stock-dot {
  width: 9px;
  height: 9px;
  background-color: #007a55;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.custom-stock-badge .stock-text {
  color: #007a55;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
#product .product-description .product-main-attribute {
    display: none;
}
#product .product-miniature .product-flags li.product-flag {
    border-radius: 20px;
    margin-left: 14px;
}

@media (min-width: 768px) {
  .description-tab-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.description-left {
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 610px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-feature-item {
  background-color: #FAF9F7;
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.grid-feature-item h5 {
  margin: 0 0 0.25rem 0;
  font-size: 30px;
  color: #6B9B6E;
  font-weight: 400;
}

.grid-feature-item p {
  margin: 0;
  font-size: 12px;
  color: #6A7282;
  line-height: 1.3;
}

.product-ingredients-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tab-dynamic-header {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333333;
}

/* Grille de cartes ingrédients */
.ingredients-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
#product .product-bottom-layout .btn-icon-basket {
    font-size: 14px;
    width: 100%;
    height: auto;
    padding: 10px 20px !important;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 10px;
}

#product .product-bottom-layout .btn-icon-basket img {
    display: none;
}

#product .product-bottom-layout {
    display: block !important;
    margin-top: 0 !important;
    padding: 0 12px;
}

#product .product-miniature .product-price-and-shipping {
    padding-top: 0;
    padding-left: 0;
}

#product .product-miniature .thumbnail-container {
    margin-bottom: 10px;
}
@media (min-width: 768px) {
  .ingredients-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ingredients-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ingredient-card {
  background: #faf9f738;
  border: 1px solid #e5e5e552;
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card-accent-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.card-content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444444;
}

.card-content strong {
  display: block;
  font-size: 1.1rem;
  color: #111111;
  margin-bottom: 0.5rem;
}

.quintessence-banner {
  background-color: #f4f6f4;
  padding: 1rem 2rem;
  border-radius: 6px;
  color: #4f5e4f;
  line-height: 1.5;
}

.usage-tab-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
#tab-content .product-ingredients-container h3, div#tab-content .description-tab-wrapper h3{
    font-size: 30px;
}
@media (min-width: 1200px) {
#product #content .product-cover {
    max-width: 491px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
#product #content .product-cover img {
    height: 785px;
    object-fit: cover;
    width: 100%;
}
}
@media (min-width: 992px) {
  .usage-tab-wrapper {
    grid-template-columns: 1fr 1fr;
  }

}

.tab-main-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #101828;
}

/* Liste ordonnée stylisée à gauche */
.custom-numbered-list ol {
  list-style: none;
  counter-reset: usage-counter;
  padding: 0;
  margin: 0;
}

.custom-numbered-list li {
  counter-increment: usage-counter;
  position: relative;
  padding-left: 3.6rem;
  margin-bottom: 1.75rem;
}

.custom-numbered-list li::before {
  content: counter(usage-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  color: #6b9b6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid;
}

.custom-numbered-list li strong {
  display: block;
  font-size: 14px;
  color: #101828;
  margin-bottom: 0.25rem;
}

.custom-numbered-list li p {
  margin: 0;
  color: #4a5565;
  line-height: 1.5;
  font-size: 14px;
}

.expert-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: #222222;
  font-family: serif; 
}

.expert-quote-card {
  background-color: #fcfbfa;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.expert-quote {
  font-family: 'Cormorant Garamond';
  font-size: 16px;
  line-height: 1.6;
  color: #4a5565;
  margin: 0 0 1.5rem 0;
  border: none;
  padding: 0;
}

.expert-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar-placeholder {
  width: 44px;
  height: 44px;
  background-color: #69916b;
  border-radius: 50%;
  flex-shrink: 0;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-info strong {
  font-size: 12px;
  color: #1e2939;
}

.profile-info span {
  font-size: 12px;
  color: #777777;
}

.personalized-tip-box {
  border: 1px solid #6b9b6e;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px 25px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b9b6e;
}

.personalized-tip-box strong {
  color: #4a6b4c; 
}

.personalized-tip-box u {
  text-underline-offset: 3px;
  font-weight: 500;
}

.tabs .nav-tabs .nav-link {
    text-transform: capitalize;
    font-size: 14px;
    color: #6A7282;
}

div#tab-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #101828;
}

.ingredient-card ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.ingredient-card ul li::marker {
    color: #6b9b6e;
    font-size: 22px;
    position: relative;
    line-height: 1;
}

.ingredient-card ul li {
    font-size: 14px;
    color: #4a5565;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tabs .tab-pane h4 {
    font-size: 16px;
    font-family: 'Manrope';
    color: #101828;
}

.ingredient-card h4 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ingredient-card h4::before {
    content: "";
    display: inline-block;
    height: 32px;
    width: 32px;
    background: #6b9b6e;
    border-radius: 6px;
    top: -1px;
    position: relative;
}

.quintessence-banner p {
    font-size: 12px;
    margin-bottom: 0;
}
.personalized-tip-box p {
    color: #4a5565;
    font-size: 12px;
    margin-bottom: 0;
}
#product section.aroma-map-section {
    display: none;
}
section.product-accessories h2 {
    text-align: left;
}

section.product-accessories .sec-intro p {
    margin-bottom: 35px;
    color: #6A7282;
}

section.product-accessories .sec-intro {
    padding-left: 20px;
}
#product .product-accessories .products-section-title {
   text-align: left;
}
#wrapper{
    padding-top: 0;
}
#wrapper .breadcrumb {
    margin: 0;
    padding: 15px 0;
}
#product .product-meta-top span.meta-sep, #product .product-meta-top span.product-category {
    display: none;
}
#product #content .product-cover .layer.hidden-sm-down {
    display: none !important;
}
.view-list .btn-icon-basket span {
    font-size: 0;
}
body#cms h1 {
    margin-top: 35px;
    padding-inline: 20px;
}
@media screen and (min-width: 1800px) {
    .double-banner-section{
        min-height: 600px;
    }
    .product-view-switcher {
        position: relative;
        right: -50px;
    }
}
/* --------------------------------------------------------------------------
   RESPONSIVE (Mobile & Tablette)
   -------------------------------------------------------------------------- */

@media screen and (min-width: 1024px) {
    #search_widget form{
        position: inherit;
    }

}
@media (max-width: 767px) {
    ul#top-menu li:has(.sub-menu) > a.dropdown-item::after {
        display: none;
    }

    ul#top-menu li:has(.sub-menu) > a.dropdown-item span.float-xs-right.hidden-md-up {
        order: 3;
    }
    div#contact-link.header-contacts-inline {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    div#contact-link.header-contacts-inline a {
        font-size: 14px;
        color: #000;
        opacity: 1;
    }

    #header .header-top {
        padding-top: 0;
    }

    #header .header-nav {
        max-height: 100%;
    }
    div#menu-icon {
    float: right !important;
    }

    #header .top-logo {
        padding-left: 15px;
    }

    header div#_mobile_user_info {
        position: relative;
        top: 12px;
    }

    header div#_mobile_cart {
        position: relative;
        top: 12px;
    }

    header div#_mobile_user_info a i {font-size: 17px;}
    .double-banner-section {
        flex-direction: column; 
        min-height: auto;
    }
    
    .banner-half {
        min-height: 300px;
    }
    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }
        .ams-container {
        flex-direction: column;
    }
    .ams-iframe-wrapper {
        padding-bottom: 75%; 
    }
    .ams-card {
        max-width: 100%;
    }
    .align-items-center {
        /* flex-direction: column;
        gap: 15px;
        text-align: center; */
    }
    .paiment-wrp .payment-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .banner-content {
        max-width: 100%;
    }
    section.double-banner-section.banner-2 .banner-half {
        min-height: 200px;
        background-size: cover !important;
    }
    .home-promo-wrapper {
        flex-direction: column;
    }

    .home-promo-wrapper #custom-text {
        padding-left: 0;
    }

    section.section-nl {
        padding: 0 15px 50px;
    }

    #index div#block-reassurance ul {
        flex-direction: column;
        align-items: center;
    }

    #block-reassurance li .block-reassurance-item {
        padding-block: 20px;
    }
    #product #content .images-container.js-images-container {
        display: block;
    }

    #product #content .js-qv-mask.mask .product-images {
        flex-direction: row;
        justify-content: center;
    }

    #main .images-container .js-qv-mask.scroll {
        width: 100%;
    }
    #product #content .product-cover img {
        height: auto;
    }
    .scroll-box-arrows.scroll {
        display: block;
        height: fit-content;
        position: relative;
        top: 15px;
    }
    .main-bg-white .view-list .product-miniature .product-description {
        max-height: 100%;
    }

    .view-list .btn-icon-basket {
        width: 32px;
        height: 32px;
        font-size: 0;
        justify-content: center;
    }

    .view-list .btn-icon-basket img {
        position: relative;
        left: 10px;
    }

    .layout-left-column .view-list article .wishlist-button-add {
        top: 85px;
    }
    .product-view-switcher{
        flex-direction: row;
        gap: 0;
    }
    .layout-left-column #js-product-list-top {
        padding: 0 15px;
    }
    .layout-left-column .view-grid .product-miniature {
        max-width: 270px;
        margin-inline: auto;
    }
}
@media (max-width: 540px) {
.product-tabs-container .nav-tabs {flex-direction: column; gap: 20px;}
#product #content .product-flags li{
    margin-left: 10px;
}

body#product .main-bg-white {
    padding-top: 25px;
}

#product .product-container .col-md-6 {
    padding: 0 25px;
}
}