/* ============================================================
   DECOFFICE — responsive.css
   CSS mobile-first usando container queries.
   CSS mobile-first con @media queries estándar
   ============================================================ */

:root{
  --teal:#007577; --teal-dark:#005a5c; --teal-light:#72bbc1;
  --navy:#003362; --navy-dark:#002347;
  --beige:#ded7c5; --beige-soft:#ece8dd;
  --gold:#bb9b6a; --gold-dark:#a0804e; --gold-soft:#d7c19a;
  --white:#ffffff; --off-white:#f9f7f4;
  --tile:#ede9dc; --paper:#faf7f1;
  --g100:#f3f1ee; --g200:#e8e4de; --g300:#d3ccbe;
  --g400:#b0a898; --g500:#8a8273; --g600:#6b6257;
  --ink:#1a1410; --ink-2:#3a342d; --ink-3:#6b6257;
  --line:rgba(26,20,16,.10); --line-strong:rgba(26,20,16,.18);

  --fd:'Crimson Text',Georgia,serif;
  --fb:'Sarabun',system-ui,sans-serif;
  --fm:'JetBrains Mono',ui-monospace,monospace;
}

/* Usar media queries estándar — container-type en body rompe position:fixed en Android Chrome */

/* ============================================================
   TOPBAR — siempre visible, compacto en móvil
============================================================ */
.topbar{
  background:var(--ink); color:rgba(255,255,255,.78);
  font-size:11px; padding:7px 0;
}
.topbar__row{
  display:flex; justify-content:center; align-items:center;
  gap:10px; flex-wrap:wrap;
}
.topbar a{ color:rgba(255,255,255,.85); }
.topbar i{ margin-right:5px; opacity:.75; }
.topbar__sep{ opacity:.35; }
.topbar__hours{ display:none; }
@media (min-width:680px){
  .topbar__row{ justify-content:space-between; }
  .topbar__hours{ display:inline; }
}

/* ============================================================
   HEADER — sticky, mobile-first
============================================================ */
.header{
  position:sticky; top:0; z-index:1000;
  background:rgba(250,247,241,.94);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding:12px 0; min-height:60px;
}
.header__logo{ flex-shrink:0; }
.header .logo img{ height:48px !important; width:auto !important; object-fit:contain; }
@media (min-width:560px){
  .header .logo img{ height:54px !important; }
}
@media (min-width:820px){
  .header .logo img{ height:62px !important; }
}
@media (min-width:1100px){
  .header .logo img{ height:68px !important; }
}

/* Nav — oculta en móvil, drawer gestionado por main.js */
.header nav{ display:none; }
.header__search-pill{ display:none; }
.header .header__search{ display:none; }

.header__actions,
.head-actions{
  display:flex; align-items:center; gap:6px;
}
.iconbtn{
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--line-strong); background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--ink-2); position:relative;
  font-size:14px;
}
.iconbtn:hover{ border-color:var(--ink); }
.cart-badge,.fav-badge{
  position:absolute; top:-5px; right:-5px;
  background:var(--gold); color:#fff;
  min-width:17px; height:17px; padding:0 4px; border-radius:100px;
  font-size:9.5px; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center;
  border:2px solid #fff;
}
.fav-badge{ background:#e33; }
.burger{
  display:flex; flex-direction:column; gap:4px; padding:9px;
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--line-strong); background:#fff;
  align-items:center; justify-content:center;
}
.burger span{ width:18px; height:1.8px; background:var(--ink); border-radius:2px; }

/* Barra de búsqueda móvil — segunda fila debajo del header__row */
.header__search-mobile{
  display:flex; align-items:center; gap:6px;
  border:1.5px solid var(--line-strong); border-radius:100px;
  padding:7px 14px; background:#fff;
  margin:0 0 10px;
}
.header__search-mobile input{
  flex:1; border:0; outline:0; background:transparent;
  font-size:13px; color:var(--ink-2);
}
.header__search-mobile button{
  background:none; border:none; cursor:pointer;
  color:var(--teal); font-size:13px; padding:0;
}

/* Tablet+ : nav visible, search inline */
@media (min-width:820px){
  .header__row{ gap:20px; padding:14px 0; }
  .burger{ display:none; }
  .header nav{
    display:block; flex:1;
    position:static !important;
    overflow:visible !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    z-index:auto !important;
    background:transparent !important;
  }
  .header nav .nav__list{
    display:flex; gap:4px; justify-content:center; align-items:center;
  }
  .header nav .nav__list > li > a{
    display:inline-flex; align-items:center; gap:5px;
    padding:8px 12px; border-radius:100px;
    font-size:13px; font-weight:500; color:var(--ink-2);
    white-space:nowrap;
  }
  .header nav .nav__list > li > a i{ font-size:8.5px; opacity:.5; }
  .header nav .nav__list > li.active > a{ background:rgba(0,51,98,.07); color:var(--navy); }
  .header .header__search{
    display:flex !important;
    max-width:280px; min-width:180px;
  }
  .header__search-mobile{ display:none; }
}

/* WhatsApp CTA — chico en mobile, completo en desktop */
.cta-pill.whatsapp{
  background:#25D366; color:#fff; border-color:#25D366;
}
.cta-pill.whatsapp .lbl{ display:none; }
@media (min-width:560px){
  .cta-pill.whatsapp .lbl{ display:inline; }
}

/* ============================================================
   CTA pills — botones base
============================================================ */
.cta-pill{
  display:inline-flex; align-items:center; gap:7px;
  padding:10px 18px; border-radius:100px;
  font-size:12.5px; font-weight:600; letter-spacing:.01em;
  background:var(--ink); color:#fff; border:1.5px solid var(--ink);
  text-decoration:none; white-space:nowrap; cursor:pointer;
  transition:.2s;
}
.cta-pill:hover{ background:var(--teal); border-color:var(--teal); }
.cta-pill.lg{ padding:13px 24px; font-size:13.5px; }
.cta-pill.sm{ padding:8px 14px; font-size:11.5px; }
.cta-pill.outline{ background:transparent; color:var(--ink); }
.cta-pill.outline:hover{ background:var(--ink); color:#fff; }
.cta-pill.teal{ background:var(--teal); border-color:var(--teal); }
.cta-pill.gold{ background:var(--gold); border-color:var(--gold); }
.cta-pill.dark{ background:var(--navy); border-color:var(--navy); }
.cta-pill.ghost{ background:transparent; border-color:rgba(255,255,255,.35); color:#fff; }
.cta-pill.ghost:hover{ background:rgba(255,255,255,.1); }

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:10.5px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--teal);
}
.kicker::before{ content:""; width:18px; height:1px; background:currentColor; }
.kicker--gold{ color:var(--gold); }
.kicker--white{ color:rgba(255,255,255,.75); }
.kicker--white::before{ background:rgba(255,255,255,.75); }

/* ============================================================
   HERO — Inicio
============================================================ */
.hero{ padding:32px 0 36px; background:var(--paper); }
.hero__grid{ display:flex; flex-direction:column; gap:32px; }
.hero__copy h1{
  font-family:var(--fd); font-size:42px; line-height:1; color:var(--ink);
  font-weight:600; letter-spacing:-.02em; margin-top:14px;
}
.hero__copy h1 .alt{ font-style:italic; color:var(--teal); }
.hero__desc{ margin-top:18px; font-size:14px; color:var(--ink-3); max-width:440px; }
.hero__actions{ margin-top:22px; display:flex; gap:10px; flex-wrap:wrap; }
.hero__stats{
  margin-top:30px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
  padding-top:22px; border-top:1px solid var(--line);
}
.hero__stat .num{
  font-family:var(--fd); font-size:24px; color:var(--ink); font-weight:600; line-height:1;
}
.hero__stat .lbl{ font-size:10.5px; color:var(--ink-3); margin-top:4px; }

/* style.css oculta estos con @media(max-width:480px) — los forzamos visibles siempre */
.hero__tag{ display:inline-flex !important; }
.hero__card{ display:flex !important; }

@media (min-width:640px){
  .hero{ padding:44px 0 48px; }
  .hero__copy h1{ font-size:58px; }
  .hero__desc{ font-size:15px; }
}
@media (min-width:1000px){
  .hero{ padding:60px 0 64px; }
  .hero__grid{ flex-direction:row; gap:60px; align-items:center; }
  .hero__grid > *{ flex:1; min-width:0; }
  .hero__copy h1{ font-size:80px; }
  .hero__stat .num{ font-size:32px; }
}

/* ============================================================
   FEATURES DARK STRIP
============================================================ */
.features-dark{
  background:var(--ink); color:#fff;
  border-radius:14px; padding:22px 18px;
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
  margin-top:-22px; position:relative; z-index:4;
}
.feat{ display:flex; gap:10px; align-items:flex-start; }
.feat__icon{
  width:34px; height:34px; flex-shrink:0;
  border-radius:10px; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-soft); font-size:13px;
}
.feat__t{ font-size:12px; font-weight:600; color:#fff; margin-bottom:1px; }
.feat__d{ font-size:10.5px; color:rgba(255,255,255,.6); line-height:1.4; }
@media (min-width:640px){
  .features-dark{ padding:28px 26px; gap:22px; }
}
@media (min-width:900px){
  .features-dark{ grid-template-columns:repeat(4,1fr); padding:32px 36px; }
  .feat__icon{ width:38px; height:38px; }
  .feat__t{ font-size:13.5px; }
  .feat__d{ font-size:11.5px; }
}

/* ============================================================
   SECTIONS
============================================================ */
.section{ padding:48px 0; }
.section--soft{ background:var(--off-white); }
.section--beige{ background:var(--beige-soft); }
.section--navy{ background:var(--navy); color:rgba(255,255,255,.85); }
.section--navy h1,.section--navy h2,.section--navy h3{ color:#fff; }
@media (min-width:900px){ .section{ padding:72px 0; } }

.section-head h2,.filterbar h2{
  font-family:var(--fd); color:var(--ink); font-size:30px; line-height:1.08;
  font-weight:600; letter-spacing:-.015em; margin-top:12px;
}
.section-head h2 em,.filterbar h2 em{ font-style:italic; color:var(--teal); }
@media (min-width:640px){ .section-head h2,.filterbar h2{ font-size:38px; } }
@media (min-width:1000px){ .section-head h2,.filterbar h2{ font-size:46px; } }

.filterbar{
  display:flex; flex-direction:column; gap:18px; margin-bottom:24px;
}
@media (min-width:820px){
  .filterbar{ flex-direction:row; align-items:end; justify-content:space-between; gap:24px; }
}

.chips{ display:flex; gap:6px; flex-wrap:wrap; }
.chip{
  font-size:11.5px; padding:7px 14px; border-radius:100px;
  border:1.5px solid var(--line-strong); color:var(--ink-3); background:#fff;
  display:inline-flex; align-items:center; gap:5px;
  white-space:nowrap;
}
.chip.active{ background:var(--ink); border-color:var(--ink); color:#fff; }
.count-chip{
  font-family:var(--fm); font-size:9.5px;
  background:rgba(255,255,255,.18); padding:1px 5px; border-radius:100px;
}
.chip:not(.active) .count-chip{ background:var(--g100); color:var(--g600); }

/* ============================================================
   PRODUCT CARDS — pcards-grid + pcards-3
============================================================ */
.pcards-grid,.pcards-3{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
@media (min-width:560px){ .pcards-grid,.pcards-3{ gap:16px; } }
@media (min-width:820px){
  .pcards-3{ grid-template-columns:repeat(3,1fr); gap:18px; }
  .pcards-grid{ grid-template-columns:repeat(3,1fr); gap:18px; }
}
@media (min-width:1100px){
  .pcards-grid{ grid-template-columns:repeat(4,1fr); gap:22px; }
}

.pcard{
  background:#fff; border-radius:12px; overflow:hidden;
  border:1px solid var(--line); transition:.25s;
  display:flex; flex-direction:column;
}
.pcard:hover{ box-shadow:0 8px 22px rgba(15,30,40,.10); }
.pcard__media{
  aspect-ratio:1; position:relative; background:var(--tile); overflow:hidden;
}
.pcard__badge{
  position:absolute; top:8px; left:8px; z-index:2;
  font-size:9.5px; padding:3px 8px; border-radius:100px; font-weight:700;
  background:var(--gold); color:#fff; letter-spacing:.04em;
}
.pcard__badge.navy{ background:var(--navy); }
.pcard__badge.teal{ background:var(--teal); }
.pcard__quick,.pcard__fav{
  position:absolute; right:8px; z-index:2;
  width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,.95); color:var(--ink);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:11px; border:1px solid var(--line);
}
.pcard__quick{ top:8px; }
.pcard__fav{ top:44px; color:var(--ink-3); }
.pcard__fav.is-fav{ color:#e33; }
.pcard__body{ padding:12px 12px 14px; flex:1; display:flex; flex-direction:column; }
.pcard__cat{
  font-size:9px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--g500); font-weight:600;
}
.pcard__name{
  margin-top:6px; font-family:var(--fd); font-size:14px; font-weight:600;
  color:var(--ink); line-height:1.2;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden; min-height:34px;
}
.pcard__row{
  margin-top:10px; padding-top:10px;
  border-top:1px solid var(--g100);
  display:flex; justify-content:space-between; align-items:end; gap:6px;
}
.pcard__price{ font-family:var(--fd); font-size:15px; color:var(--navy); font-weight:700; }
.pcard__price .was{ display:block; font-size:9.5px; color:var(--g500); text-decoration:line-through; font-weight:400; }
.pcard__code{ font-family:var(--fm); font-size:9.5px; color:var(--g500); }

@media (min-width:560px){
  .pcard__name{ font-size:15px; min-height:36px; }
  .pcard__price{ font-size:17px; }
}
@media (min-width:820px){
  .pcard__body{ padding:14px 14px 16px; }
  .pcard__quick,.pcard__fav{ width:34px; height:34px; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer{
  background:var(--ink); color:rgba(255,255,255,.78);
  padding:48px 0 0; margin-top:48px;
}
.footer__grid{ display:flex; flex-direction:column; gap:32px; }
.footer__col h5{
  font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold-soft); margin-bottom:14px; font-weight:600;
}
.footer__col ul li{ margin-bottom:8px; }
.footer__col ul li a{
  color:rgba(255,255,255,.72); font-size:13px;
  display:inline-flex; align-items:center; gap:7px;
}
.footer__col ul li a:hover{ color:#fff; }
.footer__col ul li i{ color:var(--gold-soft); font-size:11px; width:14px; }

.footer__brand p{
  color:rgba(255,255,255,.65); line-height:1.7;
  font-size:13px; margin:14px 0 18px;
}
.footer__social{ display:flex; gap:8px; }
.footer__social a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.06); color:rgba(255,255,255,.85);
  display:flex; align-items:center; justify-content:center; font-size:13px;
}
.footer__social a:hover{ background:var(--teal); color:#fff; }

.footer__bottom{
  margin-top:32px; padding:16px 0;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:11.5px; color:rgba(255,255,255,.5);
  text-align:center;
}
.footer__bottom .legal{ display:flex; gap:14px; justify-content:center; margin-top:6px; }

@media (min-width:640px){
  .footer__grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; }
  .footer__brand{ grid-column:1 / -1; }
}
@media (min-width:900px){
  .footer__grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; }
  .footer__brand{ grid-column:auto; }
  .footer__bottom{ display:flex; justify-content:space-between; text-align:left; }
  .footer__bottom .legal{ justify-content:flex-end; margin-top:0; }
}

/* ============================================================
   CATALOGO — cat-hero + cat-grid (sidebar colapsable)
============================================================ */
.cat-hero{
  background:var(--tile); padding:32px 0 36px;
  border-bottom:1px solid var(--line-strong);
}
.bread{
  display:flex; align-items:center; gap:6px; flex-wrap:wrap;
  font-size:11.5px; color:var(--ink-3); padding:0 0 14px;
}
.bread a{ color:var(--ink-3); }
.bread__sep{ opacity:.4; }
.bread__current{ color:var(--ink); font-weight:500; }
.cat-hero__row{
  display:flex; flex-direction:column; gap:18px;
}
.cat-hero h1{
  font-family:var(--fd); font-size:34px; line-height:1.02;
  color:var(--ink); font-weight:600; letter-spacing:-.02em; margin-top:6px;
}
.cat-hero h1 em{ font-style:italic; color:var(--teal); }
.cat-hero__stats{ display:flex; gap:10px; flex-wrap:wrap; }
.cat-hero__stat{
  background:#fff; border:1px solid var(--line-strong); border-radius:12px;
  padding:12px 16px; flex:1; min-width:110px;
}
.cat-hero__stat .n{
  font-family:var(--fd); font-size:22px; color:var(--ink); font-weight:700; line-height:1;
}
.cat-hero__stat .l{ font-size:10.5px; color:var(--ink-3); margin-top:3px; }
@media (min-width:820px){
  .cat-hero{ padding:48px 0 52px; }
  .cat-hero h1{ font-size:48px; }
  .cat-hero__row{ flex-direction:row; align-items:end; justify-content:space-between; gap:24px; }
  .cat-hero__stats{ justify-content:flex-end; }
}
@media (min-width:1000px){ .cat-hero h1{ font-size:58px; } }

/* Botón toggle de filtros (solo visible en móvil) */
.cat-filter-toggle{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding:11px 16px; width:100%;
  background:#fff; border:1.5px solid var(--line-strong);
  border-radius:100px; cursor:pointer;
  font-size:13px; font-weight:600; color:var(--ink);
}
.cat-filter-toggle i{ color:var(--teal); }

/* Sidebar: oculto por defecto en móvil, visible con .is-open */
.cat-sidebar{ display:none; }
.cat-sidebar.is-open{ display:block; }
.cat-sidebar{
  background:#fff; border:1px solid var(--line-strong); border-radius:14px;
  padding:6px 18px;
}
.cat-sidebar__block{ padding:14px 0; border-bottom:1px solid var(--line); }
.cat-sidebar__block:last-child{ border-bottom:0; }
.cat-sidebar__h{
  font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-3); font-weight:700; margin-bottom:8px;
}
.cat-sidebar__sub{
  font-size:9.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin:10px 0 4px;
}
.cat-link{
  display:flex; justify-content:space-between; align-items:center;
  padding:6px 0; font-size:13px; color:var(--ink-2);
}
.cat-link:hover,.cat-link.active{ color:var(--teal); }
.cat-link.active{ font-weight:600; }
.cat-link small{ font-size:10.5px; color:var(--g500); }
.cat-search{ display:flex; gap:6px; }
.cat-search input{
  flex:1; border:1.5px solid var(--line-strong); border-radius:8px;
  padding:8px 10px; font-size:12.5px; outline:0;
}
.cat-search button{
  width:34px; border-radius:8px; background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
}

.cat-grid{
  display:flex; flex-direction:column; gap:12px; padding:24px 0 56px;
}

.cat-results-head{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; margin-bottom:16px; flex-wrap:wrap;
}
.cat-results-head .meta{ font-size:12.5px; color:var(--ink-3); }
.cat-results-head .meta b{ font-family:var(--fd); color:var(--ink); font-size:17px; font-weight:600; }

@media (min-width:820px){
  .cat-filter-toggle{ display:none; }
  .cat-sidebar{ display:block; }
  .cat-grid{
    display:grid; grid-template-columns:230px 1fr; gap:30px;
    padding:36px 0 64px; align-items:start;
  }
}

.pag{ display:flex; justify-content:center; gap:6px; margin-top:32px; flex-wrap:wrap; }
.pag a,.pag span{
  width:34px; height:34px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:12px; color:var(--ink-2);
  border:1.5px solid var(--line-strong); background:#fff;
}
.pag .current{ background:var(--ink); border-color:var(--ink); color:#fff; font-weight:600; }

/* ============================================================
   CATEGORIA — catx-hero (oscuro)
============================================================ */
.catx-hero{
  background:var(--ink); color:#fff;
  padding:48px 0; position:relative; overflow:hidden;
}
.catx-hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(circle at 90% 30%, rgba(187,155,106,.15), transparent 50%),
    radial-gradient(circle at 0% 90%, rgba(0,117,119,.18), transparent 55%);
}
.catx-hero .bread{ color:rgba(255,255,255,.55); }
.catx-hero .bread a{ color:rgba(255,255,255,.65); }
.catx-hero .bread__current{ color:#fff; }
.catx-hero__row{
  position:relative; display:flex; flex-direction:column; gap:20px;
}
.catx-hero h1{
  font-family:var(--fd); font-size:40px; line-height:1; color:#fff;
  font-weight:600; letter-spacing:-.02em; margin-top:10px;
}
.catx-hero h1 em{ font-style:italic; color:var(--gold-soft); }
.catx-hero__desc{ color:rgba(255,255,255,.7); font-size:13.5px; max-width:460px; margin-top:10px; }
.catx-hero__meta{
  display:flex; gap:14px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.15); padding-top:18px; margin-top:18px;
}
.catx-hero__meta > div{ padding-left:14px; border-left:1px solid rgba(255,255,255,.18); }
.catx-hero__meta > div:first-child{ border-left:0; padding-left:0; }
.catx-hero__meta .n{ font-family:var(--fd); font-size:22px; font-weight:600; color:#fff; line-height:1; }
.catx-hero__meta .l{ font-size:9.5px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-top:2px; }
@media (min-width:820px){
  .catx-hero{ padding:72px 0; }
  .catx-hero h1{ font-size:60px; }
  .catx-hero__row{ flex-direction:row; align-items:end; justify-content:space-between; gap:36px; }
  .catx-hero__meta{ border:0; padding:0; margin:0; }
}

/* ============================================================
   PRODUCTO — galería + info
============================================================ */
.prod{ padding:24px 0 56px; display:flex; flex-direction:column; gap:28px; }
.prod__gallery .main{
  background:var(--tile); border-radius:16px;
  aspect-ratio:1; position:relative; overflow:hidden;
}

/* Carrusel: slides apilados, cambio con opacidad */
.carousel{ position:relative; }
.carousel__slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  opacity:0; visibility:hidden;
  transition:opacity .35s ease;
  pointer-events:none;
}
.carousel__slide.is-active{
  opacity:1; visibility:visible; pointer-events:auto; position:relative;
}
.carousel__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:50%;
  background:rgba(250,247,241,.92);
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink); font-size:14px; cursor:pointer;
  z-index:3; transition:background .2s;
}
.carousel__nav:hover{ background:#fff; }
.carousel__nav.prev{ left:10px; }
.carousel__nav.next{ right:10px; }
.carousel__counter{
  position:absolute; bottom:12px; right:14px;
  background:rgba(26,20,16,.78); color:#fff;
  padding:4px 11px; border-radius:100px;
  font-size:11.5px; font-weight:600;
  font-family:var(--fm,'JetBrains Mono',monospace);
  z-index:3;
}
@media (min-width:820px){
  .carousel__nav{ width:42px; height:42px; font-size:15px; }
}
.prod__gallery .thumbs{
  display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px;
}
.prod__gallery .thumbs .t{
  aspect-ratio:1; border-radius:8px; background:var(--tile);
  border:1.5px solid transparent; overflow:hidden;
}
.prod__gallery .thumbs .t.active{ border-color:var(--ink); }

.prod__info .cat{
  font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--teal); font-weight:700;
}
.prod__info h1{
  font-family:var(--fd); font-size:30px; line-height:1.02;
  color:var(--ink); font-weight:600; letter-spacing:-.02em; margin-top:8px;
}
.prod__info h1 em{ font-style:italic; color:var(--teal); }
.prod__info .code{
  margin-top:10px; font-size:10.5px; color:var(--ink-3);
  letter-spacing:.06em; text-transform:uppercase;
}
.prod__info .badges{ margin-top:12px; display:flex; gap:6px; flex-wrap:wrap; }
.prod__info .badge{
  font-size:10.5px; padding:4px 10px; border-radius:100px; font-weight:600;
}
.badge-stock{ background:#d6f5e3; color:#0f5132; }
.badge-pedido-e{ background:var(--tile); color:var(--ink); }
.badge-instant{ background:var(--tile); color:var(--ink); }

.prod__price{
  margin-top:18px; padding:18px 20px; background:var(--tile);
  border:1px solid var(--line-strong); border-radius:14px;
}
.prod__price .now{
  font-family:var(--fd); font-size:32px; color:var(--ink); font-weight:700; line-height:1;
}
.prod__price .now small{ font-family:var(--fb); font-size:11.5px; color:var(--ink-3); font-weight:400; }
.prod__price .row2{ margin-top:8px; display:flex; gap:10px; align-items:baseline; flex-wrap:wrap; }
.prod__price .was{ color:var(--ink-3); text-decoration:line-through; font-size:13px; }
.prod__price .save{ background:var(--teal); color:#fff; padding:3px 9px; border-radius:100px; font-size:10px; font-weight:600; }

.prod__desc{ margin-top:14px; font-size:13.5px; color:var(--ink-3); line-height:1.7; }
.prod__qty{ margin-top:20px; display:flex; gap:10px; align-items:stretch; flex-wrap:wrap; }
.qty-control{
  display:flex; align-items:center;
  border:1.5px solid var(--line-strong); border-radius:100px; padding:3px; background:#fff;
}
.qty-control button{
  width:30px; height:30px; border-radius:50%;
  color:var(--ink); font-size:10px;
  display:flex; align-items:center; justify-content:center;
}
.qty-control input{
  width:36px; text-align:center; border:0; outline:0;
  font-family:var(--fd); font-size:15px; font-weight:600;
  color:var(--ink); background:transparent;
}
.prod__cta-row{ margin-top:10px; display:flex; gap:8px; flex-wrap:wrap; }
.prod__cta-row .cta-pill{ flex:1; justify-content:center; min-width:140px; }
.prod__meta-list{
  margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:8px;
}
.prod__meta-list .mrow{
  display:flex; align-items:center; gap:10px;
  font-size:12.5px; color:var(--ink-3);
}
.prod__meta-list .mrow i{ color:var(--teal); width:16px; text-align:center; }

.prod__tabs{
  margin:36px auto 0;
  padding:32px 0;
  max-width:720px;
  border-top:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
  display:flex; flex-direction:column; gap:18px;
}
.prod__tabs h3{ font-family:var(--fd); font-size:22px; color:var(--ink); font-weight:600; }
.prod__tabs h3 em{ font-style:italic; color:var(--teal); }
.prod__tabs .body{ font-size:13.5px; color:var(--ink-3); line-height:1.7; }
.prod__tabs .body p + p{ margin-top:10px; }
.specs{ margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.spec{ padding:10px 12px; border:1px solid var(--line-strong); border-radius:10px; background:#fff; }
.spec .sl{ font-size:9px; color:var(--ink-3); letter-spacing:.12em; text-transform:uppercase; }
.spec .sv{ font-family:var(--fd); font-size:13px; color:var(--ink); font-weight:600; margin-top:2px; }

@media (min-width:820px){
  .prod{ display:grid; grid-template-columns:1fr 1fr; gap:40px; padding:32px 0 72px; }
  .prod__tabs{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:200px 1fr;
    gap:32px;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
    padding:40px 0;
    align-items:center;
  }
  .prod__tabs h3{ text-align:right; line-height:1.1; margin:0; }
  .prod__tabs .body{ max-width:480px; margin:0; }
}

/* ============================================================
   CARRITO
============================================================ */
.cart-grid{ display:flex; flex-direction:column; gap:24px; padding:24px 0 56px; }
.cart-list{ display:flex; flex-direction:column; gap:12px; }
.cart-row{
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:12px; display:flex; gap:12px; align-items:flex-start;
}
.cart-row__media{
  width:72px; height:72px; border-radius:10px;
  background:var(--tile); flex-shrink:0; overflow:hidden;
}
.cart-row__main{ flex:1; min-width:0; }
.cart-row__name{ font-family:var(--fd); font-size:14.5px; color:var(--ink); font-weight:600; line-height:1.2; }
.cart-row__code{ font-size:10.5px; color:var(--ink-3); margin-top:3px; }
.cart-row__price-mobile{
  margin-top:8px; display:flex; justify-content:space-between; align-items:center;
  gap:10px;
}
.cart-row__price{ font-family:var(--fd); font-size:14px; color:var(--ink); font-weight:600; }
.cart-row__sub{ font-family:var(--fd); font-size:16px; color:var(--navy); font-weight:700; }
.cart-row__remove{
  width:30px; height:30px; border-radius:50%;
  border:1px solid var(--line-strong); color:var(--ink-3);
  display:inline-flex; align-items:center; justify-content:center;
  background:transparent; flex-shrink:0;
}
.cart-row .qty-control{ margin-top:8px; align-self:flex-start; }

.cart-actions{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.summary{
  background:var(--ink); color:#fff; border-radius:16px; padding:22px;
}
.summary h3{ font-family:var(--fd); font-size:18px; color:#fff; font-weight:600; }
.summary__row{
  display:flex; justify-content:space-between;
  padding:11px 0; border-bottom:1px solid rgba(255,255,255,.10);
  font-size:13px;
}
.summary__row span:first-child{ color:rgba(255,255,255,.62); }
.summary__total{
  display:flex; justify-content:space-between;
  padding:14px 0 4px; align-items:baseline;
}
.summary__total .sl{ font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.summary__total .sv{ font-family:var(--fd); font-size:28px; font-weight:700; color:var(--gold-soft); }
.summary__actions{ margin-top:14px; display:flex; flex-direction:column; gap:8px; }
.summary__actions .cta-pill{ width:100%; justify-content:center; padding:12px; }
.cart-aside-extra{
  margin-top:12px; padding:14px;
  border:1px solid var(--line-strong); border-radius:12px; background:var(--tile);
}
.cart-aside-extra .crow{
  display:flex; gap:9px; font-size:11.5px; color:var(--ink-3);
  padding:5px 0; align-items:center;
}
.cart-aside-extra .crow i{ color:var(--teal); width:14px; }

@media (min-width:820px){
  .cart-grid{ display:grid; grid-template-columns:1fr 320px; gap:28px; align-items:start; padding:32px 0 64px; }
}

/* ============================================================
   CONTACTO
============================================================ */
.contact-grid{
  display:flex; flex-direction:column; gap:28px; padding:28px 0 56px;
}
.contact h1{
  font-family:var(--fd); font-size:32px; line-height:1.02;
  color:var(--ink); font-weight:600; letter-spacing:-.02em; margin-top:10px;
}
.contact h1 em{ font-style:italic; color:var(--teal); }
.contact__lead{ margin-top:12px; font-size:13.5px; color:var(--ink-3); max-width:440px; }
.form-card{
  margin-top:20px; background:#fff; border:1px solid var(--line-strong);
  border-radius:16px; padding:20px;
}
.form-group{ margin-bottom:14px; }
.form-label{
  display:block; font-size:11.5px; font-weight:600; color:var(--ink-2);
  margin-bottom:6px;
}
.form-control{
  width:100%; padding:10px 13px;
  border:1.5px solid var(--line-strong); border-radius:10px;
  background:#fff; color:var(--ink); font-size:13.5px;
}
.form-control:focus{ outline:0; border-color:var(--teal); }
textarea.form-control{ resize:vertical; min-height:90px; }
.cform-row{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:560px){ .cform-row{ grid-template-columns:1fr 1fr; } }

.contact-card{
  background:var(--ink); color:#fff; border-radius:16px;
  padding:24px; position:relative; overflow:hidden;
}
.contact-card::before{
  content:""; position:absolute; right:-60px; top:-60px;
  width:180px; height:180px; border-radius:50%;
  background:radial-gradient(circle, rgba(187,155,106,.18), transparent 65%);
}
.contact-card h3{ font-family:var(--fd); font-size:22px; color:#fff; font-weight:600; }
.contact-card .crow{
  display:flex; gap:12px; align-items:flex-start;
  margin-top:16px; padding:12px 0;
  border-top:1px solid rgba(255,255,255,.1);
}
.contact-card .crow:first-of-type{ border-top:0; padding-top:16px; }
.contact-card .crow .icon{
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-soft); font-size:13px;
}
.contact-card .crow .cl{
  font-size:9px; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,255,255,.45);
}
.contact-card .crow .cv{
  font-family:var(--fd); font-size:14.5px; color:#fff; margin-top:2px; font-weight:600;
}
.contact-card .crow .cv small{
  font-family:var(--fb); font-size:10px; color:rgba(255,255,255,.45);
  font-weight:400; display:block; margin-top:2px;
}
.whats-card{
  margin-top:14px; background:#25D366; color:#fff;
  padding:14px 18px; border-radius:14px;
  display:flex; gap:12px; align-items:center;
}
.whats-card .wicon{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.whats-card .wt{ font-family:var(--fd); font-size:14.5px; font-weight:600; }
.whats-card .wd{ font-size:10.5px; opacity:.85; }

@media (min-width:900px){
  .contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:42px; padding:32px 0 64px; }
}

/* ============================================================
   NOSOTROS
============================================================ */
.us-hero{
  background:var(--ink); color:#fff;
  padding:56px 0 60px; position:relative; overflow:hidden;
}
.us-hero::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(circle at 80% 20%, rgba(187,155,106,.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(0,117,119,.17), transparent 55%);
}
.us-hero__row{
  position:relative; display:flex; flex-direction:column; gap:24px;
}
.us-hero h1{
  font-family:var(--fd); font-size:48px; line-height:.96; color:#fff;
  font-weight:600; letter-spacing:-.02em; margin-top:14px;
}
.us-hero h1 em{ font-style:italic; color:var(--gold-soft); }
.us-hero__lead{ font-size:14px; color:rgba(255,255,255,.72); max-width:440px; }
.us-hero__chips{
  display:flex; gap:14px; flex-wrap:wrap;
  padding-top:18px; border-top:1px solid rgba(255,255,255,.15);
}
.us-hero__chips .item{
  font-family:var(--fd); font-size:18px; color:#fff; font-weight:600;
}
.us-hero__chips .item small{
  display:block; font-family:var(--fb); font-size:9px;
  letter-spacing:.16em; color:var(--gold-soft);
  text-transform:uppercase; margin-bottom:2px; font-weight:500;
}
@media (min-width:820px){
  .us-hero{ padding:80px 0 84px; }
  .us-hero h1{ font-size:68px; }
  .us-hero__row{ flex-direction:row; align-items:end; justify-content:space-between; gap:36px; }
  .us-hero__chips{ border-top:0; padding-top:0; flex-direction:column; align-items:flex-end; }
  .us-hero__chips .item{ text-align:right; font-size:20px; }
}

.mv{ display:flex; flex-direction:column; gap:14px; }
.mv__card{ padding:28px 24px; border-radius:18px; }
.mv__card.mision{ background:var(--tile); border:1px solid var(--line-strong); }
.mv__card.vision{ background:var(--navy); color:#fff; }
.mv__card h2{
  font-family:var(--fd); font-size:24px; line-height:1.08;
  font-weight:600; margin-top:10px;
}
.mv__card.mision h2{ color:var(--ink); }
.mv__card.mision h2 em{ color:var(--teal); font-style:italic; }
.mv__card.vision h2{ color:#fff; }
.mv__card.vision h2 em{ color:var(--gold-soft); font-style:italic; }
.mv__card p{ margin-top:10px; font-size:13px; }
.mv__card.mision p{ color:var(--ink-3); }
.mv__card.vision p{ color:rgba(255,255,255,.7); }
@media (min-width:760px){ .mv{ display:grid; grid-template-columns:1fr 1fr; gap:16px; } }

.values{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.value{
  background:#fff; border:1px solid var(--line-strong);
  border-radius:14px; padding:18px;
}
.value .num{
  font-size:9.5px; color:var(--gold); letter-spacing:.1em;
  border-top:1.5px solid var(--gold); display:inline-block;
  padding-top:6px; min-width:28px; font-weight:600;
}
.value h3{
  font-family:var(--fd); font-size:17px; color:var(--ink);
  font-weight:600; margin-top:12px;
}
.value h3 em{ font-style:italic; color:var(--teal); }
.value p{ margin-top:6px; font-size:12px; color:var(--ink-3); }
@media (min-width:760px){ .values{ grid-template-columns:repeat(4,1fr); gap:16px; } }

.process{
  display:grid; grid-template-columns:1fr 1fr;
  border-top:1.5px solid var(--line-strong);
  border-bottom:1.5px solid var(--line-strong);
}
.process__step{
  padding:20px 18px;
  border-right:1.5px solid var(--line-strong);
  border-bottom:1.5px solid var(--line-strong);
  display:flex; flex-direction:column; gap:6px;
  min-height:130px;
}
.process__step:nth-child(2n){ border-right:0; }
.process__step:nth-last-child(-n+2){ border-bottom:0; }
.process__step .num{
  font-family:var(--fd); font-size:30px; color:var(--gold);
  font-style:italic; line-height:1; font-weight:600;
}
.process__step .t{ font-family:var(--fd); font-size:15px; color:var(--ink); font-weight:600; }
.process__step .d{ font-size:11.5px; color:var(--ink-3); }
@media (min-width:760px){
  .process{ grid-template-columns:repeat(4,1fr); }
  .process__step{ border-bottom:0; }
  .process__step:nth-child(2n){ border-right:1.5px solid var(--line-strong); }
  .process__step:last-child{ border-right:0; }
}

.timeline{
  display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:20px;
}
.timeline__item{ padding-right:14px; position:relative; }
.timeline__item::before{
  content:""; position:absolute; left:0; top:6px;
  width:8px; height:8px; border-radius:50%; background:var(--teal);
}
.timeline__item .ty{
  font-size:10px; color:var(--teal);
  letter-spacing:.14em; padding-left:14px; font-weight:600;
}
.timeline__item .tt{
  font-family:var(--fd); font-size:14px; color:var(--ink);
  margin-top:6px; padding-left:14px; font-weight:600;
}
.timeline__item .td{
  font-size:11px; color:var(--ink-3); padding-left:14px; margin-top:2px;
}
@media (min-width:760px){ .timeline{ grid-template-columns:repeat(4,1fr); } }

/* ============================================================
   EDITORIAL (homepage about)
============================================================ */
.editorial{ display:flex; flex-direction:column; gap:28px; }
.editorial__visual{
  position:relative; aspect-ratio:1.05;
  border-radius:18px; overflow:hidden;
  background:var(--navy); color:#fff;
  display:flex; align-items:flex-end; padding:24px;
}
.editorial__visual::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 0%, rgba(187,155,106,.25), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(114,187,193,.25), transparent 55%);
}
.editorial__visual-num{
  position:absolute; top:20px; left:24px;
  font-family:var(--fd); font-style:italic; font-size:90px; line-height:1;
  color:rgba(255,255,255,.08); font-weight:600;
}
.editorial__visual-stat{ position:relative; z-index:2; }
.editorial__visual-stat .l{
  font-size:9.5px; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.editorial__visual-stat .v{
  font-family:var(--fd); font-size:32px; font-weight:600; margin-top:4px; color:#fff;
}
.editorial__visual-stat .d{
  font-size:12px; color:rgba(255,255,255,.7); margin-top:8px; max-width:280px;
}
.editorial h2{
  font-family:var(--fd); font-size:30px; line-height:1.05;
  color:var(--ink); font-weight:600; margin-top:12px; letter-spacing:-.015em;
}
.editorial h2 em{ font-style:italic; color:var(--teal); }
.editorial > .editorial__copy > p{ margin-top:14px; font-size:13.5px; color:var(--ink-3); }
.editorial-bullets{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
.editorial-bullet{ display:flex; gap:14px; align-items:flex-start; }
.editorial-bullet .num{
  font-family:var(--fm); font-size:10px; color:var(--gold);
  letter-spacing:.1em; flex-shrink:0;
  border-top:1.5px solid var(--gold); padding-top:6px; min-width:28px;
}
.editorial-bullet .t{ font-family:var(--fd); font-size:15px; color:var(--ink); font-weight:600; }
.editorial-bullet .d{ font-size:12px; color:var(--ink-3); margin-top:2px; }
@media (min-width:900px){
  .editorial{ display:grid; grid-template-columns:.95fr 1.05fr; gap:48px; align-items:center; }
  .editorial h2{ font-size:40px; }
  .editorial__visual-num{ font-size:120px; }
}

/* ============================================================
   CORP BANNER (homepage CTA)
============================================================ */
.corp-banner{
  background:var(--navy); color:#fff;
  border-radius:18px; padding:32px 28px;
  display:flex; flex-direction:column; gap:18px;
  position:relative; overflow:hidden;
}
.corp-banner h2{
  font-family:var(--fd); font-size:28px; line-height:1.1;
  color:#fff; font-weight:600; margin-top:10px;
}
.corp-banner h2 em{ font-style:italic; }
.corp-banner p{ color:rgba(255,255,255,.82); font-size:13.5px; }
.corp-banner__actions{ display:flex; gap:10px; flex-wrap:wrap; }
@media (min-width:820px){
  .corp-banner{ padding:48px 44px; flex-direction:row; align-items:center; justify-content:space-between; }
  .corp-banner h2{ font-size:38px; }
}

/* ============================================================
   DRAWER — menú hamburguesa (mobile nav overlay)
============================================================ */
@media (max-width:819px){
  .header nav{
    position:fixed !important;
    top:0; left:0; right:0; bottom:0;
    background:var(--paper);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    z-index:999 !important;
    padding-top:60px;
    padding-bottom:60px;
  }
  .header nav.open{ display:block !important; }
  .header nav .nav__list{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    padding:0;
  }
  .header nav .nav__list > li > a{
    padding:16px 24px;
    border-radius:0;
    border-bottom:1px solid var(--line);
    font-size:15px;
    font-weight:500;
    color:var(--ink);
    white-space:normal;
    display:block;
  }
  .header nav .nav__list > li > a:hover,
  .header nav .nav__list > li.active > a{
    background:rgba(0,51,98,.05);
    color:var(--navy);
  }
  .header nav .dropdown{
    position:static;
    top:auto;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:none;
    border-left:3px solid var(--teal);
    border-radius:0;
    background:transparent;
    margin:0; padding:0; min-width:0;
  }
  .header nav .dropdown__inner{ padding:4px 0; display:flex; flex-direction:column; gap:0; }
  .header nav .dropdown__inner a{
    padding:10px 16px 10px 28px;
    border-bottom:1px solid var(--line);
    border-radius:0; font-size:14px; color:var(--ink-2);
  }
  .header nav .dropdown__inner a:hover{ background:rgba(0,51,98,.04); color:var(--navy); }
}

/* ============================================================
   NAV — Barra horizontal siempre visible (sin hamburger)
   En móvil: segunda fila del header, deslizable con scroll
   Especificidad ID (#nav = 1,0,0) gana sobre cualquier clase
============================================================ */

/* Burger: eliminado completamente */
.burger{ display:none !important; }

/* Nav: siempre visible */
#nav{ display:block; }

/* ── MÓVIL (≤ 819px): segunda fila horizontal deslizable ──── */
@media (max-width:819px){

  /* Header row: permite wrap para que el nav pase a segunda línea */
  .header__row{
    flex-wrap:wrap !important;
    align-items:center !important;
    padding-bottom:0 !important;
    gap:0 !important;
  }

  /* Fila 1 izquierda: logo */
  .header__row > .logo{
    order:1; flex-shrink:0;
    padding:10px 0;
  }

  /* Fila 1 derecha: acciones (fav, cart, WhatsApp) */
  .header__row > .head-actions{
    order:2; margin-left:auto;
    padding:10px 0;
  }

  /* Search desktop: oculta en mobile */
  .header .header__search{ display:none !important; order:99; }

  /* Nav: segunda fila, ancho 100%, scroll horizontal */
  #nav{
    display:block !important;
    order:3;
    width:100% !important;
    position:static !important;
    background:transparent !important;
    overflow-x:auto !important;
    overflow-y:visible !important;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;          /* Firefox: oculta scrollbar */
    z-index:auto !important;
    padding:0 !important;
    border-top:1px solid rgba(26,20,16,.08);
    margin-bottom:4px;
  }
  #nav::-webkit-scrollbar{ display:none; } /* Chrome/Safari: oculta scrollbar */

  /* Lista: fila horizontal sin salto de línea */
  #nav .nav__list{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:0 !important;
    padding:5px 4px 7px !important;
    white-space:nowrap;
  }

  /* Links compactos tipo pill */
  #nav .nav__list > li > a{
    display:inline-flex !important;
    align-items:center !important;
    gap:4px !important;
    padding:7px 13px !important;
    border-radius:100px !important;
    font-size:13px !important;
    font-weight:500 !important;
    color:#3a342d !important;
    white-space:nowrap !important;
    border-bottom:none !important;
  }
  #nav .nav__list > li.active > a{
    background:rgba(0,51,98,.09) !important;
    color:#003362 !important;
    font-weight:600 !important;
  }
  #nav .nav__list > li > a:hover{
    background:rgba(0,51,98,.05) !important;
    color:#003362 !important;
  }

  /* Ocultar flechas de dropdown y submenús en la barra deslizable */
  #nav .nav__list > li > a i{ display:none !important; }
  #nav .dropdown{ display:none !important; }
}

/* ── DESKTOP (≥ 820px): nav inline en header (igual que laptop) */
@media (min-width:820px){

  .header__search-mobile{ display:none !important; }
  .header__row{ flex-wrap:nowrap !important; gap:20px !important; }

  /* Nav como flex centrado, ocupa el espacio disponible */
  #nav{
    display:flex !important;
    position:static !important;
    background:transparent !important;
    overflow:visible !important;
    z-index:auto !important;
    padding:0 !important;
    flex:1;
    align-items:center;
    justify-content:center;
  }
  #nav .nav__list{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:4px !important;
    padding:0 !important;
  }
  #nav .nav__list > li > a{
    display:inline-flex !important;
    align-items:center !important;
    gap:5px !important;
    padding:8px 12px !important;
    border-radius:100px !important;
    font-size:13px !important;
    font-weight:500 !important;
    color:#3a342d !important;
    white-space:nowrap !important;
    border-bottom:none !important;
  }
  /* Mostrar flechas de dropdown en desktop */
  #nav .nav__list > li > a i{ display:inline !important; font-size:8.5px; opacity:.5; }
  #nav .nav__list > li.active > a{
    background:rgba(0,51,98,.07) !important;
    color:#003362 !important;
  }
  #nav .nav__list > li > a:hover{
    background:rgba(0,51,98,.05) !important;
    color:#003362 !important;
  }

  /* Mostrar búsqueda desktop */
  .header .header__search{
    display:flex !important;
    max-width:280px;
    min-width:180px;
  }
}
