  :root{
    --turquoise:#00C4D6;
    --turquoise-bright:#00E4F5;
    --turquoise-dark:#00909E;
    --turquoise-tint:#E1FAFC;
    --orange:#FF8A00;
    --gold:#FFB930;
    --orange-dark:#E85D00;
    --orange-tint:#FFF2E0;
    --navy:#0D1B2A;
    --navy-tint:#E9ECF0;
    --ink:#2A3540;
    --muted:#6B7684;
    --line:#E6E9ED;
    --bg:#FFFFFF;
    --bg-soft:#F7F9FA;
    --whatsapp:#25D366;
    --green:#1E8E5A;
    --radius:12px;
    --shadow:0 4px 18px rgba(13,27,42,0.06);
    --shadow-lg:0 16px 40px rgba(13,27,42,0.10);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--bg);
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Poppins',sans-serif; color:var(--navy); line-height:1.18; font-weight:600;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  button{font-family:inherit;}
  .container{max-width:1180px; margin:0 auto; padding:0 24px;}
  .eyebrow{
    font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; font-weight:600; color:var(--turquoise-dark);
  }
  section{padding:80px 0;}
  @media (max-width:720px){ section{padding:52px 0;} }

  .topbar{
    background:var(--navy); color:#fff; text-align:center; font-size:12.5px; font-weight:500;
    padding:8px 16px; letter-spacing:.01em;
  }
  .topbar span{color:var(--turquoise);}

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:20px 24px; max-width:1180px; margin:0 auto;
  }
  .brand{display:flex; align-items:center; gap:14px; flex-shrink:0;}
  .brand-mark{height:60px; width:auto; flex-shrink:0; object-fit:contain;}
  .brand-wordmark{height:40px; width:auto;}
  .brand-text-col{display:flex; flex-direction:column; gap:4px;}
  .brand-tagline-img{height:16px; width:auto; margin-top:2px;}
  nav.main-nav{display:flex; gap:26px;}
  nav.main-nav a{
    font-size:14px; font-weight:500; color:var(--ink); position:relative; padding:4px 0;
  }
  nav.main-nav a:hover{color:var(--turquoise-dark);}
  .header-cta{display:flex; align-items:center; gap:12px; flex-shrink:0;}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:14px;
    padding:11px 20px; border-radius:8px; border:1.5px solid transparent;
    cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-whatsapp{background:var(--whatsapp); color:#fff;}
  .btn-whatsapp:hover{box-shadow:0 8px 18px rgba(37,211,102,0.30);}
  .btn-outline{border-color:var(--line); color:var(--navy); background:#fff;}
  .btn-outline:hover{border-color:var(--turquoise-dark); color:var(--turquoise-dark);}
  .burger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
  .burger span{width:22px; height:2px; background:var(--navy); display:block;}

  /* ---------- HERO ---------- */
  .hero{padding-top:64px; padding-bottom:56px; text-align:center; background:var(--bg-soft);}
  .hero .eyebrow{display:block; margin-bottom:14px;}
  .hero h1{
    font-size:clamp(30px, 4vw, 46px); font-weight:700; letter-spacing:-0.02em; margin-bottom:16px;
    max-width:720px; margin-left:auto; margin-right:auto;
  }
  .hero h1 span{color:var(--turquoise-dark);}
  .hero p.lead{font-size:16.5px; color:var(--muted); max-width:520px; margin:0 auto 34px;}

  .search-wrap{max-width:600px; margin:0 auto 22px; position:relative;}
  .search-bar{
    display:flex; align-items:center; gap:10px;
    background:#fff; border:1.5px solid var(--line); border-radius:999px; padding:6px 8px 6px 20px;
    box-shadow:var(--shadow); position:relative; z-index:2;
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  .search-bar.focused{border-color:var(--turquoise); box-shadow:0 6px 22px rgba(0,196,214,0.18);}
  .search-bar svg{width:18px; height:18px; color:var(--muted); flex-shrink:0;}
  .search-bar input{
    flex:1; border:none; outline:none; font-size:15px; font-family:'Inter',sans-serif; padding:8px 0; color:var(--ink);
    background:transparent;
  }
  .search-bar input::placeholder{color:#A6AEB8;}
  .search-bar button{
    background:linear-gradient(120deg, var(--turquoise-dark), var(--navy)); color:#fff; border:none; border-radius:999px; padding:10px 20px;
    font-weight:600; font-size:14px; cursor:pointer; flex-shrink:0;
  }

  .search-suggest{
    position:absolute; top:calc(100% + 8px); left:0; right:0; background:#fff;
    border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow-lg);
    overflow:hidden; z-index:50; text-align:left; display:none;
  }
  .search-suggest.open{display:block;}
  .suggest-item{
    display:flex; align-items:center; gap:12px; padding:11px 16px; cursor:pointer;
    border-bottom:1px solid var(--line); transition:background .12s ease;
  }
  .suggest-item:last-child{border-bottom:none;}
  .suggest-item:hover, .suggest-item.active{background:var(--bg-soft);}
  .suggest-item .s-icon{
    width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .suggest-item .s-icon svg{width:16px; height:16px;}
  .suggest-item .s-info{flex:1; min-width:0;}
  .suggest-item .s-name{font-size:13.5px; font-weight:600; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
  .suggest-item .s-cat{font-size:11.5px; color:var(--muted);}
  .suggest-item .s-price{font-size:13px; font-weight:600; color:var(--navy); flex-shrink:0; font-family:'Poppins',sans-serif;}
  .suggest-more{
    padding:11px 16px; text-align:center; font-size:13px; font-weight:600; color:var(--turquoise-dark); cursor:pointer;
    background:var(--bg-soft);
  }
  .suggest-more:hover{background:var(--turquoise-tint);}
  .suggest-empty{padding:18px 16px; text-align:center; font-size:13px; color:var(--muted);}

  .chip-row{display:flex; gap:10px; flex-wrap:wrap; justify-content:center;}
  .chip{
    font-size:13.5px; font-weight:500; padding:8px 16px; border-radius:999px; border:1.5px solid var(--line);
    background:#fff; color:var(--ink); cursor:pointer; transition:all .15s ease;
  }
  .chip:hover{border-color:var(--turquoise);}
  .chip.active{background:linear-gradient(120deg, var(--turquoise-dark), var(--navy)); border-color:transparent; color:#fff;}

  /* ---------- TRUST STRIP ---------- */
  .trust-strip{border-bottom:1px solid var(--line);}
  .trust-strip .container{
    display:grid; grid-template-columns:repeat(4,1fr); gap:0; padding-top:28px; padding-bottom:28px;
  }
  .trust-cell{display:flex; align-items:center; gap:10px; justify-content:center; text-align:left;}
  .trust-cell svg{width:22px; height:22px; color:var(--turquoise-dark); flex-shrink:0;}
  .trust-cell .t{font-size:13.5px; font-weight:600; color:var(--navy); line-height:1.25;}
  @media (max-width:800px){
    .trust-strip .container{grid-template-columns:repeat(2,1fr); gap:18px;}
  }

  /* ---------- CATALOG ---------- */
  .catalog-head{margin-bottom:28px;}

  .faq-list{display:flex; flex-direction:column; gap:12px; max-width:760px;}
  .faq-item{
    background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden;
  }
  .faq-item summary{
    padding:18px 22px; cursor:pointer; font-family:'Poppins',sans-serif; font-weight:600; font-size:15px;
    color:var(--navy); list-style:none; display:flex; align-items:center; justify-content:space-between;
    gap:12px;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{
    content:"+"; font-size:22px; font-weight:400; color:var(--turquoise-dark); flex-shrink:0;
    transition:transform .2s ease;
  }
  .faq-item[open] summary::after{transform:rotate(45deg);}
  .faq-item summary:hover{color:var(--turquoise-dark);}
  .faq-answer{
    padding:0 22px 20px; color:var(--muted); font-size:14px; line-height:1.65;
  }
  .catalog-head h2{font-size:26px; margin-bottom:8px;}
  .catalog-head p{color:var(--muted); font-size:14.5px;}
  .price-disclaimer{
    margin-top:8px; font-size:13px; color:var(--orange-dark); background:var(--orange-tint);
    display:inline-block; padding:6px 14px; border-radius:999px; font-weight:500;
  }
  .result-count{font-size:13px; color:var(--muted); margin-bottom:20px;}

  .product-grid{
    display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:20px;
  }
  .product-card{
    background:#fff; border-radius:var(--radius); border:1px solid var(--line);
    overflow:hidden; display:flex; flex-direction:column;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .product-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:transparent;}
  .product-card.highlight-product{
    animation: highlightPulse 1.8s ease;
  }
  @keyframes highlightPulse{
    0%{box-shadow:0 0 0 4px var(--turquoise); }
    100%{box-shadow:var(--shadow-lg);}
  }
  .product-card .thumb{
    aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
    position:relative;
    background:linear-gradient(155deg, #F4F6F7 0%, #EAEDEF 100%);
  }
  .product-card .icon-badge{
    width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  }
  .product-card .icon-badge svg{width:26px; height:26px;}
  .product-card .product-img{
    width:100%; height:100%; object-fit:contain; padding:14px; box-sizing:border-box;
  }
  .stock-badge{
    position:absolute; top:10px; left:10px; font-size:11px; font-weight:600; padding:4px 10px; border-radius:999px;
    display:flex; align-items:center; gap:5px;
  }
  .stock-badge.in{background:#E7F7EF; color:var(--green);}
  .stock-badge.order{background:var(--orange-tint); color:var(--orange-dark);}

  .quote-check{
    position:absolute; top:10px; right:10px; cursor:pointer; z-index:2;
  }
  .quote-check input{position:absolute; opacity:0; width:24px; height:24px; margin:0; cursor:pointer;}
  .quote-check-box{
    display:flex; align-items:center; justify-content:center;
    width:24px; height:24px; border-radius:6px; background:#fff; border:1.5px solid var(--line);
    transition:all .15s ease;
  }
  .quote-check-box::after{
    content:""; width:12px; height:8px; border-left:2.5px solid #fff; border-bottom:2.5px solid #fff;
    transform:rotate(-45deg) scale(0); transition:transform .12s ease; margin-top:-2px;
  }
  .quote-check input:checked + .quote-check-box{background:var(--turquoise); border-color:var(--turquoise);}
  .quote-check input:checked + .quote-check-box::after{transform:rotate(-45deg) scale(1);}
  .quote-check input:focus-visible + .quote-check-box{outline:2px solid var(--turquoise); outline-offset:2px;}

  .quote-bar{
    position:fixed; left:50%; bottom:22px; transform:translateX(-50%) translateY(140%);
    background:var(--navy); color:#fff; border-radius:999px; padding:10px 10px 10px 22px;
    display:flex; align-items:center; gap:16px; box-shadow:0 16px 40px rgba(13,27,42,0.35);
    z-index:210; transition:transform .25s ease; max-width:92vw;
  }
  .quote-bar.visible{transform:translateX(-50%) translateY(0);}
  .quote-bar .qb-count{font-size:14px; font-weight:600; white-space:nowrap;}
  .quote-bar .qb-count strong{color:var(--turquoise);}
  .quote-bar button{
    font-family:'Poppins',sans-serif; font-weight:600; font-size:13.5px; border:none; border-radius:999px;
    padding:10px 18px; cursor:pointer; white-space:nowrap;
  }
  .quote-bar .qb-send{background:var(--whatsapp); color:#fff;}
  .quote-bar .qb-clear{background:transparent; color:#B9C2CC; padding:10px 10px;}
  .quote-bar .qb-clear:hover{color:#fff;}
  .stock-badge .dot{width:6px; height:6px; border-radius:50%; background:currentColor;}
  .card-body{padding:16px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1;}
  .card-body .cat-tag{font-size:11px; font-weight:600; color:var(--turquoise-dark); text-transform:uppercase; letter-spacing:.04em;}
  .card-body h4{font-size:15px; font-weight:600; line-height:1.3;}
  .card-body .desc{font-size:13px; color:var(--muted); line-height:1.4;}
  .card-body .sku{font-size:11px; color:#A6AEB8;}
  .card-footer{
    margin-top:auto; display:flex; align-items:center; justify-content:space-between;
    padding-top:12px; margin-top:10px; border-top:1px solid var(--line);
  }
  .price{font-family:'Poppins',sans-serif; font-weight:600; font-size:15px; color:var(--navy);}
  .order-btn{
    display:inline-flex; align-items:center; gap:6px;
    background:var(--turquoise); color:#fff; border:none; border-radius:8px;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:12.5px;
    padding:8px 13px; cursor:pointer; transition:background .15s ease;
  }
  .order-btn:hover{background:var(--turquoise-dark);}
  .order-btn svg{width:14px; height:14px;}
  .empty-state{
    text-align:center; padding:60px 20px; color:var(--muted); font-size:14.5px;
  }

  /* ---------- ABOUT ----------- */
  .about{background:var(--bg-soft);}
  .about-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .about h2{font-size:28px; margin-bottom:16px;}
  .about p{color:var(--muted); margin-bottom:16px; max-width:480px; font-size:15px;}
  .about-list{list-style:none; margin-top:18px; display:flex; flex-direction:column; gap:14px;}
  .about-list li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px;}
  .about-list svg{width:19px; height:19px; color:var(--turquoise-dark); flex-shrink:0; margin-top:2px;}
  .stat-card{background:#fff; border-radius:var(--radius); border:1px solid var(--line); padding:8px; box-shadow:var(--shadow);}
  .stat-card .row{display:flex; justify-content:space-between; padding:16px 18px; border-bottom:1px solid var(--line); font-size:14px;}
  .stat-card .row:last-child{border-bottom:none;}
  .stat-card .label{color:var(--muted);}
  .stat-card .value{font-weight:600; color:var(--navy);}
  @media (max-width:860px){ .about-grid{grid-template-columns:1fr;} }

  /* ---------- CONTACT ---------- */
  .contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:40px;}
  .contact-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px;}
  .contact-card h3{font-size:18px; margin-bottom:18px;}
  .info-row{display:flex; gap:12px; padding:11px 0; border-top:1px solid var(--line); font-size:14px;}
  .info-row:first-of-type{border-top:none;}
  .info-row svg{width:17px; height:17px; color:var(--turquoise-dark); flex-shrink:0; margin-top:1px;}
  .info-row .k{color:var(--muted); width:80px; flex-shrink:0;}
  .map-box{
    margin-top:18px; border-radius:8px; overflow:hidden; border:1px solid var(--line); height:220px;
    background:var(--bg-soft);
  }
  .map-box iframe{width:100%; height:100%; display:block;}

  .form-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px;}
  .form-card h3{font-size:18px; margin-bottom:6px;}
  .form-card .sub{font-size:13.5px; color:var(--muted); margin-bottom:22px;}
  .field{margin-bottom:16px;}
  .field label{display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px;}
  .field input, .field textarea{
    width:100%; border:1.5px solid var(--line); border-radius:8px; padding:11px 14px; font-size:14px;
    font-family:'Inter',sans-serif; outline:none; transition:border-color .15s ease; resize:vertical;
  }
  .field input:focus, .field textarea:focus{border-color:var(--turquoise);}
  .form-submit{
    width:100%; background:var(--whatsapp); color:#fff; border:none; border-radius:8px; padding:13px;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; gap:8px;
  }
  .form-submit:hover{opacity:.92;}
  .form-note{font-size:12px; color:var(--muted); margin-top:10px; text-align:center;}
  @media (max-width:860px){ .contact-grid{grid-template-columns:1fr;} }

  /* ---------- CTA STRIP ---------- */
  .cta-strip{background:var(--navy); color:#fff; text-align:center; padding:56px 24px;}
  .cta-strip h2{color:#fff; font-size:26px; margin-bottom:10px;}
  .cta-strip p{opacity:.8; margin-bottom:24px; max-width:480px; margin-left:auto; margin-right:auto; font-size:15px;}

  /* ---------- FOOTER ---------- */
  footer{background:#fff; border-top:1px solid var(--line); padding:48px 0 24px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:36px;}
  footer p.tag{margin-top:12px; font-size:10.5px; line-height:1.5; color:var(--muted); max-width:230px;}
  .footer-tagline-img{height:20px; width:auto; margin-top:4px;}
  footer h5{color:var(--navy); font-family:'Poppins',sans-serif; font-size:13px; margin-bottom:14px;}
  footer ul{list-style:none; display:flex; flex-direction:column; gap:9px;}
  footer ul a, footer ul li{font-size:14px; color:var(--muted);}
  footer ul a:hover{color:var(--turquoise-dark);}
  a[href^="mailto:"]{cursor:pointer; transition:opacity .15s ease;}
  a[href^="mailto:"]:hover{opacity:.75;}
  a[href^="tel:"]{cursor:pointer; transition:opacity .15s ease;}
  a[href^="tel:"]:hover{opacity:.75;}
  .payment-row{
    display:flex; align-items:center; flex-wrap:wrap; gap:10px;
    padding-top:22px; margin-top:6px; border-top:1px solid var(--line);
  }
  .payment-label{font-size:12.5px; color:var(--muted); margin-right:4px;}
  .payment-badge{
    display:inline-flex; align-items:center; gap:6px;
    color:#fff; font-family:'Poppins',sans-serif; font-weight:600; font-size:12px;
    padding:6px 12px; border-radius:6px;
  }
  .payment-badge-outline{
    background:transparent; border:1px solid var(--line); color:var(--muted); font-weight:500;
  }
  .footer-bottom{
    border-top:1px solid var(--line); padding-top:20px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:#A6AEB8;
  }
  @media (max-width:860px){ .footer-grid{grid-template-columns:1fr 1fr;} }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float{
    position:fixed; right:22px; bottom:22px; z-index:200;
    display:flex; align-items:center; gap:10px;
    background:var(--whatsapp); color:#fff; padding:14px 18px; border-radius:999px;
    box-shadow:0 10px 28px rgba(37,211,102,0.40);
    font-family:'Poppins',sans-serif; font-weight:600; font-size:14px;
  }
  .wa-float svg{width:20px; height:20px;}

  /* ---------- REVEAL ---------- */
  .reveal{opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} }

  /* ---------- MOBILE NAV ---------- */
  @media (max-width:900px){
    nav.main-nav{
      position:fixed; top:66px; left:0; right:0; background:#fff; flex-direction:column;
      padding:16px 24px; gap:0; border-bottom:1px solid var(--line);
      transform:translateY(-130%); transition:transform .25s ease; box-shadow:var(--shadow-lg);
    }
    nav.main-nav.open{transform:translateY(0);}
    nav.main-nav a{padding:13px 0; border-bottom:1px solid var(--bg-soft);}
    .header-cta .btn-outline{display:none;}
    .burger{display:flex;}
  }
  /* ---------- MODAL FICHE PRODUIT ---------- */
  .product-modal-overlay{
    display:none; position:fixed; inset:0; background:rgba(13,27,42,.62);
    z-index:500; align-items:center; justify-content:center; padding:20px;
  }
  .product-modal-overlay.open{display:flex;}
  .product-modal{
    background:#fff; border-radius:var(--radius); max-width:760px; width:100%;
    max-height:88vh; overflow-y:auto; position:relative; box-shadow:var(--shadow-lg);
  }
  .product-modal-close{
    position:absolute; top:14px; right:14px; width:36px; height:36px; border-radius:50%;
    background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
    cursor:pointer; z-index:2;
  }
  .product-modal-close svg{width:18px; height:18px;}
  .product-modal-grid{display:grid; grid-template-columns:1fr; gap:0;}
  @media (min-width:640px){ .product-modal-grid{grid-template-columns:280px 1fr;} }
  .product-modal-img{
    background:var(--bg-soft); display:flex; align-items:center; justify-content:center;
    padding:24px; min-height:240px;
  }
  .product-modal-img img{width:100%; height:auto; max-height:280px; object-fit:contain;}
  .product-modal-body{padding:28px;}
  .product-modal-body .cat-tag{font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;}
  .product-modal-body h3{font-size:22px; margin:8px 0 10px; color:var(--navy);}
  .product-modal-body .desc{color:var(--muted); line-height:1.55; display:block; margin-bottom:16px;}
  .product-modal-specs{
    background:var(--bg-soft); border-radius:12px; padding:16px 18px; margin-bottom:18px;
  }
  .product-modal-specs h5{font-size:13px; text-transform:uppercase; letter-spacing:.04em; color:var(--navy); margin-bottom:8px;}
  .product-modal-specs-row{display:flex; justify-content:space-between; gap:12px; padding:6px 0; font-size:14px; border-bottom:1px solid var(--line);}
  .product-modal-specs-row:last-child{border-bottom:none;}
  .product-modal-specs-row .label{color:var(--muted);}
  .product-modal-specs-row .value{font-weight:600; color:var(--navy); text-align:right;}
  .product-modal-footer{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;}

  /* ---------- NAV DROPDOWN (navigation hiérarchique) ---------- */
  .nav-dropdown{position:relative;}
  .nav-dropdown-toggle{cursor:pointer;}
  .nav-dropdown-panel{
    display:none; position:absolute; top:100%; left:50%; transform:translateX(-50%);
    background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-lg, 0 16px 40px rgba(13,27,42,0.14));
    padding:18px; margin-top:14px; z-index:50; min-width:760px; max-width:900px;
    grid-template-columns:repeat(5, 1fr); gap:18px;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel{display:grid;}
  .nav-dropdown-col{display:flex; flex-direction:column; gap:6px;}
  .nav-dropdown-cat{font-size:13px; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.03em; padding-bottom:6px; border-bottom:1px solid var(--line); margin-bottom:2px;}
  .nav-dropdown-col ul{list-style:none; display:flex; flex-direction:column; gap:2px;}
  .nav-dropdown-col ul a{font-size:13.5px; color:var(--muted); padding:5px 0; display:block;}
  .nav-dropdown-col ul a:hover{color:var(--turquoise-dark);}
  @media (max-width:960px){
    .nav-dropdown-panel{position:static; transform:none; grid-template-columns:1fr 1fr; min-width:0; box-shadow:none; border:none; margin-top:8px; padding:8px 0 8px 12px;}
    .nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel{display:none;}
    .nav-dropdown.open .nav-dropdown-panel{display:grid;}
  }

  /* ---------- BREADCRUMB ---------- */
  .breadcrumb{padding:16px 0; font-size:13.5px; color:var(--muted); background:var(--bg-soft);}
  .breadcrumb a{color:var(--muted);}
  .breadcrumb a:hover{color:var(--turquoise-dark);}
  .breadcrumb span[aria-current]{color:var(--navy); font-weight:600;}
  .breadcrumb .bc-sep{margin:0 4px; color:var(--line);}

  /* ---------- HERO COMPACT (pages catégorie/sous-catégorie) ---------- */
  .hero-compact{padding-top:40px; padding-bottom:36px;}
  .hero-compact h1{font-size:clamp(24px, 3vw, 34px);}

  /* ---------- HUB DE SOUS-CATEGORIES ---------- */
  .sub-tiles{padding:8px 0 40px;}
  .sub-tiles-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:16px;}
  .sub-tile{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    background:#fff; border:1.5px solid var(--line); border-radius:14px; padding:22px 24px;
    font-weight:600; color:var(--navy); font-size:16px; transition:border-color .15s, transform .15s, box-shadow .15s;
  }
  .sub-tile:hover{border-color:var(--turquoise-dark); transform:translateY(-2px); box-shadow:var(--shadow);}
  .sub-tile-arrow{color:var(--turquoise-dark); font-size:18px;}
