/* ============================================================
   Aponerlamesa — Estilos
   Paleta cálida kraft / madera · minimalista · moderno
   ============================================================ */

:root {
  /* Colores */
  --cream:      #F7F2E9;
  --cream-2:    #EFE7D6;
  --kraft:      #D8C29B;
  --kraft-dark: #C2A575;
  --ink:        #221C15;
  --ink-soft:   #5B5347;
  --accent:     #C25E34;   /* terracota */
  --accent-dk:  #A84B26;
  --amber:      #E0A23C;
  --white:      #ffffff;
  --line:       rgba(34, 28, 21, .10);

  /* Tipografía */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Otros */
  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 18px 40px -18px rgba(34, 28, 21, .35);
  --shadow-sm: 0 8px 22px -12px rgba(34, 28, 21, .30);
  --nav-h:     76px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

.section { padding: clamp(64px, 9vw, 120px) 0; }

.container-x { width: min(1180px, 92%); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 0 0 18px;
}
.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Botones ---------- */
.btn-x {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn-x:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; }
.btn-x svg { width: 18px; height: 18px; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.btn-wa { --btn-bg: #25D366; --btn-fg: #0b3d20; }
.btn-wa:hover { background: #1eb257; border-color: #1eb257; color: #05230f; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 242, 233, .88);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(34,28,21,.5);
}
.nav .container-x { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo img { height: 30px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__menu > .btn-x { display: none; } /* WhatsApp dentro del menú: sólo móvil */
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav__toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(50px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(224,162,60,.16), transparent 60%),
    radial-gradient(50% 50% at 6% 92%, rgba(194,94,52,.10), transparent 60%),
    var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin: 0 0 22px;
}
.hero h1 .hl { color: var(--accent); font-style: italic; }
.hero p.lead { margin: 0 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.hero__badge svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* Collage de imágenes */
.hero__art { position: relative; min-height: 420px; }
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  background: #fff;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--1 { width: 62%; top: 0; right: 4%; z-index: 2; transform: rotate(2.5deg); }
.hero__card--2 { width: 52%; bottom: 0; left: 0; z-index: 3; transform: rotate(-3deg); }
.hero__blob {
  position: absolute; z-index: 1;
  width: 78%; aspect-ratio: 1; right: 0; top: 8%;
  background: linear-gradient(140deg, var(--kraft), var(--amber));
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  filter: blur(2px);
  opacity: .55;
}
.hero__tag {
  position: absolute; z-index: 4; left: 46%; bottom: 8%;
  background: var(--ink); color: var(--cream);
  padding: 10px 16px; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

/* Marquee de confianza */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; opacity: .92; display: inline-flex; align-items: center; gap: 48px; }
.strip__track span::after { content: "•"; color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Productos ---------- */
.products { background: var(--cream); }
.products__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }
.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-p {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card-p:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-p__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--kraft), var(--kraft-dark));
}
.card-p__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-p:hover .card-p__media img { transform: scale(1.06); }
/* Panel kraft para productos sin foto */
.card-p__kraft {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 7px),
    linear-gradient(135deg, var(--kraft), var(--kraft-dark));
  color: var(--ink);
}
.card-p__kraft svg { width: 74px; height: 74px; opacity: .8; }
.card-p__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--accent);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.card-p__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-p__title { font-size: 1.28rem; margin: 0 0 8px; }
.card-p__desc { color: var(--ink-soft); font-size: .95rem; margin: 0 0 18px; flex: 1; }
.card-p__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--accent);
  transition: gap .25s var(--ease);
}
.card-p:hover .card-p__more { gap: 14px; }
.card-p__more svg { width: 16px; height: 16px; }

/* ---------- Menú QR (feature) ---------- */
.feature { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.feature__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.feature__phone { position: relative; display: grid; place-items: center; }
.feature__phone img { width: min(300px, 80%); filter: drop-shadow(0 30px 40px rgba(34,28,21,.25)); }
.feature__phone::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--amber), transparent 68%);
  opacity: .4; border-radius: 50%;
}
.tumenu-logo { height: 34px; width: auto; margin-bottom: 18px; }
.steps { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps .n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .85rem;
  display: grid; place-items: center; margin-top: 1px;
}
.steps b { display: block; font-weight: 600; }
.steps span { color: var(--ink-soft); font-size: .93rem; }

/* ---------- Nosotros ---------- */
.about { background: var(--ink); color: var(--cream); }
.about h2, .about h3 { color: var(--cream); }
.about .eyebrow { color: var(--amber); }
.about .eyebrow::before { background: var(--amber); }
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.about p { color: rgba(247,242,233,.82); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.stat {
  border: 1px solid rgba(247,242,233,.16);
  border-radius: var(--radius-sm);
  padding: 24px;
  background: rgba(247,242,233,.04);
}
.stat b { font-family: var(--font-display); font-size: 2.1rem; color: var(--amber); display: block; line-height: 1; }
.stat span { font-size: .9rem; color: rgba(247,242,233,.75); }

/* ---------- CTA final ---------- */
.cta { background: var(--cream); }
.cta__box {
  background: linear-gradient(135deg, var(--accent), var(--amber));
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta__box h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 16px; }
.cta__box p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto 30px; }
.cta__box .btn-x { --btn-bg: #fff; --btn-fg: var(--accent-dk); border-color: #fff; }
.cta__box .btn-x:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__logo { height: 30px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer p { color: rgba(247,242,233,.7); font-size: .92rem; max-width: 40ch; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; opacity: .7; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: rgba(247,242,233,.82); font-size: .94rem; transition: color .25s var(--ease); }
.footer ul a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(247,242,233,.2);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.footer__social a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(247,242,233,.14); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(247,242,233,.55); }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
  animation: wa-pop .5s var(--ease) both;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } }

/* ---------- Modal producto ---------- */
.modal-content { border: none; border-radius: var(--radius); overflow: hidden; }
.pm__grid { display: grid; grid-template-columns: 1fr 1fr; }
.pm__media { min-height: 320px; background: linear-gradient(135deg, var(--kraft), var(--kraft-dark)); position: relative; }
.pm__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pm__media .card-p__kraft svg { width: 110px; height: 110px; }
.pm__body { padding: clamp(26px, 4vw, 42px); }
.pm__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 6px 0 14px; }
.pm__body p { color: var(--ink-soft); }
.pm__feats { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pm__feats li { display: flex; gap: 9px; align-items: center; font-size: .92rem; font-weight: 500; }
.pm__feats svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.modal-close:hover { transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
/* El estado oculto sólo se aplica si JS está activo (clase .js en <html>);
   así, si el JS falla, el contenido igual se ve. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { min-height: 340px; margin-top: 10px; max-width: 460px; }
  .feature__grid, .about__grid { grid-template-columns: 1fr; }
  .feature__phone { order: -1; }
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pm__grid { grid-template-columns: 1fr; }
  .pm__media { min-height: 220px; }
}

@media (max-width: 720px) {
  .nav__cta .btn-wa { display: none; } /* WhatsApp del bar: lo cubre el menú + botón flotante */
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--cream);
    box-shadow: var(--shadow);
    padding: 12px 6% 26px;
    display: grid; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav.open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__menu .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__menu .nav__links a { display: block; padding: 15px 4px; font-size: 1.05rem; }
  .nav__menu > .btn-x { display: inline-flex; width: 100%; justify-content: center; margin-top: 16px; }
  .grid-products { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .pm__feats { grid-template-columns: 1fr; }
  /* Hero: botones en una sola línea, compactos y parejos */
  .hero__cta { flex-wrap: nowrap; gap: 10px; }
  .hero__cta .btn-x, .hero__cta .btn-ghost {
    flex: 1 1 0; min-width: 0; justify-content: center;
    padding: 12px 12px; font-size: .88rem; white-space: nowrap;
  }
  .hero__cta .btn-x svg { flex: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PÁGINAS DE PRODUCTO
   ============================================================ */
.page-head { padding-top: calc(var(--nav-h) + 30px); padding-bottom: 8px; background: var(--cream); }
.breadcrumb-x { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: var(--ink-soft); list-style: none; margin: 0; padding: 0; }
.breadcrumb-x a { color: var(--ink-soft); transition: color .2s var(--ease); }
.breadcrumb-x a:hover { color: var(--accent); }
.breadcrumb-x li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .5; }
.breadcrumb-x li[aria-current] { color: var(--ink); font-weight: 600; }

/* Hero de producto */
.pdp { background: var(--cream); padding: 24px 0 clamp(50px,7vw,90px); }
.pdp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,60px); align-items: start; }

.pdp__gallery { position: sticky; top: calc(var(--nav-h) + 16px); }
.pdp__main {
  border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg,var(--kraft),var(--kraft-dark));
  aspect-ratio: 4/3; box-shadow: var(--shadow); border: 6px solid #fff;
}
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__main .card-p__kraft svg { width: 120px; height: 120px; }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pdp__thumb {
  width: 82px; height: 82px; border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: var(--kraft); transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pdp__thumb.active, .pdp__thumb:hover { border-color: var(--accent); transform: translateY(-2px); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__title { font-size: clamp(2rem,4.5vw,3rem); margin: 10px 0 14px; }
.pdp__tagline { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 22px; }
.pdp__feats { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp__feats li { display: flex; gap: 9px; align-items: center; font-weight: 500; font-size: .95rem; }
.pdp__feats svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* Tabla de precios */
.price-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 26px; }
.price-box h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 16px; font-weight: 600; }
.price-tiers { display: grid; gap: 2px; }
.price-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.price-tier:last-child { border-bottom: none; }
.price-tier .q { font-weight: 500; color: var(--ink); }
.price-tier .q small { display: block; color: var(--ink-soft); font-weight: 400; font-size: .82rem; }
.price-tier .p { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent); }
.price-tier .p small { font-size: .8rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 400; }
.price-note { font-size: .8rem; color: var(--ink-soft); margin: 14px 0 0; }
.pdp__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Secciones de detalle */
.pdp-section { padding: clamp(50px,7vw,90px) 0; }
.pdp-detail { background: var(--cream-2); }
.pdp-detail__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px,5vw,60px); align-items: center; }
.pdp-detail p { color: var(--ink-soft); }

/* Video (short) */
.video-sec { background: var(--ink); color: var(--cream); text-align: center; }
.video-sec .eyebrow { color: var(--amber); justify-content: center; }
.video-sec .eyebrow::before { background: var(--amber); }
.video-sec h2 { color: var(--cream); }
.video-facade {
  position: relative; width: min(340px, 88%); margin: 30px auto 0; aspect-ratio: 9/16;
  border-radius: var(--radius); overflow: hidden; cursor: pointer; background: #000;
  box-shadow: var(--shadow); border: 5px solid rgba(247,242,233,.1);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s var(--ease), transform .5s var(--ease); }
.video-facade:hover img { opacity: 1; transform: scale(1.04); }
.video-facade iframe { width: 100%; height: 100%; border: 0; }
.video-facade__play {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.video-facade__play span {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(194,94,52,.92);
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video-facade:hover .video-facade__play span { transform: scale(1.1); background: var(--accent); }
.video-facade__play svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }

/* Relacionados */
.related { background: var(--cream); }
.grid-related { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .pdp-detail__grid { grid-template-columns: 1fr; }
  .grid-related { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pdp__feats { grid-template-columns: 1fr; }
  /* CTAs apilados a lo ancho: cada botón en una línea, buen tamaño de toque */
  .pdp__cta { flex-direction: column; align-items: stretch; }
  .pdp__cta .btn-x, .pdp__cta .btn-ghost { width: 100%; justify-content: center; white-space: nowrap; }
}
