 /* ===== RESET MINIMAL ===== */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 body {
     margin: 0;
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
     background: #fff;
     color: #1F1F1F;
     line-height: 1.5;
 }

 img {
     max-width: 100%;
     display: block;
 }

 button {
     font: inherit;
 }

 a {
     color: inherit;
     text-decoration: none;
 }

 /* ===== LAYOUT GLOBAL ===== */

 .container {
     max-width: 98vw;
     margin: 0 auto;
     padding: 0 16px;
 }


 .page {
     max-width: 960px;
     margin: 0 auto;
     padding: 0 16px 48px;
 }

 h1,
 h2,
 h3 {
     font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
     margin: 0 0 8px;
     color: #1F1F1F;
 }

 p {
     margin: 0 0 12px;
 }

 /* ===== HEADER / NAVBAR ===== */
 .site-header {
     padding: 12px 16px 8px;
     position: sticky;
     top: 0;
     z-index: 20;
     background: #efefef;
     /* fond blanc navbar */

 }

 .topbar {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .logo {
     display: flex;
     align-items: center;
     font-family: "Roboto Slab", Georgia, serif;
     font-weight: 600;
     font-size: 18px;
     letter-spacing: 0.04em;
 }

 .logo span {
     display: inline-block;
     margin-left: 6px;
     padding: 2px 6px;
     background: #1F1F1F;
     color: #F1E517;
     border-radius: 3px;
     font-size: 12px;
     text-transform: uppercase;
 }

 .top-actions {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-left: auto;
 }

 .icon-button {
     background: none;
     border: none;
     padding: 6px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
 }

 .icon-button:active {
     background: rgba(0, 0, 0, 0.04);
 }

 .icon {
     display: inline-flex;
     width: 20px;
     height: 20px;
 }

 /* ===== CHAMP DE RECHERCHE ===== */
 .search-bar {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: #FFFFFF;
     padding: 12px 16px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     z-index: 30;
 }

 .search-bar.is-visible {
     display: block;
 }

 .search-input {
     width: 100%;
     padding: 10px 16px;
     border: 2px solid #1F1F1F;
     border-radius: 999px;
     font-size: 14px;
     font-family: "Inter", sans-serif;
     outline: none;
 }

 .search-input:focus {
     border-color: #56F4E1;
 }

 /* ===== BLOC D'ACCROCHE JAUNE ===== */
 .highlight-block {
     margin-top: 20px;
     background: #F1E517;
     color: #1F1F1F;
     border-radius: 12px;
     padding: 16px;
     font-weight: 600;
     font-size: 14px;
     margin-bottom: 20px;
 }

 .highlight-black {
     margin-top: 20px;
     background: #000;
     color: #fff;
     border-radius: 12px;
     padding: 16px;
     font-weight: 600;
     font-size: 14px;
     margin-bottom: 20px;
 }

 @media (min-width: 768px) {
     .highlight-block {
         font-size: 15px;
         padding: 18px 20px;
     }
 }



 /* ===== FAQ ===== */
 .faq-section {
     margin-bottom: 32px;
 }

 .faq-list {
     margin: 16px 0 0;
     padding: 0;
     list-style: none;
 }

 .faq-item {
     border-radius: 8px;
     background: #FFFFFF;
     margin-bottom: 8px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
     overflow: hidden;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     background: transparent;
     border: none;
     padding: 10px 12px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     font-family: "Roboto Slab", Georgia, serif;
     font-size: 14px;
 }

 .faq-question h3 {
     margin: 0;
     font-size: 14px;
     color: #1F1F1F;
 }

 .faq-icon {
     margin-left: 10px;
     font-size: 16px;
     line-height: 1;
     color: #777;
 }

 .faq-answer {
     padding: 0 12px 10px;
     font-size: 14px;
     color: #444;
     display: none;
 }

 .faq-item.is-open .faq-answer {
     display: block;
 }

 .faq-item.is-open .faq-icon {
     transform: rotate(90deg);
 }



 /* ===== NAVIGATION PRINCIPALE (desktop) ===== */
 .main-nav {
     display: none;
     /* visible seulement sur desktop */
 }

 .main-nav>ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     gap: 16px;
     font-size: 14px;
 }

 .main-nav>ul>li {
     position: relative;
 }

 .main-nav a {
     font-family: "Roboto", sans-serif;
     font-weight: 700;
     color: #1F1F1F;
     text-decoration: none;
     padding: 4px 0;
     display: block;
 }

 .main-nav>ul>li>a:hover {
     color: #56F4E1;
 }

 /* Icône dropdown pour les menus avec sous-menu */
 .has-submenu>a {
     display: inline-flex;
     align-items: center;
     gap: 4px;
 }

 .has-submenu>a::after {
     content: "";
     display: inline-block;
     width: 12px;
     height: 12px;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     transition: transform 0.2s ease;
 }

 .has-submenu:hover>a::after {
     transform: rotate(180deg);
 }

 /* Sous-menu */
 .has-submenu {
     position: relative;
 }

 .submenu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: #FFFFFF;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     border-radius: 8px;
     padding: 8px 0;
     min-width: 200px;
     margin-top: 4px;
     list-style: none;
     z-index: 100;
     pointer-events: auto;
 }

 .has-submenu:hover .submenu,
 .submenu:hover {
     display: block;
 }

 /* Zone de transition pour éviter que le menu disparaisse */
 .has-submenu::before {
     content: "";
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     height: 8px;
     background: transparent;
     z-index: 99;
 }

 .submenu li {
     margin: 0;
 }

 .submenu a {
     padding: 10px 16px;
     font-size: 13px;
     font-weight: 400;
     color: #2D3E50;
     text-transform: none;
     white-space: nowrap;
 }

 .submenu a:hover {
     background: #F8F5EF;
     color: #56F4E1;
 }

 /* ===== MENU OVERLAY (BURGER, MOBILE) ===== */
 .menu-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.15s ease;
     z-index: 40;
 }

 .menu-overlay.is-open {
     opacity: 1;
     visibility: visible;
 }

 .menu-panel {
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 100%;
     background: #FFFFFF;
     padding: 16px;
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
 }

 .menu-panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
 }

 .menu-title {
     font-family: "Roboto Slab", Georgia, serif;
     font-size: 18px;
     margin: 0;
 }

 .menu-close {
     background: none;
     border: none;
     font-size: 22px;
     line-height: 1;
     cursor: pointer;
 }

 .menu-section-label {
     margin-top: 16px;
     margin-bottom: 8px;
     font-weight: 600;
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     color: #777;
 }

 .menu-link {
     display: block;
     padding: 12px 0;
     font-size: 16px;
     font-weight: 600;
     border-bottom: 1px solid #F2F2F2;
 }

 .menu-link-children {
     padding-left: 10px;
     font-size: 13px;
     color: #555;
 }

 /* ===== BREADCRUMB SCROLLABLE ===== */
 .breadcrumb-wrapper {
     margin-top: 10px;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     white-space: nowrap;
     scrollbar-width: none;
     /* Firefox */
 }

 .breadcrumb-wrapper::-webkit-scrollbar {
     display: none;
     /* Chrome / Safari */
 }

 .breadcrumb {
     font-size: 12px;
     color: #666;
     display: inline-flex;
     align-items: center;
     gap: 6px;
 }

 .breadcrumb a {
     color: #2D3E50;
     text-decoration: none;
 }

 .breadcrumb a:hover {
     color: #56F4E1;
 }

 .breadcrumb-sep {
     opacity: 0.6;
 }

 .breadcrumb-current {
     font-weight: 600;
 }

 /* ===== SECTIONS CONTENU ===== */
 main {
     padding-top: 10px;
 }

 .category-intro {
     margin-bottom: 24px;
 }

 .category-intro p {
     font-size: 14px;
     color: #444;
 }

 .section-block {
     margin-bottom: 32px;
 }

 .section-block p {
     font-size: 14px;
     color: #444;
 }

 /* ===== BOUTONS ===== */
 .btn-primary {
     background: #1F1F1F;
     /* noir */
     color: #F1E517;
     /* jaune */
     border: none;
     border-radius: 999px;
     padding: 10px 18px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
 }

 .btn-primary:hover {
     background: #000000;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     transform: translateY(-1px);
 }

 .btn-secondary {
     background: #1F1F1F;
     /* noir */
     color: #56F4E1;
     /* vert */
     border: 2px solid #56F4E1;
     border-radius: 999px;
     padding: 8px 16px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.15s ease;
 }

 .btn-secondary:hover {
     background: #56F4E1;
     color: #1F1F1F;
 }

 /* ===== LABELS POUR TITRES DE SECTION ===== */
 .section-title-wrapper {
     display: flex;
     align-items: center;
     gap: 8px;
     flex-wrap: wrap;
     margin-bottom: 12px;
 }

 .section-title-wrapper h2 {
     margin: 0;
 }

 .section-label {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     padding: 4px 10px;
     border-radius: 999px;
     font-family: "Inter", sans-serif;
     font-size: 11px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .section-label.label-new {
     background: #F1E517;
     color: #1F1F1F;
 }

 .section-label.label-hot {
     background: #1F1F1F;
     color: #FFFFFF;
 }

 .section-label.label-choice {
     background: #56F4E1;
     color: #1F1F1F;
 }

 .section-label .label-icon {
     display: inline-flex;
     width: 12px;
     height: 12px;
 }

 /* ===== CARDS PRODUITS – SCROLL HORIZONTAL ===== */
 .cards-scroller {
     display: flex;
     gap: 12px;
     overflow-x: auto;
     padding-bottom: 12px;
     margin-bottom: 4px;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: thin;
     scrollbar-color: #cccccc #f0f0f0;
     /* Permettre au scroller de déborder du conteneur parent */
     margin-left: -16px;
     margin-right: -16px;
     padding-left: 16px;
     padding-right: 16px;
 }

 .cards-scroller::-webkit-scrollbar {
     height: 8px;
 }

 .cards-scroller::-webkit-scrollbar-track {
     background: #f0f0f0;
     border-radius: 4px;
 }

 .cards-scroller::-webkit-scrollbar-thumb {
     background: #cccccc;
     border-radius: 4px;
 }

 .cards-scroller::-webkit-scrollbar-thumb:hover {
     background: #aaaaaa;
 }

 .product-card {
     background: #FFFFFF;
     border-radius: 8px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
     padding: 10px;
     width: 220px;
     flex: 0 0 auto;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     border: #dddddd solid 1px
 }

 .product-image-wrapper {
     width: 100%;
     aspect-ratio: 4 / 3;
     /* masque pour uniformiser les images */
     background: #fff;
     border-radius: 6px;
     overflow: hidden;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-image-wrapper img {
     width: auto;
     height: 100%;
     object-fit: contain;
     /* important pour le masque */
     transition: transform 0.3s ease;
 }

 .product-image-wrapper:hover img {
     transform: scale(1.1);
 }

 .product-title {
     font-size: 14px;
     margin-bottom: 4px;
 }

 .product-excerpt {
     font-size: 13px;
     color: #555;
     margin-bottom: 8px;
 }

 .product-card-footer {
     margin-top: auto;
 }

 /* ===== "NOTRE SÉLECTION" LISTE SIMPLE ===== */
 .selection-list {
     list-style: none;
     padding: 0;
     margin: 12px 0 0;
     font-size: 14px;
 }

 .selection-list li {
     margin-bottom: 6px;
 }

 /* ===== GRILLE DE PRODUITS ===== */
 .products-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
     margin-bottom: 24px;
 }

 .grid-product-card {
     background: #FFFFFF;
     border-radius: 8px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
     padding: 10px;
     display: flex;
     flex-direction: column;
 }

 .grid-product-card .product-image-wrapper {
     width: 100%;
     aspect-ratio: 4 / 3;
     background: #fff;
     border-radius: 6px;
     overflow: hidden;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .grid-product-card .product-image-wrapper img {
     width: auto;
     height: 100%;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .grid-product-card .product-image-wrapper:hover img {
     transform: scale(1.1);
 }

 .grid-product-card .product-title {
     font-size: 14px;
     margin-bottom: 8px;
     flex: 1;
 }

 .product-category-label {
     font-size: 11px;
     color: #888;
     margin-bottom: 8px;
     font-style: italic;
 }

 .grid-product-card-footer {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 8px;
 }

 .grid-product-link {
     font-size: 12px;
     color: #888;
     text-decoration: none;
 }

 .grid-product-link:hover {
     color: #56F4E1;
 }

 .btn-grid {
     background: #1F1F1F;
     color: #56F4E1;
     border: 2px solid #56F4E1;
     border-radius: 999px;
     padding: 6px 12px;
     font-size: 13px;
     font-weight: 500;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 4px;
     transition: all 0.15s ease;
 }

 .btn-grid:hover {
     background: #56F4E1;
     color: #1F1F1F;
 }

 .btn-grid .icon {
     width: 14px;
     height: 14px;
 }

 /* ===== FOOTER ===== */
 .site-footer {
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     padding: 16px;
     background: #FFFFFF;
     font-size: 13px;
     color: #666;
 }

 .footer-inner {
     max-width: 960px;
     margin: 0 auto;
     padding: 0 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
 }

 .footer-socials {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .social-icon {
     width: 24px;
     height: 24px;
     border-radius: 999px;
     border: 1px solid #CCC;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
 }

 .social-icon svg {
     width: 14px;
     height: 14px;
 }

 /* ===== MEDIA QUERIES (Desktop) ===== */
 @media (min-width: 768px) {
     .page {
         padding: 0 24px 64px;
     }

     .site-header {
         padding: 12px 32px 10px;
     }

     /* Afficher la nav desktop & cacher le burger */
     .main-nav {
         display: block;
         margin-left: 24px;
         flex: 1;
     }

     .top-actions .menu-toggle {
         display: none;
     }

     /* On peut laisser la loupe visible aussi sur desktop */
     .category-intro p,
     .section-block p {
         font-size: 15px;
     }

     .product-card {
         width: 240px;
     }

     /* Permettre au scroller de déborder sur desktop */
     .cards-scroller {
         margin-left: -24px;
         margin-right: -24px;
         padding-left: 24px;
         padding-right: 24px;
     }

     /* Sur desktop, on n'a pas besoin de l'overlay de menu burger */
     .menu-overlay {
         display: none !important;
     }

     .footer-inner {
         padding: 0;
     }

     /* Grille 4 colonnes sur desktop */
     .products-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 16px;
     }

     /* Barre de recherche plus large sur desktop */
     .search-bar {
         padding: 12px 32px;
     }
 }

 /* ===== BODY LOCK (menu ouvert) ===== */
 .no-scroll {
     overflow: hidden;
     touch-action: none;
 }