:root{
  --ink:#101010;
  --paper:#FAFAF7;
  --safety:#F5C400;
  --steel:#6A6A64;
  --concrete:#EDEDE8;
  --line:rgba(16,16,16,0.12);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper); color:var(--ink);
  font-family:'Inter', sans-serif; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.display{
  font-family:'Archivo', sans-serif; font-weight:800;
  text-transform:uppercase; letter-spacing:-0.01em; line-height:1.02;
}
.mono{ font-family:'Space Mono', monospace; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
.wrap{ max-width:1280px; margin:0 auto; padding:0 28px; }
.wrap-narrow{ max-width:780px; margin:0 auto; padding:0 28px; }
:focus-visible{ outline:3px solid var(--safety); outline-offset:2px; }
svg{ display:block; }
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
}

/* ---------- TOPBAR MARQUEE ---------- */
.topbar{
  background:var(--ink); color:var(--paper); overflow:hidden;
  font-family:'Space Mono', monospace; font-size:11.5px; letter-spacing:0.08em;
  padding:8px 0; white-space:nowrap;
}
.topbar-track{ display:inline-flex; gap:48px; animation:marquee 28s linear infinite; padding-left:100%; }
.topbar-track span b{ color:var(--safety); }
@keyframes marquee{ to{ transform:translateX(-100%); } }

/* ---------- HEADER ---------- */
header{ position:sticky; top:0; z-index:80; background:var(--paper); border-bottom:1px solid var(--line); }
.navbar{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px; }
.logo{ display:flex; align-items:center; gap:12px; }
.logo-text{ font-family:'Archivo'; font-weight:900; font-size:21px; letter-spacing:0.02em; text-transform:uppercase; }
.logo-sub{ font-family:'Space Mono'; font-size:9.5px; letter-spacing:0.14em; color:var(--steel); text-transform:uppercase; }
nav ul{ list-style:none; display:flex; gap:32px; }
nav a{ font-size:13.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; position:relative; padding-bottom:4px; }
nav a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--safety); transition:width .2s ease; }
nav a:hover::after, nav a.active::after{ width:100%; }
.nav-icons{ display:flex; align-items:center; gap:14px; }
.icon-btn{ background:none; border:none; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .15s; }
.icon-btn:hover{ background:var(--concrete); }
.icon-btn svg{ width:19px; height:19px; }
.cart-btn{
  display:flex; align-items:center; gap:8px; background:var(--ink); color:var(--paper);
  padding:9px 16px; border-radius:100px; font-size:13px; font-weight:600; border:none; transition:background .15s;
}
.cart-btn:hover{ background:#000; }
.cart-btn .cart-count{
  background:var(--safety); color:var(--ink); font-family:'Space Mono'; font-weight:700;
  min-width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px;
}
.hamburger{ display:none; background:none; border:none; flex-direction:column; gap:5px; padding:8px; }
.hamburger span{ width:24px; height:2.5px; background:var(--ink); transition:transform .2s, opacity .2s; }
@media(max-width:900px){
  nav{ display:none; position:absolute; top:100%; left:0; right:0; background:var(--paper); border-bottom:1px solid var(--line); box-shadow:0 20px 40px rgba(0,0,0,.1); }
  nav.open{ display:block; }
  nav ul{ flex-direction:column; gap:0; padding:10px 28px 20px; }
  nav a{ display:block; padding:14px 0; border-bottom:1px solid var(--line); font-size:15px; }
  .hamburger{ display:flex; }
  .hamburger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2){ opacity:0; }
  .hamburger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
}

/* ---------- HERO FULL-BLEED (home) ---------- */
.hero-full{
  position:relative; min-height:86vh; display:flex; align-items:flex-end;
  background:var(--ink); color:#fff; overflow:hidden;
}
.hero-full .hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%;
  animation:heroZoom 14s ease-out forwards;
}
@keyframes heroZoom{ from{ transform:scale(1.08); } to{ transform:scale(1); } }
.hero-full::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(16,16,16,.25) 0%, rgba(16,16,16,.05) 40%, rgba(16,16,16,.82) 100%);
}
.hero-full .hero-inner{ position:relative; z-index:2; width:100%; padding:0 0 64px; }
.hero-kicker{
  font-family:'Space Mono'; font-size:12.5px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase;
  color:#fff; margin-bottom:16px; text-shadow:0 2px 14px rgba(0,0,0,.75);
  background:rgba(16,16,16,.45); backdrop-filter:blur(3px); display:inline-block; padding:8px 14px; border-radius:2px;
}
.hero-full h1{ font-size:clamp(44px, 7.5vw, 104px); font-weight:900; max-width:13ch; margin-bottom:22px; }
.hero-full h1 em{ font-style:normal; color:var(--safety); }
.hero-full p{ font-size:clamp(15px,1.6vw,18px); color:#E4E4E0; max-width:520px; margin-bottom:32px; }
.btn-row{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px; border:none;
  padding:15px 28px; font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:0.05em;
  border-radius:2px; transition:transform .15s ease, background .15s ease, border-color .15s;
}
.btn-primary{ background:var(--safety); color:var(--ink); }
.btn-primary:hover{ transform:translateY(-2px); background:#FFD82E; }
.btn-ghost{ border:1.5px solid rgba(255,255,255,.55); color:#fff; background:rgba(16,16,16,.25); backdrop-filter:blur(4px); }
.btn-ghost:hover{ border-color:#fff; }
.btn-dark{ background:var(--ink); color:var(--paper); }
.btn-dark:hover{ background:#000; transform:translateY(-2px); }
.btn-wa{ background:#25D366; color:#fff; }
.btn-wa:hover{ background:#1FBF5B; transform:translateY(-2px); }
.btn-block{ width:100%; }

.strip-claims{ background:var(--ink); color:var(--paper); padding:16px 0; }
.strip-claims .wrap{ display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.strip-claims span{ font-family:'Space Mono'; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; display:flex; align-items:center; gap:9px; }
.strip-claims b{ color:var(--safety); }

/* ---------- SECTIONS ---------- */
section{ padding:88px 0; }
.sec-head{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:44px; gap:20px; flex-wrap:wrap; }
.eyebrow{
  font-family:'Space Mono'; font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--ink); display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.sec-head h2{ font-size:clamp(30px,4vw,48px); }
.sec-link{ font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:0.05em; border-bottom:2px solid var(--safety); padding-bottom:3px; white-space:nowrap; }

/* ---------- TAGLINE EDITORIAL ---------- */
.tagline{ background:var(--paper); text-align:center; padding:110px 0; }
.tagline p{
  font-family:'Archivo'; font-weight:800; text-transform:uppercase;
  font-size:clamp(24px,3.6vw,44px); line-height:1.15; max-width:20ch; margin:0 auto;
}
.tagline p em{ font-style:normal; background:var(--safety); padding:0 10px; }

/* ---------- CATEGORY TILES (solo CSS) ---------- */
.cat-tile-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.cat-tile{
  position:relative; display:flex; flex-direction:column; justify-content:flex-end; gap:7px;
  min-height:250px; padding:28px; border-radius:2px; overflow:hidden; color:#fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(245,196,0,.15), transparent 48%),
    linear-gradient(148deg, #1D1D1B 0%, #101010 62%);
  border:1px solid rgba(255,255,255,.07);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cat-tile::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--safety);
  transform:scaleY(0); transform-origin:top; transition:transform .28s ease;
}
.cat-tile:hover{ transform:translateY(-5px); border-color:rgba(245,196,0,.55); box-shadow:0 20px 44px rgba(0,0,0,.35); }
.cat-tile:hover::before{ transform:scaleY(1); }
.cat-num{
  position:absolute; top:16px; right:20px; font-family:'Archivo'; font-weight:900; font-size:66px; line-height:1;
  color:transparent; -webkit-text-stroke:1.3px rgba(255,255,255,.15); transition:-webkit-text-stroke-color .2s;
}
.cat-tile:hover .cat-num{ -webkit-text-stroke-color:rgba(245,196,0,.55); }
.cat-tile h3{ font-size:21px; }
.cat-sub{ font-family:'Space Mono'; font-size:11px; letter-spacing:.05em; color:var(--safety); }
.cat-go{
  margin-top:10px; font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em;
  opacity:.5; transition:opacity .2s ease, color .2s ease;
}
.cat-tile:hover .cat-go{ opacity:1; color:var(--safety); }
@media(max-width:860px){ .cat-tile-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .cat-tile-grid{ grid-template-columns:1fr; } .cat-tile{ min-height:190px; } }

/* ---------- PRODUCT CARDS ---------- */
.prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.prod-grid.cols-5{ grid-template-columns:repeat(5,1fr); }
.prod-card{
  background:#fff; border:1px solid var(--line); border-radius:2px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease;
  position:relative;
}
.prod-card:hover{ transform:translateY(-5px); box-shadow:0 20px 40px rgba(16,16,16,.12); }
.prod-img{ aspect-ratio:3/4; overflow:hidden; background:#fff; position:relative; }
.prod-img img, .prod-img svg{ width:100%; height:100%; object-fit:contain; padding:8px; transition:transform .45s ease; }
.prod-card:hover .prod-img img, .prod-card:hover .prod-img svg{ transform:scale(1.06); }
.prod-badge{
  position:absolute; top:12px; left:12px; z-index:2; background:var(--safety); color:var(--ink);
  font-family:'Space Mono'; font-size:10px; font-weight:700; letter-spacing:0.06em;
  padding:5px 9px; border-radius:2px; text-transform:uppercase;
}
.prod-info{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.prod-info h3{ font-family:'Inter'; font-weight:600; font-size:14px; text-transform:none; letter-spacing:0; line-height:1.35; }
.prod-meta{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; gap:8px; }
.prod-price{ font-family:'Space Mono'; font-weight:700; font-size:16px; }
.add-btn{
  border:1.5px solid var(--ink); background:#fff; color:var(--ink); border-radius:2px;
  font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.04em;
  padding:9px 13px; transition:background .15s, color .15s;
}
.add-btn:hover{ background:var(--ink); color:var(--safety); }
@media(max-width:1080px){ .prod-grid, .prod-grid.cols-5{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px){ .prod-grid, .prod-grid.cols-5{ grid-template-columns:repeat(2,1fr); } }

/* ---------- PAGE HERO interior ---------- */
.page-hero{
  background:
    radial-gradient(ellipse at 88% -30%, rgba(245,196,0,.18), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 90px),
    var(--ink);
  color:var(--paper); padding:88px 0 68px; position:relative; overflow:hidden;
}
.page-hero::after{
  content:attr(data-ghost); position:absolute; right:-14px; bottom:-30px;
  font-family:'Archivo'; font-weight:900; text-transform:uppercase; letter-spacing:-0.02em;
  font-size:clamp(80px,15vw,200px); line-height:1; white-space:nowrap;
  color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.09); pointer-events:none;
}
.breadcrumb{ font-family:'Space Mono'; font-size:12px; color:#9A9A94; letter-spacing:0.06em; margin-bottom:16px; }
.breadcrumb a:hover{ color:var(--safety); }
.page-hero h1{ font-size:clamp(36px,5vw,64px); font-weight:900; }
.page-hero p{ color:#D9D9D4; max-width:600px; margin-top:16px; font-size:16px; }

/* ---------- HERO SPLIT (nosotros / corporativo) ---------- */
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; min-height:560px; background:var(--ink); color:#fff; }
.hero-copy{ padding:80px 28px 80px 0; display:flex; flex-direction:column; justify-content:center; max-width:600px; margin-left:auto; }
.hero-copy .eyebrow{ color:var(--safety); }
.hero-copy h1{ font-size:clamp(38px,5vw,62px); font-weight:900; margin-bottom:20px; }
.hero-copy h1 em{ font-style:normal; color:var(--safety); }
.hero-copy p{ color:#E0E0DA; font-size:17px; max-width:460px; margin-bottom:32px; }
.hero-photo{ position:relative; overflow:hidden; }
.hero-photo img, .hero-photo svg{ width:100%; height:100%; object-fit:cover; }
@media(max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-copy{ margin:0; max-width:none; padding:56px 28px 44px; }
  .hero-photo{ height:340px; }
}

/* ---------- TIENDA ---------- */
.shop-layout{ display:grid; grid-template-columns:250px 1fr; gap:44px; align-items:start; }
.filters{ border:1px solid var(--line); background:#fff; border-radius:2px; padding:24px; position:sticky; top:96px; }
.filters h4{ font-family:'Space Mono'; font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--steel); margin-bottom:14px; }
.filter-group{ margin-bottom:26px; }
.filter-opt{ display:flex; align-items:center; gap:9px; font-size:13.5px; margin-bottom:10px; cursor:pointer; }
.filter-opt input{ accent-color:var(--ink); width:15px; height:15px; }
.toolbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:24px; flex-wrap:wrap; }
.toolbar select{
  border:1.5px solid var(--line); padding:10px 14px; font-family:'Inter'; font-size:13px;
  border-radius:2px; background:#fff;
}
.empty-msg{ padding:60px 20px; text-align:center; color:var(--steel); border:1.5px dashed var(--line); border-radius:2px; }
@media(max-width:900px){ .shop-layout{ grid-template-columns:1fr; } .filters{ position:static; } }

/* ---------- BANNER CTA ---------- */
.corp{ background:var(--ink); color:var(--paper); position:relative; overflow:hidden; }
.corp .eyebrow{ color:var(--safety); }
.corp-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:56px; align-items:center; }
.corp-copy h2{ font-size:clamp(30px,4vw,46px); margin-bottom:18px; }
.corp-copy p{ color:#D9D9D4; max-width:480px; margin-bottom:28px; }
.corp-list{ list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.corp-list li{ display:flex; align-items:center; gap:12px; font-weight:500; }
.check{
  width:24px; height:24px; border-radius:50%; background:var(--safety); color:var(--ink);
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0;
}
.corp-photo{ border-radius:2px; overflow:hidden; }
.corp-photo img, .corp-photo svg{ width:100%; height:100%; object-fit:cover; }
@media(max-width:860px){ .corp-grid{ grid-template-columns:1fr; } .corp-photo{ order:-1; } }

/* ---------- STATS ---------- */
.stats-row{ display:flex; border:1px solid var(--line); border-radius:2px; overflow:hidden; background:#fff; }
.stat{ flex:1; text-align:center; padding:32px 14px; border-right:1px solid var(--line); }
.stat:last-child{ border-right:none; }
.stat b{ display:block; font-family:'Archivo'; font-weight:900; font-size:36px; }
.stat span{ font-size:12.5px; color:var(--steel); }
@media(max-width:640px){ .stats-row{ flex-wrap:wrap; } .stat{ flex:1 1 50%; border-bottom:1px solid var(--line); } }

/* ---------- MV CARDS ---------- */
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.mv-card{ background:#fff; border:1px solid var(--line); border-top:5px solid var(--safety); padding:36px; border-radius:2px; }
.mv-card h3{ font-size:21px; margin:10px 0 12px; }
.mv-card p{ color:var(--steel); font-size:14.5px; }
@media(max-width:760px){ .mv-grid{ grid-template-columns:1fr; } }

/* ---------- TRUST / INFO ---------- */
.trust{ background:var(--concrete); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:38px 0; }
.trust .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.trust-item{ display:flex; align-items:center; gap:12px; flex:1; min-width:220px; }
.trust-item .ic{ width:38px; height:38px; border-radius:50%; background:var(--ink); color:var(--safety); display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.trust-item b{ display:block; font-size:13.5px; }
.trust-item span{ font-size:12px; color:var(--steel); }
.info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:52px; }
.info-card{ border:1px solid var(--line); background:#fff; border-radius:2px; padding:28px; transition:transform .18s; }
.info-card:hover{ transform:translateY(-4px); }
.info-card .ic{ width:42px; height:42px; border-radius:50%; background:var(--ink); color:var(--safety); display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-size:17px; }
.info-card h4{ font-family:'Space Mono'; font-size:11px; letter-spacing:0.1em; color:var(--steel); margin-bottom:8px; }
.info-card p{ font-size:15px; font-weight:600; }
.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
@media(max-width:860px){ .info-grid{ grid-template-columns:1fr; } .contact-layout{ grid-template-columns:1fr; } }

/* ---------- FORMS ---------- */
.form-card{ background:#fff; border:1px solid var(--line); border-radius:2px; padding:42px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-row.single{ grid-template-columns:1fr; }
.field label{ display:block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:8px; }
.field label .req{ color:#C2411B; }
.field input, .field select, .field textarea{
  width:100%; border:1.5px solid var(--line); border-radius:2px; padding:13px 14px; font-size:14px;
  font-family:'Inter'; background:#fff; color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--ink); }
.field textarea{ resize:vertical; min-height:110px; }
.field-file{
  display:block; border:1.5px dashed var(--line); border-radius:2px; padding:24px; text-align:center; cursor:pointer;
  transition:border-color .15s ease; font-size:14px;
}
.field-file:hover{ border-color:var(--ink); }
.field-file span{ display:block; font-size:12.5px; color:var(--steel); margin-top:6px; }
.form-ok{
  display:none; background:#EAF7EC; border:1.5px solid #2E7D32; color:#1B5E20;
  padding:16px 18px; border-radius:2px; font-size:14px; margin-top:16px;
}
.form-ok.show{ display:block; }
.step-pill{
  display:inline-flex; align-items:center; gap:8px; font-family:'Space Mono'; font-size:11px;
  letter-spacing:0.07em; text-transform:uppercase; background:#fff; border:1px solid var(--line); padding:8px 14px; border-radius:100px; margin-bottom:18px;
}
.step-pill b{ background:var(--ink); color:var(--safety); width:19px; height:19px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:10px; }

/* ---------- FAQ ---------- */
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  padding:24px 0; display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:'Archivo'; font-weight:700; font-size:17px; cursor:pointer; list-style:none; text-transform:none;
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-q .plus{ font-family:'Space Mono'; font-size:20px; color:var(--ink); background:var(--safety); width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .2s ease; }
.faq-item[open] .plus{ transform:rotate(45deg); }
.faq-a{ padding:0 0 24px; color:var(--steel); font-size:14.5px; max-width:660px; }
.faq-a a{ text-decoration:underline; color:var(--ink); }

/* ---------- FOOTER ---------- */
footer{ background:var(--ink); color:var(--paper); padding:70px 0 26px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:40px; margin-bottom:52px; }
.foot-brand .logo-text{ color:var(--paper); }
.foot-brand p{ color:#BFBFB9; font-size:13.5px; margin:16px 0 20px; max-width:270px; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid #3D3D3A;
  display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700;
  transition:background .15s ease, border-color .15s ease, color .15s;
}
.social-row a:hover{ background:var(--safety); border-color:var(--safety); color:var(--ink); }
.foot-col h4{ font-family:'Space Mono'; font-size:11.5px; letter-spacing:0.12em; color:#8A8A85; margin-bottom:18px; }
.foot-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.foot-col a{ font-size:14px; color:#D9D9D4; }
.foot-col a:hover{ color:var(--safety); }
.news-form{ display:flex; margin-top:14px; border:1px solid #3D3D3A; border-radius:2px; overflow:hidden; }
.news-form input{ flex:1; background:transparent; border:none; padding:13px 14px; color:var(--paper); font-size:13px; font-family:'Inter'; min-width:0; }
.news-form input::placeholder{ color:#8A8A85; }
.news-form button{ background:var(--safety); color:var(--ink); border:none; padding:0 18px; font-weight:800; font-size:12.5px; text-transform:uppercase; }
.news-ok{ display:none; color:var(--safety); font-size:13px; margin-top:10px; font-family:'Space Mono'; }
.news-ok.show{ display:block; }
.foot-bottom{
  border-top:1px solid #2A2A28; padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color:#8A8A85;
}
.pay-icons{ display:flex; gap:8px; }
.pay-icons span{ font-family:'Space Mono'; font-size:9px; border:1px solid #3D3D3A; border-radius:2px; padding:5px 8px; letter-spacing:0.05em; }
@media(max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .foot-grid{ grid-template-columns:1fr; } }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:70;
  width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px rgba(0,0,0,0.3); transition:transform .15s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; fill:#fff; }

/* ---------- CART DRAWER ---------- */
.overlay{ position:fixed; inset:0; background:rgba(16,16,16,.55); z-index:90; opacity:0; pointer-events:none; transition:opacity .25s; }
.overlay.show{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(420px, 100%); background:var(--paper); z-index:95;
  transform:translateX(100%); transition:transform .3s ease; display:flex; flex-direction:column;
  box-shadow:-20px 0 50px rgba(0,0,0,.2);
}
.drawer.show{ transform:translateX(0); }
.drawer-head{
  display:flex; align-items:center; justify-content:space-between; padding:20px 24px;
  border-bottom:1px solid var(--line); flex-shrink:0;
}
.drawer-head h3{ font-size:18px; display:flex; align-items:center; gap:8px; }
.drawer-close{
  display:flex; align-items:center; justify-content:center; width:34px; height:34px;
  background:none; border:none; border-radius:50%; font-size:20px; line-height:1; color:var(--ink);
  transition:background .15s ease;
}
.drawer-close:hover{ background:var(--concrete); }
.drawer-items{ flex:1; overflow-y:auto; padding:18px 24px; display:flex; flex-direction:column; gap:14px; }

.cart-item{
  display:grid; grid-template-columns:56px 1fr; gap:14px;
  border:1px solid var(--line); background:#fff; border-radius:4px; padding:12px;
  transition:border-color .15s ease;
}
.cart-item:hover{ border-color:#cfcfc8; }
.cart-item .ci-img{ width:56px; height:70px; background:var(--concrete); border-radius:3px; overflow:hidden; flex-shrink:0; align-self:start; }
.cart-item .ci-img img{ width:100%; height:100%; object-fit:cover; }
.ci-body{ display:flex; flex-direction:column; gap:8px; min-width:0; }
.ci-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:8px; }
.cart-item h5{
  font-family:'Inter'; font-size:13px; font-weight:600; text-transform:none; line-height:1.35;
}
.ci-variant{ display:block; color:var(--steel); font-weight:400; font-size:11.5px; margin-top:2px; }
.cart-item .ci-price{ font-family:'Space Mono'; font-size:12.5px; font-weight:700; white-space:nowrap; }
.ci-bottom{ display:flex; align-items:center; justify-content:space-between; gap:8px; }

.qty-ctl{
  display:inline-flex; align-items:stretch; border:1.5px solid var(--line); border-radius:100px;
  overflow:hidden; height:28px;
}
.qty-ctl button{
  display:flex; align-items:center; justify-content:center; width:28px; height:100%;
  border:none; background:#fff; font-weight:700; font-size:14px; line-height:1; color:var(--ink);
  transition:background .15s ease;
}
.qty-ctl button:hover{ background:var(--concrete); }
.qty-ctl b{
  display:flex; align-items:center; justify-content:center; font-family:'Space Mono'; font-size:12.5px;
  min-width:24px; border-left:1px solid var(--line); border-right:1px solid var(--line);
}
.ci-remove{
  display:flex; align-items:center; justify-content:center; width:28px; height:28px;
  background:none; border:none; color:var(--steel); font-size:14px; border-radius:50%;
  transition:background .15s ease, color .15s ease; flex-shrink:0;
}
.ci-remove:hover{ background:#FBDCD8; color:#A6291B; }

.drawer-empty{ text-align:center; color:var(--steel); padding:60px 20px; }
.drawer-foot{ border-top:1px solid var(--line); padding:20px 24px; flex-shrink:0; }
.drawer-total{ display:flex; justify-content:space-between; align-items:baseline; font-family:'Space Mono'; font-weight:700; font-size:18px; margin-bottom:16px; }
.drawer-total span:first-child{ font-family:'Inter'; font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:.04em; color:var(--steel); }
.drawer-note{ font-size:12px; color:var(--steel); text-align:center; margin-top:10px; }

/* ---------- SEARCH OVERLAY ---------- */
.search-panel{
  position:fixed; top:0; left:0; right:0; background:var(--ink); z-index:95; padding:34px 0;
  transform:translateY(-100%); transition:transform .3s ease;

}
.search-panel.show{ transform:translateY(0); }
.search-panel .wrap{ display:flex; gap:14px; align-items:center; }
.search-panel input{
  flex:1; background:transparent; border:none; border-bottom:2px solid var(--safety); color:#fff;
  font-family:'Inter'; font-size:clamp(16px,2vw,22px); font-weight:600; padding:10px 4px; min-width:0;
}
.search-panel input::placeholder{ color:#6b6b66; }
.search-panel input:focus{ outline:none; }
.search-close{
  display:flex; align-items:center; justify-content:center; width:40px; height:40px; flex-shrink:0;
  background:none; border:none; border-radius:50%; color:#fff; font-size:26px; line-height:1;
  transition:background .15s ease;
}
.search-close:hover{ background:rgba(255,255,255,.1); }

/* ---------- TOAST ---------- */
.toast{
  position:fixed; bottom:100px; right:24px; z-index:99; background:var(--ink); color:var(--paper);
  padding:14px 20px; border-left:4px solid var(--safety); border-radius:2px; font-size:14px;
  box-shadow:0 14px 30px rgba(0,0,0,.25); opacity:0; transform:translateY(10px); transition:all .25s;
  pointer-events:none;
}
.toast.show{ opacity:1; transform:translateY(0); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- ICONOS DE REDES ---------- */
.social-row a svg{ width:17px; height:17px; fill:currentColor; }

/* ---------- CARRUSEL LOGOS CLIENTES ---------- */
.logo-carousel{ display:flex; align-items:center; gap:16px; }
.lc-btn{
  width:46px; height:46px; border-radius:50%; border:none; flex-shrink:0;
  background:#55554F; color:#fff; font-size:24px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition:background .15s ease, transform .15s ease;
}
.lc-btn:hover{ background:var(--ink); transform:scale(1.06); }
.lc-viewport{ overflow-x:auto; scroll-behavior:smooth; flex:1; scrollbar-width:none; }
.lc-viewport::-webkit-scrollbar{ display:none; }
.lc-track{ display:flex; }
.lc-item{
  flex:0 0 33.333%; display:flex; align-items:center; justify-content:center;
  height:180px; padding:14px 30px;
}
.lc-item img{ max-height:135px; max-width:100%; width:auto; object-fit:contain; }
@media(max-width:760px){ .lc-item{ flex:0 0 100%; height:150px; } .lc-item img{ max-height:110px; } } }

/* ---------- BLEND: fundir imagen con fondo oscuro ---------- */
.blend-dark{ position:relative; }
.blend-dark::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse at center, transparent 40%, var(--blend,#141414) 100%);
}
.blend-dark img{ opacity:.94; }

/* ---------- MARCA "EL ROBLE" (tipografía registrada) ---------- */
.brand{ font-family:'Zilla Slab', serif; font-weight:700; letter-spacing:0; text-transform:none; }
.logo-text .brand{ font-size:23px; }
.foot-brand .logo-text .brand{ font-size:22px; }

/* ---------- LIMPIAR FILTROS (tienda) ---------- */
.clear-search{
  display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.04em; color:var(--ink);
  background:var(--safety); padding:8px 14px; border-radius:100px; transition:transform .15s ease, background .15s;
}
.clear-search:hover{ transform:translateY(-1px); background:#FFD82E; }

/* ---------- FILTRO DE TALLES: acordeón por categoría + chips ---------- */
.talle-acc{ border-bottom:1px solid var(--line); }
.talle-acc:last-child{ border-bottom:none; }
.talle-acc summary{
  cursor:pointer; padding:10px 0; font-size:13px; font-weight:600; color:var(--ink);
  display:flex; align-items:center; gap:6px; list-style:none; user-select:none;
}
.talle-acc summary::-webkit-details-marker{ display:none; }
.talle-acc summary b{ font-weight:400; color:var(--steel); font-size:11px; }
.talle-acc summary::before{
  content:'+'; font-family:'Space Mono'; color:var(--steel); width:14px; flex-shrink:0;
  transition:transform .15s ease;
}
.talle-acc[open] summary::before{ content:'−'; }
.talle-chips{ display:grid; grid-template-columns:repeat(auto-fill, minmax(42px, 1fr)); gap:8px; padding:4px 0 16px; }
.talle-chip{ position:relative; cursor:pointer; }
.talle-chip input{ position:absolute; inset:0; opacity:0; margin:0; cursor:pointer; }
.talle-chip span{
  display:flex; align-items:center; justify-content:center; height:38px;
  border:1.5px solid var(--line); border-radius:4px; font-size:12.5px;
  font-family:'Space Mono'; color:var(--ink); background:#fff;
  transition:background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.talle-chip input:checked + span{ background:var(--ink); color:#fff; border-color:var(--ink); }
.talle-chip input:focus-visible + span{ outline:2px solid var(--safety); outline-offset:1px; }
.talle-chip:hover span{ border-color:var(--ink); transform:translateY(-1px); }

/* ---------- PÁGINA DE DETALLE DE PRODUCTO (PDP) ---------- */
.pdp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.pdp-gallery{ position:sticky; top:96px; }
.pdp-main-img{
  aspect-ratio:6/7; background:#fff; border-radius:4px; overflow:hidden;
  border:1px solid var(--line);
}
.pdp-main-img img{ width:100%; height:100%; object-fit:contain; padding:20px; }
.pdp-thumbs{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.pdp-thumb{
  width:64px; height:78px; border:2px solid transparent; border-radius:4px; overflow:hidden;
  padding:0; cursor:pointer; opacity:.65; transition:opacity .15s ease, border-color .15s ease;
  background:#fff;
}
.pdp-thumb img{ width:100%; height:100%; object-fit:contain; padding:4px; }
.pdp-thumb:hover{ opacity:1; }
.pdp-thumb.active{ opacity:1; border-color:var(--ink); }

.pdp-info{ padding-top:4px; }
.pdp-title{
  font-size:clamp(26px,3vw,36px); margin:10px 0 16px; text-transform:none;
  font-family:'Archivo'; font-weight:800;
}
.pdp-price{ font-family:'Space Mono'; font-weight:700; font-size:26px; margin-bottom:10px; }
.pdp-stock{ margin-bottom:22px; font-size:13px; font-weight:600; }
.pdp-stock-ok{ color:#1F7A32; }
.pdp-stock-low{ color:#8A6300; }
.pdp-stock-zero{ color:#A6291B; }

.pdp-field{ margin-bottom:20px; }
.pdp-field label{
  display:block; font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em;
  color:var(--steel); margin-bottom:9px;
}
.pdp-chips{ display:flex; flex-wrap:wrap; gap:10px; max-width:460px; }
.pdp-chip{
  display:inline-flex; align-items:center; justify-content:center; white-space:nowrap;
  min-width:48px; height:48px; padding:0 16px; border:1.5px solid var(--line); border-radius:5px;
  background:#fff; font-family:'Space Mono'; font-weight:700; font-size:13.5px; color:var(--ink); cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease, transform .1s ease, box-shadow .15s ease;
}
.pdp-chip:hover{ border-color:var(--ink); transform:translateY(-1px); }
.pdp-chip.active{
  background:var(--ink); color:#fff; border-color:var(--ink);
  box-shadow:0 0 0 2px var(--ink), 0 4px 10px rgba(16,16,16,.22);
}
.pdp-chip:disabled{ opacity:.32; text-decoration:line-through; cursor:not-allowed; transform:none; }
.pdp-chip:disabled:hover{ border-color:var(--line); transform:none; }

.pdp-qty-row{ display:flex; gap:12px; align-items:stretch; margin:26px 0 12px; }
.pdp-qty{ height:auto; }
.pdp-qty button{ width:40px; font-size:17px; }
.pdp-qty b{ min-width:36px; font-size:14px; }
.pdp-qty-row .btn{ height:auto; }
.pdp-note{ font-size:12.5px; color:var(--steel); margin-bottom:30px; }

.pdp-accordion{ border-top:1px solid var(--line); }
.pdp-accordion details{ border-bottom:1px solid var(--line); }
.pdp-accordion summary{
  padding:18px 0; cursor:pointer; font-family:'Archivo'; font-weight:700; font-size:14.5px;
  text-transform:uppercase; letter-spacing:.03em; list-style:none; display:flex; justify-content:space-between; align-items:center;
}
.pdp-accordion summary::-webkit-details-marker{ display:none; }
.pdp-accordion summary::after{ content:'+'; font-family:'Space Mono'; color:var(--steel); font-size:18px; }
.pdp-accordion details[open] summary::after{ content:'−'; }
.pdp-acc-body{ padding:0 0 20px; color:var(--steel); font-size:14px; line-height:1.6; }
.pdp-specs{ width:100%; border-collapse:collapse; }
.pdp-specs td{ padding:8px 0; border-bottom:1px dashed var(--line); font-size:13.5px; }
.pdp-specs td:first-child{ color:var(--steel); width:45%; }
.pdp-specs td:last-child{ font-weight:600; color:var(--ink); }

.prod-title-link:hover h3{ text-decoration:underline; }

@media(max-width:860px){
  .pdp-grid{ grid-template-columns:1fr; gap:28px; }
  .pdp-gallery{ position:static; }
}

/* ---------- CHECKOUT ---------- */
.checkout-steps{ display:flex; align-items:center; gap:10px; font-size:12px; color:var(--steel); }
.checkout-steps .step{ padding:5px 10px; border-radius:100px; }
.checkout-steps .step.active{ background:var(--ink); color:#fff; font-weight:700; }
.checkout-steps .step.done{ color:var(--ink); font-weight:600; }
.checkout-steps .step-sep{ opacity:.4; }
@media(max-width:860px){ .checkout-steps{ display:none; } }

.checkout-grid{ display:grid; grid-template-columns:1fr 380px; gap:32px; align-items:start; }
@media(max-width:900px){ .checkout-grid{ grid-template-columns:1fr; } }

.co-card{ background:#fff; border:1px solid var(--line); border-radius:4px; padding:26px; margin-bottom:18px; }
.co-card h3{
  font-family:'Archivo'; font-weight:800; font-size:14.5px; text-transform:uppercase; letter-spacing:.03em;
  margin-bottom:18px;
}

.co-toggle{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.co-toggle-opt{
  position:relative; flex:1; min-width:140px; padding:13px 14px; border:1.5px solid var(--line); border-radius:4px;
  background:#fff; font-size:13.5px; font-weight:600; color:var(--ink); cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease;
}
.co-toggle-opt:hover{ border-color:var(--ink); }
.co-toggle-opt.active{ background:var(--ink); color:#fff; border-color:var(--ink); }
.co-descuento{
  position:absolute; top:-9px; right:-8px; background:var(--safety); color:var(--ink);
  font-family:'Space Mono'; font-size:10px; font-weight:700; padding:3px 7px; border-radius:100px;
  box-shadow:0 2px 6px rgba(16,16,16,.2);
}
.co-note{ font-size:12.5px; color:var(--steel); background:var(--concrete); padding:12px 14px; border-radius:3px; line-height:1.5; }

.co-summary{ background:#fff; border:1px solid var(--line); border-radius:4px; padding:24px; position:sticky; top:24px; }
.co-summary h3{ font-family:'Archivo'; font-weight:800; font-size:14.5px; text-transform:uppercase; margin-bottom:16px; }
.co-items{ display:flex; flex-direction:column; gap:14px; max-height:340px; overflow-y:auto; margin-bottom:16px; }
.co-item{ display:grid; grid-template-columns:48px 1fr auto; gap:12px; align-items:center; }
.co-item-img{ position:relative; width:48px; height:60px; background:var(--concrete); border-radius:3px; overflow:hidden; }
.co-item-img img{ width:100%; height:100%; object-fit:cover; }
.co-item-qty{
  position:absolute; top:-6px; right:-6px; background:var(--ink); color:#fff; font-family:'Space Mono';
  font-size:10px; font-weight:700; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.co-item-body h5{ font-size:12.5px; font-weight:600; line-height:1.3; }
.co-item-price{ font-size:12.5px; font-weight:700; white-space:nowrap; }
.co-total-row{
  display:flex; justify-content:space-between; align-items:baseline; border-top:1px solid var(--line);
  padding-top:14px; font-weight:700; font-size:18px;
}

/* ---------- ZONA DE ARRASTRE DE ARCHIVOS (dropzone inmersiva) ---------- */
.dropzone{
  border:2px dashed var(--line); border-radius:6px; padding:36px 20px; text-align:center;
  cursor:pointer; transition:border-color .18s ease, background .18s ease, transform .1s ease;
  background:var(--paper);
}
.dropzone:hover{ border-color:var(--ink); background:var(--concrete); }
.dropzone.drag-active{
  border-color:var(--safety); background:#FFF9E0; transform:scale(1.01);
  box-shadow:0 0 0 4px rgba(245,196,0,.15);
}
.dropzone-icon{ font-size:34px; margin-bottom:10px; transition:transform .2s ease; }
.dropzone.drag-active .dropzone-icon{ transform:scale(1.15) translateY(-2px); }
.dropzone-title{ font-weight:700; font-size:14.5px; margin-bottom:4px; }
.dropzone-sub{ font-size:12.5px; color:var(--steel); }

.file-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(96px, 1fr)); gap:12px; margin-top:14px;
}
.file-thumb{
  position:relative; aspect-ratio:1/1; border:1px solid var(--line); border-radius:5px; overflow:hidden;
  background:var(--concrete); animation:filePop .2s ease;
}
@keyframes filePop{ from{ opacity:0; transform:scale(.85); } to{ opacity:1; transform:scale(1); } }
.file-thumb img{ width:100%; height:100%; object-fit:cover; }
.file-thumb .file-icon{
  width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; font-size:26px; color:var(--steel);
}
.file-thumb .file-icon span{ font-family:'Space Mono'; font-size:9.5px; text-transform:uppercase; font-weight:700; padding:0 6px; text-align:center; word-break:break-all; }
.file-thumb .file-remove{
  position:absolute; top:5px; right:5px; width:22px; height:22px; border-radius:50%;
  background:rgba(16,16,16,.75); color:#fff; border:none; display:flex; align-items:center; justify-content:center;
  font-size:13px; line-height:1; cursor:pointer; transition:background .15s ease, transform .15s ease;
}
.file-thumb .file-remove:hover{ background:#A6291B; transform:scale(1.1); }
.file-thumb .file-name{
  position:absolute; left:0; right:0; bottom:0; background:rgba(16,16,16,.72); color:#fff;
  font-size:10px; padding:4px 6px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

/* ---------- LISTA DE DESCRIPCIÓN DEL PRODUCTO ---------- */
.pdp-desc-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.pdp-desc-list li{
  position:relative; padding-left:20px; color:var(--steel); font-size:14px; line-height:1.55;
}
.pdp-desc-list li::before{
  content:''; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; background:var(--safety);
}
