/* ==========================================================================
   ZenVapStore · Estilos de la web pública
   Estética: neón cyberpunk (cyan · magenta · violeta) sobre negro, como el logo
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  --bg: #05060a;
  --bg-2: #0a0b12;
  --ink: #eef2ff;
  --muted: #aab2d0;
  --muted-2: #808aa8;

  --cyan: #26e2ff;
  --magenta: #ff2fb0;
  --violet: #a855ff;

  --line: rgba(255, 255, 255, .09);
  --panel: rgba(255, 255, 255, .035);
  --panel-2: rgba(255, 255, 255, .06);

  --grad: linear-gradient(100deg, var(--cyan) 0%, var(--violet) 48%, var(--magenta) 100%);
  --grad-soft: linear-gradient(100deg, rgba(38,226,255,.16), rgba(168,85,255,.16) 50%, rgba(255,47,176,.16));

  --glow-cyan: 0 0 40px rgba(38, 226, 255, .35);
  --glow-mag: 0 0 40px rgba(255, 47, 176, .35);

  --radius: 20px;
  --radius-lg: 28px;
  --maxw: 1200px;

  --font-display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, -apple-system, sans-serif;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* --------------------------------------------------------- Fondo atmósfera */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(38,226,255,.10), transparent 60%),
    radial-gradient(1000px 700px at 90% 0%, rgba(255,47,176,.10), transparent 55%),
    radial-gradient(900px 900px at 50% 120%, rgba(168,85,255,.12), transparent 60%),
    var(--bg);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .32;
  mix-blend-mode: screen; will-change: transform;
}
.blob.b1 { width: 46vw; height: 46vw; left: -8vw; top: -6vw; background: var(--cyan); animation: drift1 24s ease-in-out infinite; }
.blob.b2 { width: 40vw; height: 40vw; right: -6vw; top: 4vw; background: var(--magenta); animation: drift2 28s ease-in-out infinite; }
.blob.b3 { width: 50vw; height: 50vw; left: 25vw; bottom: -22vw; background: var(--violet); animation: drift3 32s ease-in-out infinite; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vw) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-7vw,8vw) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-6vw,-8vw) scale(1.15)} }

/* Grano sutil */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }

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

.h-sec {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 5vw, 54px); line-height: 1.03; letter-spacing: -.01em;
}
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------------------------------------------------------------- Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s ease, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
/* Velo superior para que el nav se lea sobre el hero */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,6,10,.78), rgba(5,6,10,0));
  opacity: 1; transition: opacity .35s;
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: rgba(6, 7, 12, .72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: var(--glow-cyan); }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: .01em; }
.brand b span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: #c7cde4; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px;
  padding: 12px 20px; border-radius: 100px; transition: transform .2s, box-shadow .3s, filter .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #05060a; box-shadow: 0 6px 24px rgba(255,47,176,.28); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 10px 34px rgba(255,47,176,.42); }
.btn-ghost { border: 1px solid var(--line); background: var(--panel); color: var(--ink); }
.btn-ghost:hover { border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.nav-toggle { display: none; font-size: 26px; }

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; padding-top: 150px; padding-bottom: 40px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--line); font-size: 13px; color: var(--muted);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 7.4vw, 92px); line-height: .96; letter-spacing: -.02em; margin-bottom: 22px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; }
.hero-stats .st b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1; }
.hero-stats .st span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }

/* Aro con logo flotante */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 440px; }
.halo {
  position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--cyan), var(--violet), var(--magenta), var(--cyan));
  filter: blur(60px); opacity: .38; animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo {
  position: relative; width: min(410px, 82%); border-radius: 50%;
  box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 70px rgba(168,85,255,.35);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-.5deg)} 50%{transform:translateY(-16px) rotate(.5deg)} }
.spark { position: absolute; border-radius: 50%; background: #fff; filter: blur(.4px); opacity: .8; animation: twinkle 3s infinite; }

/* --------------------------------------------------------------- Marquee */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; overflow: hidden; background: var(--panel); margin-top: 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 44px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-size: 18px; color: var(--muted); display: inline-flex; align-items: center; gap: 44px;
}
.marquee-track span::after { content: "✦"; color: var(--cyan); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- Productos */
.sec-head { max-width: 640px; margin-bottom: 54px; }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 16px; }

.grid-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
  position: relative; border-radius: var(--radius-lg); padding: 28px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column; min-height: 340px;
}
.pcard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; pointer-events: none;
  background: radial-gradient(500px 200px at var(--mx,50%) var(--my,0%), rgba(255,255,255,.08), transparent 60%);
}
/* Enlaces de la tarjeta siempre por encima del brillo */
.pcard-img, .pcard .see { position: relative; z-index: 2; }
.pcard:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.pcard:hover::before { opacity: 1; }
.pcard[data-accent="cyan"] { --a: var(--cyan); }
.pcard[data-accent="magenta"] { --a: var(--magenta); }
.pcard[data-accent="violet"] { --a: var(--violet); }
.pcard .glowline { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--a); box-shadow: 0 0 18px var(--a); opacity: .9; }

/* Imagen del producto dentro de la tarjeta */
.pcard-img {
  position: relative; margin: -28px -28px 20px; height: 210px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--a) 22%, transparent), transparent 70%), #0a0c14;
  display: grid; place-items: center;
}
.pcard-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(10,12,20,.85)); }
.pcard-img .p-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.pcard-img .p-puffs { position: absolute; top: 12px; right: 14px; z-index: 2; }

.pcard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.p-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; padding: 6px 11px; border-radius: 100px;
  background: color-mix(in srgb, var(--a) 18%, transparent); color: var(--a);
  border: 1px solid color-mix(in srgb, var(--a) 40%, transparent);
}
.p-puffs { text-align: right; }
.p-puffs b { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--a); }
.p-puffs span { display: block; font-size: 10px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.pcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -.01em; }
.pcard .tagline { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.pcard .desc { color: var(--muted); font-size: 14px; margin: 16px 0 20px; flex: 1; }

.pcard-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.price .cur { font-size: 16px; color: var(--muted); }
.price .val { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1; }
.price .from { flex-basis: 100%; font-size: 11px; color: var(--muted); display: block; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }

.stock-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.stock-pill .d { width: 8px; height: 8px; border-radius: 50%; }
.stock-pill.in .d { background: #37f5a0; box-shadow: 0 0 8px #37f5a0; }
.stock-pill.out .d { background: #ff5b6b; box-shadow: 0 0 8px #ff5b6b; }

.pcard .see {
  margin-top: 18px; width: 100%; justify-content: center; padding: 13px;
  border-radius: 14px; background: var(--panel-2); border: 1px solid var(--line);
  font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: .2s;
}
.pcard .see:hover { background: color-mix(in srgb, var(--a) 16%, transparent); border-color: var(--a); color: #fff; }

/* --------------------------------------------------------------- Modal */
.modal-back {
  position: fixed; inset: 0; z-index: 100; background: rgba(3,4,8,.72); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s;
}
.modal-back.open { display: flex; opacity: 1; }
.modal {
  width: min(760px, 100%); max-height: 88vh; overflow-y: auto; border-radius: 26px;
  background: linear-gradient(180deg, #0e1019, #090a10); border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0,0,0,.7); transform: translateY(20px) scale(.98); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.modal-back.open .modal { transform: translateY(0) scale(1); }
.modal-hd { position: sticky; top: 0; padding: 26px 28px 20px; background: linear-gradient(180deg, #0e1019, rgba(14,16,25,.6)); border-bottom: 1px solid var(--line); z-index: 2; }
.modal-hd .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-hd h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; }
.modal-hd .sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.modal-price { text-align: right; }
.modal-price b { font-family: var(--font-display); font-size: 34px; }
.modal-close { font-size: 22px; color: var(--muted); width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .2s; }
.modal-close:hover { color: #fff; border-color: #fff; transform: rotate(90deg); }
.modal-body { padding: 24px 28px 30px; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 26px; }
.spec-grid li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); align-items: flex-start; }
.spec-grid li::before { content: "▹"; color: var(--cyan); }

.flav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.flav-head h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.flav-head .legend { font-size: 12px; color: var(--muted); display: flex; gap: 14px; }
.flav-head .legend i { font-style: normal; display: inline-flex; align-items: center; gap: 6px; }
.dot-in, .dot-out { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-in { background: #37f5a0; box-shadow: 0 0 6px #37f5a0; }
.dot-out { background: #ff5b6b; }

.flav-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.flav {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--line); font-size: 13.5px;
}
.flav.out { opacity: .5; }
.flav .fdot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.flav.in .fdot { background: #37f5a0; box-shadow: 0 0 6px #37f5a0; }
.flav.out .fdot { background: #ff5b6b; }
.flav .fname { flex: 1; }
.flav .ftag { font-size: 10px; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.flav-set { grid-column: 1 / -1; }
.flav-set .setname { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.flav-set .contains { font-size: 12.5px; color: var(--muted); margin-top: 6px; padding-left: 18px; }

.modal-buy { margin-top: 26px; padding: 18px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.modal-buy p { font-size: 14px; color: var(--ink); }
.modal-buy p span { color: var(--muted); display: block; font-size: 12.5px; }

/* --------------------------------------------------------------- Cómo comprar */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.buy-card {
  padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line);
  transition: transform .3s, border-color .3s;
}
.buy-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); }
.buy-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 18px; font-size: 24px; }
.buy-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 8px; }
.buy-card p { color: var(--muted); font-size: 14.5px; }

.cta-band {
  margin-top: 46px; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 54px);
  background: var(--grad-soft); border: 1px solid var(--line); text-align: center; position: relative; overflow: hidden;
}
.cta-band h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }

/* --------------------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--line); padding: 54px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer p.about { color: var(--muted); font-size: 14px; max-width: 320px; }
.foot-col h5 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot-bottom p { font-size: 12.5px; color: var(--muted-2); }
.warn18 {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted);
  padding: 7px 13px; border-radius: 100px; border: 1px solid var(--line);
}
.warn18 b { color: var(--magenta); }

/* --------------------------------------------------------------- Age gate */
.age {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px;
  background: rgba(3,4,8,.9); backdrop-filter: blur(14px);
}
.age.hidden { display: none; }
.age-box {
  width: min(440px, 100%); text-align: center; padding: 44px 34px; border-radius: 26px;
  background: linear-gradient(180deg, #0e1019, #090a10); border: 1px solid var(--line); box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.age-box img { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; box-shadow: var(--glow-cyan); }
.age-box h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin-bottom: 10px; }
.age-box p { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.age-actions { display: flex; gap: 12px; }
.age-actions .btn { flex: 1; justify-content: center; padding: 14px; }
.age-legal { font-size: 11.5px; color: var(--muted-2); margin-top: 20px; }

/* --------------------------------------------------------------- Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { order: -1; min-height: 320px; }
  .grid-products { grid-template-columns: 1fr 1fr; }
  .buy-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,9,14,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 10px 24px 20px;
    transform: translateY(-140%); transition: transform .35s; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 12px; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-products { grid-template-columns: 1fr; }
  .spec-grid, .flav-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
}

/* Respeta preferencia de menos movimiento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Página de detalle de producto (tipo Shopify)
   ========================================================================== */
.pd-wrap { padding-top: 110px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--muted-2); }

.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* Galería */
.pd-gallery { position: sticky; top: 100px; }
.pd-stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--a) 20%, transparent), transparent 65%), #0a0c14;
  aspect-ratio: 4/5; display: grid; place-items: center;
}
.pd-stage img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.pd-stage .glowline { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--a); box-shadow: 0 0 18px var(--a); }
.pd-float { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.pd-tag { font-size: 11px; font-weight: 600; letter-spacing: .08em; padding: 7px 12px; border-radius: 100px; background: rgba(5,6,10,.7); border: 1px solid var(--line); backdrop-filter: blur(8px); }

/* Info */
.pd-info h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4.5vw, 46px); line-height: 1.02; letter-spacing: -.01em; }
.pd-info .pd-sub { color: var(--muted); font-size: 16px; margin-top: 10px; }
.pd-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.pd-chip { font-size: 12.5px; padding: 8px 14px; border-radius: 100px; background: var(--panel); border: 1px solid var(--line); color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.pd-chip b { color: var(--a); }

.pd-price-box {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 24px; border-radius: 18px; background: var(--grad-soft); border: 1px solid var(--line); margin: 22px 0;
}
.pd-price .from { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pd-price b { font-family: var(--font-display); font-size: 44px; line-height: 1; display: block; }
.pd-price .unit { font-size: 18px; color: var(--muted); }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; }
.pd-stock .d { width: 9px; height: 9px; border-radius: 50%; }
.pd-stock.in .d { background: #37f5a0; box-shadow: 0 0 8px #37f5a0; }
.pd-stock.out .d { background: #ffcf5b; box-shadow: 0 0 8px #ffcf5b; }

.pd-desc { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 24px; }

.pd-section-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 30px 0 16px; display: flex; align-items: center; gap: 10px; }
.pd-section-title::before { content: ""; width: 4px; height: 20px; border-radius: 100px; background: var(--a); box-shadow: 0 0 10px var(--a); }

.pd-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.pd-specs li { display: flex; gap: 10px; font-size: 14.5px; color: var(--muted); }
.pd-specs li::before { content: "▹"; color: var(--a); }

.pd-buy { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.pd-buy .btn { flex: 1; min-width: 200px; justify-content: center; padding: 16px; font-size: 15px; }

.pd-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; display: flex; gap: 8px; align-items: center; }

/* Sabores en la ficha */
.flav-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.flav-search { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; color: var(--ink); font-size: 14px; min-width: 220px; }
.flav-search:focus { outline: none; border-color: var(--a); }

.pd-flavs { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }

/* Relacionados */
.pd-related { margin-top: 80px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rel-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); transition: transform .3s, border-color .3s; }
.rel-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.25); }
.rel-card .rel-img { height: 150px; background: #0a0c14; display: grid; place-items: center; }
.rel-card .rel-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.rel-card .rel-body { padding: 14px 16px 18px; }
.rel-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.rel-card .rel-price { color: var(--cyan); font-weight: 600; font-size: 14px; margin-top: 6px; }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 26px; }
  .pd-gallery { position: static; }
  .pd-specs { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

/* Botón "ver todos los productos" en la home */
.see-all-wrap { display: flex; justify-content: center; margin-top: 44px; }
.see-all-wrap .btn { padding: 16px 32px; font-size: 15px; }

/* Aviso cuando no hay stock en la home */
.empty-shop { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--panel); font-size: 15px; line-height: 1.7; }

/* Barra de filtros de la tienda */
.shop-filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 30px; }
.shop-filters .input.filt {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  color: var(--ink); font-family: var(--font-body); font-size: 14px;
}
.shop-filters .input.filt:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(38,226,255,.14); }
#fSearch { flex: 1; min-width: 220px; }
.shop-filters select.filt { cursor: pointer; }
.filt-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); cursor: pointer;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); }
.filt-check input { accent-color: var(--cyan); width: 16px; height: 16px; }
.filt-count { font-size: 13px; color: var(--muted); margin-left: auto; }
@media (max-width: 640px){ .shop-filters .input.filt, .filt-check { width: 100%; } .filt-count { margin-left: 0; } }
