/* ===========================================================
   Catálogo Premium — estilos base
   Paleta: negro #121216 / naranja #FF6A00
=========================================================== */

:root{
  --bg: #121216;
  --bg-elev-1: #18181d;
  --bg-elev-2: #1f1f26;
  --bg-elev-3: #26262e;
  --line: #2c2c35;
  --line-soft: #232329;
  --text: #f4f4f6;
  --text-dim: #a9a9b3;
  --text-mute: #75757f;
  --orange: #FF6A00;
  --orange-light: #FF8A3D;
  --orange-dim: #b34c00;
  --orange-glow: rgba(255,106,0,0.35);
  --success: #3ddc84;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-lift: 0 20px 45px -20px rgba(0,0,0,0.65);
  --shadow-soft: 0 10px 25px -12px rgba(0,0,0,0.55);
  --ease: cubic-bezier(.22,.9,.32,1);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ display:block; max-width:100%; }

a{ color:inherit; text-decoration:none; }

button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }

::selection{ background: var(--orange); color:#121216; }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--bg-elev-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--orange-dim); }

/* ---------- layout helpers ---------- */
.container{
  width:100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom: 40px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--orange);
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background: var(--orange);
}

.section-heading h2{
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin:0;
  letter-spacing:-0.02em;
}

.section-heading p{
  color: var(--text-dim);
  margin:0;
  max-width:560px;
  font-size:15px;
  line-height:1.6;
}

/* =========================================================
   NOISE / GRAIN OVERLAY
========================================================= */
.grain{
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index: 999;
  opacity:.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   PRELOADER
========================================================= */
#preloader{
  position:fixed; inset:0; z-index:2000;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.hidden{ opacity:0; visibility:hidden; }
.preloader-mark{
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color: var(--text-dim);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.preloader-bar{
  width:180px; height:2px;
  background: var(--line);
  position:relative;
  overflow:hidden;
  border-radius: 2px;
}
.preloader-bar::after{
  content:"";
  position:absolute; inset:0 100% 0 0;
  background: var(--orange);
  animation: loadbar 1.1s var(--ease) forwards;
}
@keyframes loadbar{ to{ inset:0 0 0 0; } }

/* =========================================================
   CUSTOM CURSOR
========================================================= */
.cursor-dot, .cursor-ring{
  position: fixed;
  top:0; left:0;
  pointer-events:none;
  z-index: 1500;
  border-radius:50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot{
  width:6px; height:6px;
  background: var(--orange);
}
.cursor-ring{
  width:34px; height:34px;
  border:1px solid rgba(255,106,0,.5);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.hovering{
  width:56px; height:56px;
  background: rgba(255,106,0,.08);
  border-color: var(--orange);
}
@media (hover:none), (pointer:coarse){
  .cursor-dot, .cursor-ring{ display:none; }
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar{
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  font-size:12px;
  color: var(--text-mute);
  letter-spacing:.03em;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 8px 24px;
  max-width:1280px;
  margin:0 auto;
  flex-wrap:wrap;
  gap:6px;
}
.topbar span b{ color: var(--orange-light); font-weight:600; }

/* =========================================================
   HEADER / NAV
========================================================= */
header.site-header{
  position: sticky;
  top:0;
  z-index: 900;
  background: rgba(18,18,22,0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
header.site-header.scrolled{
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.8);
}
.nav-inner{
  max-width:1280px;
  margin:0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:20px;
  letter-spacing:-0.01em;
}
.logo .mark{
  width:36px; height:36px;
  border-radius:10px;
  background: linear-gradient(145deg, var(--orange), #ff8a3d);
  display:flex; align-items:center; justify-content:center;
  color:#121216;
  font-weight:800;
  font-size:16px;
  box-shadow: 0 8px 20px -6px var(--orange-glow);
}
.logo small{
  display:block;
  font-family: var(--font-body);
  font-weight:400;
  font-size:10px;
  letter-spacing:.2em;
  color: var(--text-mute);
  text-transform:uppercase;
  margin-top:1px;
}

nav.main-nav{
  display:flex;
  align-items:center;
  gap:2px;
}
nav.main-nav > .nav-item{
  position:relative;
}
nav.main-nav > .nav-item > a, .nav-btn{
  display:flex;
  align-items:center;
  gap:6px;
  padding: 10px 16px;
  font-size:14px;
  font-weight:500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
nav.main-nav > .nav-item > a:hover,
nav.main-nav > .nav-item.open > a,
.nav-btn:hover{
  color: var(--text);
  background: var(--bg-elev-2);
}
.chev{
  width:9px; height:9px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  margin-top:-3px;
}
.nav-item.open .chev{ transform: rotate(225deg); margin-top:3px; }

.mega{
  position:absolute;
  top: calc(100% + 12px);
  left:50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  background: var(--bg-elev-2);
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  box-shadow: var(--shadow-lift);
}
.nav-item.open .mega{
  opacity:1;
  visibility:visible;
  transform: translateX(-50%) translateY(0);
  pointer-events:auto;
}
.mega a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius: var(--radius-sm);
  font-size:13.5px;
  color: var(--text-dim);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.mega a:hover{
  background: var(--bg-elev-3);
  color: var(--orange-light);
  transform: translateX(3px);
}
.mega a .dot{
  width:6px; height:6px; border-radius:50%;
  background: var(--orange);
  flex-shrink:0;
  opacity:.7;
}
.mega .soon{
  opacity:.55;
  cursor: default;
}
.mega .soon:hover{ transform:none; background:none; color: var(--text-dim); }
.mega .tag{
  margin-left:auto;
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--orange);
  border:1px solid var(--orange-dim);
  padding:2px 6px;
  border-radius:999px;
}

.nav-actions{ display:flex; align-items:center; gap:10px; }

.search-toggle, .burger{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: var(--radius-sm);
  background: var(--bg-elev-2);
  border:1px solid var(--line);
  transition: background .2s, border-color .2s;
}
.search-toggle:hover, .burger:hover{ border-color: var(--orange-dim); }

.btn-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: var(--orange);
  color:#171308;
  font-weight:700;
  font-size:13.5px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px var(--orange-glow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px var(--orange-glow);
  background: var(--orange-light);
}

.burger{ display:none; flex-direction:column; gap:4px; }
.burger span{ width:16px; height:1.5px; background: var(--text); transition: all .3s var(--ease); }

/* mobile drawer */
.mobile-drawer{
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 380px);
  background: var(--bg-elev-1);
  border-left:1px solid var(--line);
  z-index: 1400;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y:auto;
  padding: 22px;
}
.mobile-drawer.open{ transform: translateX(0); }
.drawer-overlay{
  position:fixed; inset:0; background: rgba(0,0,0,.55);
  z-index:1390; opacity:0; visibility:hidden; transition: opacity .35s var(--ease), visibility .35s;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open{ opacity:1; visibility:visible; }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.drawer-close{ width:36px; height:36px; border-radius:50%; background:var(--bg-elev-3); display:flex; align-items:center; justify-content:center; font-size:18px; }
.drawer-group{ border-bottom:1px solid var(--line-soft); padding-bottom:12px; margin-bottom:12px; }
.drawer-group > .drawer-cat{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 4px; font-weight:600; font-size:15px;
}
.drawer-sub{
  max-height:0; overflow:hidden; transition: max-height .35s var(--ease);
  display:flex; flex-direction:column;
}
.drawer-group.open .drawer-sub{ max-height:400px; }
.drawer-sub a{
  padding:9px 14px;
  color: var(--text-dim);
  font-size:14px;
  display:flex; align-items:center; gap:8px;
}
.drawer-sub a .dot{ width:5px;height:5px;border-radius:50%;background:var(--orange); opacity:.7; }

/* search overlay */
.search-overlay{
  position: fixed; inset:0; z-index:1600;
  background: rgba(18,18,22,.92);
  backdrop-filter: blur(10px);
  display:flex; align-items:flex-start; justify-content:center;
  padding-top: 12vh;
  opacity:0; visibility:hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.search-overlay.open{ opacity:1; visibility:visible; }
.search-box{ width:min(640px,90vw); }
.search-box input{
  width:100%;
  background:transparent;
  border:none;
  border-bottom: 2px solid var(--line);
  font-size: clamp(22px,4vw,34px);
  color: var(--text);
  padding: 12px 4px;
  font-family: var(--font-display);
  outline:none;
}
.search-box input:focus{ border-color: var(--orange); }
.search-hint{ margin-top:14px; font-size:12px; color: var(--text-mute); letter-spacing:.05em; }
.search-close{
  position:absolute; top:28px; right:28px;
  width:42px; height:42px; border-radius:50%;
  background: var(--bg-elev-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.search-results{ margin-top:26px; display:flex; flex-direction:column; gap:10px; max-height:50vh; overflow:auto; }
.search-result{
  display:flex; align-items:center; gap:14px;
  padding:10px; border-radius:12px;
  background: var(--bg-elev-2);
  border:1px solid var(--line-soft);
}
.search-result img{ width:48px;height:48px;border-radius:8px;object-fit:cover; background:#fff; }
.search-result .info b{ display:block; font-size:14px; }
.search-result .info span{ font-size:12px; color:var(--text-mute); }

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding: 60px 0 80px;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 55% at 82% 18%, rgba(255,106,0,0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(255,106,0,0.10), transparent 60%),
    var(--bg);
  z-index:0;
}
.hero-grid-lines{
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-inner{
  position:relative; z-index:1;
  max-width:1280px; margin:0 auto; padding:0 24px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--bg-elev-2);
  border:1px solid var(--line);
  padding: 7px 14px;
  border-radius:999px;
  font-size:12px;
  color: var(--text-dim);
  margin-bottom:26px;
}
.hero-badge .pulse{
  width:7px;height:7px;border-radius:50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,106,0,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(255,106,0,.55); }
  70%{ box-shadow:0 0 0 10px rgba(255,106,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,106,0,0); }
}
.hero h1{
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height:0.98;
  letter-spacing:-0.03em;
  margin:0 0 22px;
}
.hero h1 em{
  font-style:normal;
  color: var(--orange);
  position:relative;
  display:inline-block;
}
.hero h1 .stroke{
  -webkit-text-stroke: 1.5px var(--text);
  color:transparent;
}
.hero p.lead{
  font-size: clamp(15px,1.6vw,18px);
  color: var(--text-dim);
  max-width: 480px;
  line-height:1.7;
  margin-bottom:34px;
}
.hero-ctas{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.btn-ghost{
  display:inline-flex; align-items:center; gap:10px;
  padding: 13px 4px;
  font-weight:600; font-size:14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: border-color .25s var(--ease), gap .25s var(--ease), color .25s;
}
.btn-ghost:hover{ border-color: var(--orange); color: var(--orange-light); gap:14px; }
.btn-ghost .arrow{ transition: transform .25s var(--ease); }
.btn-ghost:hover .arrow{ transform: translateX(4px); }

.btn-solid{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--orange);
  color:#171308;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700; font-size:15px;
  box-shadow: 0 16px 34px -14px var(--orange-glow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-solid:hover{ transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 40px -14px var(--orange-glow); }

.hero-stats{
  display:flex; gap:34px; margin-top:56px; flex-wrap:wrap;
}
.hero-stats div b{
  font-family: var(--font-display);
  font-size: 30px; display:block; color:var(--text);
}
.hero-stats div span{ font-size:12px; color: var(--text-mute); text-transform:uppercase; letter-spacing:.08em; }

.hero-visual{
  position:relative;
  height: 560px;
  display:flex; align-items:center; justify-content:center;
}
.hero-orbit{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,106,0,.18);
}
.orbit-1{ width:420px; height:420px; animation: spin 40s linear infinite; }
.orbit-2{ width:320px; height:320px; border-style:dashed; animation: spin 60s linear infinite reverse; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.hero-card-stack{ position:relative; width:100%; height:100%; }
.floating-product{
  position:absolute;
  background: var(--bg-elev-2);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lift);
  animation: float 6s ease-in-out infinite;
  width: 190px;
}
.floating-product img{ width:100%; height:150px; object-fit:contain; background:#f4f2ee; border-radius:12px; }
.floating-product .fp-name{ font-size:12.5px; margin-top:10px; font-weight:600; }
.floating-product .fp-cat{ font-size:10.5px; color: var(--orange-light); text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }
.fp-1{ top:0; left:8%; animation-delay:0s; z-index:3; }
.fp-2{ bottom:6%; right:2%; animation-delay:1.2s; width:170px; z-index:2; }
.fp-3{ top:38%; right:22%; animation-delay:2.4s; width:150px; z-index:1; opacity:.85; transform:scale(.92); }
@keyframes float{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-16px); }
}

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: var(--text-mute); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase;
  z-index:2;
}
.scroll-cue .line{ width:1px; height:34px; background: linear-gradient(var(--orange), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ transform: scaleY(0); transform-origin:top;} 50%{ transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{ transform: scaleY(0); transform-origin:bottom;} }

/* =========================================================
   MARQUEE
========================================================= */
.marquee-wrap{
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
  background: var(--bg-elev-1);
  padding: 16px 0;
  overflow:hidden;
  white-space:nowrap;
}
.marquee{
  display:inline-flex;
  animation: marquee 26s linear infinite;
}
.marquee span{
  display:inline-flex; align-items:center; gap:14px;
  font-family: var(--font-display);
  font-size:15px;
  color: var(--text-mute);
  padding: 0 30px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.marquee span b{ color: var(--orange); }
.marquee span::after{ content:"◆"; color: var(--line); margin-left:30px; font-size:10px; }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* =========================================================
   CATEGORY OVERVIEW CARDS
========================================================= */
.cat-overview{ padding: 110px 0 60px; }
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}
.cat-card{
  position:relative;
  border-radius: var(--radius-lg);
  background: var(--bg-elev-1);
  border:1px solid var(--line);
  padding: 28px 22px;
  overflow:hidden;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.cat-card:hover{ transform: translateY(-8px); border-color: var(--orange-dim); }
.cat-card .cc-num{
  position:absolute; top:20px; right:22px;
  font-family: var(--font-display);
  font-size:13px; color: var(--text-mute);
}
.cat-card .cc-icon{
  width:52px;height:52px;
  border-radius:14px;
  background: var(--bg-elev-3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: auto;
  font-size:22px;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.cat-card:hover .cc-icon{ background: var(--orange); transform: rotate(-8deg) scale(1.05); }
.cat-card h3{ font-family: var(--font-display); font-size:22px; margin:18px 0 6px; }
.cat-card p{ color: var(--text-mute); font-size:13px; margin:0 0 14px; line-height:1.6; }
.cat-card .cc-link{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color: var(--orange-light);
}
.cat-card .cc-glow{
  position:absolute; width:220px; height:220px; border-radius:50%;
  background: var(--orange); opacity:0; filter: blur(70px);
  top:-60px; right:-60px; transition: opacity .5s var(--ease);
}
.cat-card:hover .cc-glow{ opacity:.18; }
.cat-card.soon{ opacity:.6; }
.cat-card.soon:hover{ transform:none; }
.badge-soon{
  position:absolute; top:20px; left:22px;
  font-size:9.5px; letter-spacing:.1em; text-transform:uppercase;
  background: var(--bg-elev-3); color: var(--text-dim);
  padding:4px 9px; border-radius:999px; border:1px solid var(--line);
}

/* =========================================================
   FILTER BAR
========================================================= */
.filter-section{ padding: 40px 0 0; }
.filter-bar{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding: 8px;
  background: var(--bg-elev-1);
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 50px;
  position: sticky;
  top: 78px;
  z-index: 80;
  backdrop-filter: blur(10px);
}
.filter-bar::-webkit-scrollbar{ display:none; }
.filter-chip{
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size:13.5px;
  font-weight:600;
  color: var(--text-dim);
  white-space:nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
  flex-shrink:0;
}
.filter-chip:hover{ color: var(--text); }
.filter-chip-deal{ color:#ff8a7a; border:1px solid rgba(226,35,26,.4); }
.filter-chip-deal:hover{ color:#ffb3a6; }
.filter-chip.active{
  background: var(--orange);
  color:#171308;
}
.filter-chip-deal.active{ background:#e2231a; color:#fff; }
.filter-count{
  margin-left:auto;
  font-size:12px;
  color: var(--text-mute);
  padding-right:10px;
  flex-shrink:0;
}

/* =========================================================
   PRODUCT GRID
========================================================= */
.catalog-section{ padding: 20px 0 130px; }
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card{
  background: var(--bg-elev-1);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  opacity:0;
  transform: translateY(24px);
}
.product-card.in-view{ opacity:1; transform:translateY(0); }
.product-card:hover{
  transform: translateY(-8px);
  border-color: var(--orange-dim);
  box-shadow: var(--shadow-lift);
}
.pc-media{
  position:relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg,#f6f4ef,#e9e6df);
  overflow:hidden;
  cursor: pointer;
}
.pc-media img{
  width:100%; height:100%; object-fit:contain;
  padding: 22px;
  transition: transform .6s var(--ease);
}
.product-card:hover .pc-media img{ transform: scale(1.08); }
.pc-tag{
  position:absolute; top:12px; left:12px;
  background: var(--orange);
  color:#171308;
  font-size:10px; font-weight:800; letter-spacing:.05em; text-transform:uppercase;
  padding:5px 10px; border-radius:999px;
}
.pc-tag.alt{ background: var(--bg-elev-3); color: var(--text); border:1px solid var(--line); }
.pc-tag-oos{ background: var(--bg-elev-3); color: var(--text-mute); border:1px solid var(--line); }
.product-card.is-oos{ opacity:.6; }
.product-card.is-oos .pc-media img{ filter:grayscale(.6); }
.product-card.is-oos:hover{ transform:none; box-shadow:none; }
.pc-discount{
  position:absolute; top:12px; right:12px;
  background:#e2231a;
  color:#fff;
  font-size:11px; font-weight:800; letter-spacing:.03em;
  padding:5px 10px; border-radius:999px;
  box-shadow: 0 8px 18px -8px rgba(226,35,26,.6);
}
.pc-price{ display:flex; align-items:baseline; gap:10px; margin-top:2px; }
.pc-price .price-old{ font-size:12.5px; color: var(--text-mute); text-decoration:line-through; }
.pc-price .price-new{ font-family: var(--font-display); font-size:19px; font-weight:700; color: var(--orange-light); }
.pc-quick{
  position:absolute; bottom:12px; right:12px;
  width:38px;height:38px;border-radius:50%;
  background: rgba(18,18,22,.85);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  font-size:16px;
}
.product-card:hover .pc-quick{ opacity:1; transform:translateY(0); }

.pc-body{ padding: 18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.pc-cat{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: var(--orange-light); font-weight:700; }
.pc-name{ font-family: var(--font-display); font-size:16.5px; line-height:1.3; margin:0; }
.pc-desc{ font-size:12.5px; color: var(--text-mute); line-height:1.55; margin:0; flex:1; }
.pc-foot{ display:flex; flex-direction:column; align-items:flex-start; gap:10px; margin-top:8px; }
.pc-brand{ font-size:11.5px; color: var(--text-dim); display:flex; align-items:center; gap:6px; }
.pc-brand .dot{ width:5px;height:5px;border-radius:50%; background: var(--success); }
.pc-actions{ display:flex; align-items:center; gap:8px; width:100%; }
.pc-btn{
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-size:12.5px; font-weight:700; color: var(--text);
  padding: 8px 14px; border-radius:999px; border:1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s;
  flex:1;
}
.pc-btn:hover{ background: var(--orange); border-color: var(--orange); color:#171308; }
.pc-btn-wa{
  color: #25D366;
  border-color: rgba(37,211,102,.35);
  background: rgba(37,211,102,.08);
}
.pc-btn-wa:hover{ background:#25D366; border-color:#25D366; color:#0b1a10; }

/* empty state */
.empty-state{
  grid-column: 1 / -1;
  text-align:center;
  padding: 90px 20px;
  color: var(--text-mute);
}
.empty-state .es-icon{ font-size:40px; margin-bottom:14px; }
.empty-state h4{ font-family: var(--font-display); color: var(--text); font-size:20px; margin:0 0 8px; }

/* =========================================================
   SOON BANNER (Frutos secos)
========================================================= */
.soon-banner{
  margin-top: 40px;
  border-radius: var(--radius-lg);
  border:1px dashed var(--line);
  background: var(--bg-elev-1);
  padding: 50px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.soon-banner::before{
  content:"";
  position:absolute; width:300px; height:300px; border-radius:50%;
  background: var(--orange); opacity:.08; filter:blur(90px);
  top:-100px; right:-40px;
}
.soon-banner .sb-text h3{ font-family: var(--font-display); font-size: 26px; margin:0 0 8px; }
.soon-banner .sb-text p{ color: var(--text-mute); margin:0; max-width:420px; font-size:13.5px; line-height:1.6; }
.soon-badge-lg{
  font-size:11px; letter-spacing:.15em; text-transform:uppercase; font-weight:700;
  color: var(--orange); border:1px solid var(--orange-dim); padding:8px 16px; border-radius:999px;
}

/* =========================================================
   PRODUCT MODAL
========================================================= */
.modal-overlay{
  position: fixed; inset:0; z-index:1700;
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  opacity:0; visibility:hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-box{
  width:min(880px, 100%);
  background: var(--bg-elev-1);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  display:grid;
  grid-template-columns: 1fr 1fr;
  overflow:hidden;
  transform: translateY(30px) scale(.97);
  transition: transform .4s var(--ease);
  max-height:88vh;
}
.modal-overlay.open .modal-box{ transform: translateY(0) scale(1); }
.modal-media{
  background: linear-gradient(160deg,#f6f4ef,#e9e6df);
  display:flex; align-items:center; justify-content:center;
  padding:30px;
}
.modal-media img{ max-height: 420px; object-fit:contain; }
.modal-info{ padding: 36px 34px; display:flex; flex-direction:column; overflow-y:auto; }
.modal-close{
  position:absolute; top:18px; right:18px;
  width:40px;height:40px;border-radius:50%;
  background: var(--bg-elev-3); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  z-index:5;
}
.modal-info .m-cat{ font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; color: var(--orange-light); font-weight:700; margin-bottom:10px; }
.modal-info h2{ font-family: var(--font-display); font-size: clamp(22px,3vw,30px); margin:0 0 14px; line-height:1.15; }
.modal-price{ display:flex; align-items:center; gap:12px; margin:-4px 0 16px; }
.modal-price .price-old{ font-size:14px; color: var(--text-mute); text-decoration:line-through; }
.modal-price .price-new{ font-family: var(--font-display); font-size:26px; font-weight:700; color: var(--orange-light); }
.modal-price .price-off{
  font-size:11.5px; font-weight:800; color:#fff; background:#e2231a;
  padding:4px 10px; border-radius:999px;
}
.modal-price .price-oos{
  font-size:11.5px; font-weight:700; color: var(--text-mute); background: var(--bg-elev-3);
  border:1px solid var(--line); padding:4px 10px; border-radius:999px;
}
.modal-info .m-desc{ color: var(--text-dim); font-size:14.5px; line-height:1.7; margin-bottom:22px; }
.modal-specs{ display:flex; flex-direction:column; gap:0; margin-bottom:26px; border-top:1px solid var(--line-soft); }
.modal-specs .spec-row{ display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--line-soft); font-size:13.5px; }
.modal-specs .spec-row span:first-child{ color: var(--text-mute); }
.modal-specs .spec-row span:last-child{ font-weight:600; }
.modal-cta{ margin-top:auto; display:flex; gap:12px; flex-wrap:wrap; }
.btn-wa{ background:#25D366; color:#fff; box-shadow: 0 16px 34px -14px rgba(37,211,102,.45); }
.btn-wa:hover{ background:#22c05e; color:#fff; }

/* =========================================================
   ABOUT / VALUE PROPS
========================================================= */
.value-section{ padding: 100px 0; background: var(--bg-elev-1); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.value-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
.value-item{ text-align:left; }
.value-item .vi-num{ font-family: var(--font-display); font-size:13px; color: var(--orange); margin-bottom:16px; display:block; }
.value-item h4{ font-family: var(--font-display); font-size:19px; margin:0 0 10px; }
.value-item p{ color: var(--text-mute); font-size:13.5px; line-height:1.65; margin:0; }

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner{
  padding: 110px 0;
  position:relative;
  overflow:hidden;
  text-align:center;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,106,0,.22), transparent 70%);
}
.cta-banner .container{ position:relative; z-index:1; }
.cta-banner h2{
  font-family: var(--font-display);
  font-size: clamp(32px,5.4vw,58px);
  margin:0 0 20px;
  letter-spacing:-0.02em;
}
.cta-banner p{ color: var(--text-dim); max-width:520px; margin:0 auto 36px; font-size:15px; line-height:1.7; }

/* =========================================================
   FOOTER
========================================================= */
footer{
  background: var(--bg-elev-1);
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand p{ color: var(--text-mute); font-size:13.5px; line-height:1.7; margin: 16px 0 20px; max-width:280px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  background: var(--bg-elev-3); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s var(--ease), transform .25s var(--ease);
  font-size:14px;
}
.footer-social a:hover{ background: var(--orange); transform: translateY(-3px); color:#171308; }
.footer-col h5{ font-size:12px; text-transform:uppercase; letter-spacing:.1em; color: var(--text-mute); margin:0 0 18px; }
.footer-col a{ display:block; color: var(--text-dim); font-size:13.5px; margin-bottom:12px; transition: color .2s, transform .2s; }
.footer-col a:hover{ color: var(--orange-light); transform: translateX(3px); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:12px; color: var(--text-mute); flex-wrap:wrap; gap:10px; }

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top{
  position: fixed; right:24px; bottom:24px; z-index:500;
  width:48px;height:48px;border-radius:50%;
  background: var(--orange); color:#171308;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:700;
  box-shadow: 0 14px 28px -10px var(--orange-glow);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-stagger.in-view > *{ transition-delay: calc(var(--i, 0) * 70ms); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:420px; margin-top:20px; }
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(3,1fr); }
  .value-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  nav.main-nav, .nav-actions .btn-cta{ display:none; }
  .burger{ display:flex; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .modal-box{ grid-template-columns:1fr; overflow-y:auto; }
  .modal-media img{ max-height:260px; }
  .filter-bar{ top:70px; overflow-x:auto; justify-content:flex-start; }
  .filter-count{ display:none; }
}

@media (max-width: 560px){
  .cat-grid{ grid-template-columns:1fr; }
  .product-grid{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .hero-stats{ gap:22px; }
  .soon-banner{ padding:34px 22px; }
  .topbar-inner{ justify-content:center; text-align:center; }
}
