:root {
  --cream: #faf8f4;
  --cream-2: #f4f0e8;
  --ink: #171512;
  --gold: #b08d4a;
  --gold-soft: #c9ad74;
  --gold-text: #866626; /* dorado oscuro: legible en textos pequeños (contraste AA) */
  --line: #e6dfd2;
  --muted: #6b6455; /* contraste AA sobre crema */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: .02em;
  padding-bottom: 84px;
}
img { max-width: 100%; display: block; }
.serif { font-family: var(--serif); font-weight: 500; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  padding: 0 24px;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand img { height: 22px; }
.nav { display: flex; gap: 34px; }
.nav a {
  text-decoration: none; color: var(--ink);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav a:hover { border-color: var(--gold); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; width: 30px; }
.menu-btn span { display: block; height: 1.5px; background: var(--ink); margin: 6px 0; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-select {
  border: 1px solid var(--line); border-radius: 3px; background: #fff;
  font-family: var(--sans); font-size: 11px; letter-spacing: .12em;
  padding: 6px 6px; color: var(--ink); cursor: pointer; outline: none;
}
.lang-dd { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); border-radius: 3px; background: #fff;
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em;
  padding: 6px 9px; color: var(--ink); cursor: pointer;
}
.lang-btn:hover { border-color: var(--gold); }
.flag { display: inline-flex; width: 21px; height: 14px; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(23,21,18,.12); flex-shrink: 0; }
.flag svg { width: 100%; height: 100%; display: block; }
.lang-caret { font-size: 9px; color: var(--muted); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  box-shadow: 0 16px 40px -18px rgba(23,21,18,.35);
  min-width: 150px; padding: 5px; display: flex; flex-direction: column;
}
.lang-item {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; border-radius: 3px; cursor: pointer;
  font-family: var(--sans); font-size: 13px; color: var(--ink);
  padding: 9px 10px; text-align: left;
}
.lang-item:hover { background: var(--cream-2); }
.lang-item.active { color: var(--gold); }
.icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--ink); width: 30px; height: 30px; display: inline-flex;
  align-items: center; justify-content: center; text-decoration: none;
}
.icon-btn svg { width: 24px; height: 24px; }
.icon-btn.logged::after {
  content: ''; position: absolute; top: 1px; right: 1px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.cart-btn {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--ink); width: 30px; height: 30px;
}
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: -5px; right: -7px;
  background: var(--gold); color: #fff; font-size: 10px; font-weight: 500;
  border-radius: 50%; width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Botones ---------- */
.btn-dark {
  background: var(--ink); color: #fff;
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 3px;
  transition: background .2s;
}
.btn-dark:hover { background: #2e2a24; }
.btn-dark:disabled { opacity: .5; cursor: default; }
.btn-light {
  background: rgba(250,248,244,.95); color: var(--ink);
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 3px;
}
.w100 { width: 100%; }
.gold-rule { width: 54px; height: 2px; background: var(--gold); margin: 22px 0; }
.gold-rule.center { margin: 18px auto 26px; }

/* ---------- Producto hero ---------- */
.product-hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px;
  max-width: 1220px; margin: 0 auto; padding: 46px 40px 60px;
}
.ph-media { position: sticky; top: 90px; align-self: start; }
.ph-media > img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 4px; background: var(--cream-2);
  box-shadow: 0 30px 60px -30px rgba(23,21,18,.25);
}
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 3px;
  border: 1px solid var(--line); cursor: pointer; opacity: .75; transition: all .15s;
  background: var(--cream-2);
}
.thumbs img.active, .thumbs img:hover { opacity: 1; border-color: var(--gold); }

.eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 14px; font-weight: 500;
}
.ph-panel h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08; letter-spacing: .05em; text-transform: uppercase;
}
.tagline { font-size: 22px; font-style: italic; color: var(--muted); margin-top: 10px; font-weight: 400; }
.prod-desc { color: var(--muted); line-height: 1.7; font-size: 15px; max-width: 460px; }

.price-hero { display: flex; align-items: baseline; gap: 12px; margin-top: 26px; }
.ph-from { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.ph-amount { font-family: var(--serif); font-size: 44px; font-weight: 500; }
.limited {
  display: inline-block; margin-top: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-soft); border-radius: 30px;
  padding: 7px 16px;
}

.field-label {
  display: block;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); margin: 26px 0 10px; font-weight: 500;
}
/* Acabados: en PC, botones en fila; en móvil, lista vertical */
.variant-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-btn {
  border: 1px solid var(--line); background: #fff;
  padding: 11px 18px; cursor: pointer; border-radius: 3px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); transition: all .15s;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.variant-btn small { color: var(--muted); font-size: 12px; letter-spacing: .04em; text-transform: none; white-space: nowrap; }
.variant-btn.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); background: #fdfbf6; }
.variant-btn.active small { color: var(--ink); }
@media (max-width: 900px) {
  .variant-grid { flex-direction: column; flex-wrap: nowrap; gap: 8px; }
  .variant-btn {
    flex-direction: row; align-items: center; justify-content: space-between; gap: 14px;
    width: 100%; text-align: left; padding: 15px 20px;
  }
  .variant-btn small { font-size: 14px; }
}
.chain-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chain-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 3px;
  cursor: pointer; padding: 8px; width: 92px; text-align: center;
  font-family: var(--sans); font-size: 11px; color: var(--ink); letter-spacing: .02em;
  transition: all .15s;
}
.chain-btn img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; margin-bottom: 6px; }
.chain-btn.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.chain-btn small { display: block; color: var(--muted); margin-top: 2px; }

.dropzone {
  border: 1.5px dashed var(--gold-soft); border-radius: 6px;
  padding: 34px 20px; text-align: center; cursor: pointer;
  color: var(--gold); transition: background .2s;
}
.dropzone:hover, .dropzone.drag { background: #fdfbf6; }
.dropzone p { color: var(--ink); font-size: 14px; margin-top: 10px; }
.dropzone-formats { font-size: 11px; color: var(--muted); display: block; margin-top: 6px; letter-spacing: .06em; }
.photo-previews { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.photo-previews .ph {
  position: relative; width: 64px; height: 64px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
}
.photo-previews .ph img { width: 100%; height: 100%; object-fit: cover; }
.photo-previews .ph button {
  position: absolute; top: 2px; right: 2px;
  background: rgba(23,21,18,.7); color: #fff; border: none; border-radius: 50%;
  width: 18px; height: 18px; font-size: 11px; cursor: pointer; line-height: 1;
}

.input {
  width: 100%; border: 1px solid var(--line); border-radius: 3px;
  background: #fff; padding: 13px 14px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .2s; resize: vertical;
}
.input:focus { border-color: var(--gold); }

.price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px; gap: 18px; flex-wrap: wrap;
}
.price-label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.price { font-family: var(--serif); font-size: 38px; font-weight: 500; }
.btn-buy { flex: 1; min-width: 220px; }
.assurance {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px;
  font-size: 12px; color: var(--muted); letter-spacing: .05em;
}
.fineprint {
  margin-top: 12px; font-size: 11.5px; color: var(--muted);
  line-height: 1.6; font-style: italic; opacity: .85; max-width: 480px;
}

.btn-express {
  width: 100%; margin-top: 12px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--ink); border-radius: 3px; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 13px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: background .2s;
}
.btn-express:hover { background: var(--cream-2); }
.btn-express small { font-size: 10px; color: var(--muted); letter-spacing: .06em; text-transform: none; }

/* ---------- Manifiesto ---------- */
.manifesto {
  max-width: 760px; margin: 30px auto; padding: 70px 30px; text-align: center;
}
.manifesto .gold-diamond { color: var(--gold); font-size: 12px; margin-bottom: 26px; }
.manifesto p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.5;
  color: var(--ink); margin-bottom: 22px;
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto p em { color: var(--gold); font-style: normal; }

/* ---------- Vídeo principal ---------- */
.video-placeholder {
  aspect-ratio: 16/9;
  border: 1.5px dashed var(--gold-soft); border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); background: #fdfbf6;
}
.video-placeholder .vp-icon { font-size: 40px; }
.video-placeholder p { color: var(--muted); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Dedicatorias (gif + texto alternando) ---------- */
.anims { max-width: 1060px; margin: 20px auto; padding: 40px; text-align: center; }
.story-col { margin-top: 50px; display: flex; flex-direction: column; gap: 76px; }
.story-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 54px; align-items: center; text-align: left;
}
.story-media video {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 5px; background: var(--cream-2); display: block;
  box-shadow: 0 26px 50px -28px rgba(23,21,18,.35);
}
.story-row.rev .story-media { order: 2; }
.story-row.rev .story-text { order: 1; text-align: right; }
.story-row.rev .story-text .gold-rule { margin-left: auto; }
.story-text .st-num {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-text); font-weight: 500;
}
.story-text h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px); line-height: 1.2;
  margin-top: 10px; letter-spacing: .02em;
}
.story-text .gold-rule { margin: 18px 0; }
.story-text p {
  color: var(--muted); font-size: 16px; line-height: 1.85;
  font-family: var(--serif); font-style: italic;
}

/* ---------- Banda emocional ---------- */
.band {
  position: relative; overflow: hidden;
  width: min(1220px, calc(100% - 48px));
  margin: 40px auto 0; border-radius: 6px;
}
.band > img { width: 100%; height: 460px; object-fit: cover; }
.band-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  padding: 0 8vw; text-align: right;
  background: linear-gradient(270deg, rgba(23,21,18,.55) 0%, rgba(23,21,18,.15) 55%, transparent 100%);
}
.band-inner h2 {
  color: #fff; font-size: clamp(26px, 3.6vw, 42px);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.band-inner p { color: rgba(255,255,255,.92); max-width: 440px; line-height: 1.75; font-size: 15px; }

/* ---------- Testimonios ---------- */
.testimonials { max-width: 1150px; margin: 30px auto; padding: 50px 40px 20px; text-align: center; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
  text-align: left;
}
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  padding: 28px 26px;
}
.testimonial .t-stars { color: var(--gold); letter-spacing: .2em; font-size: 14px; margin-bottom: 14px; }
.testimonial p { font-family: var(--serif); font-size: 19px; line-height: 1.55; color: var(--ink); font-style: italic; }
.testimonial .t-author { margin-top: 16px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.testimonial .t-author strong { color: var(--gold-text); font-weight: 500; }

/* ---------- Métodos de pago ---------- */
.pay-methods { display: flex; flex-direction: column; gap: 8px; }
.pay-method {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 3px; background: #fff;
  padding: 13px 16px; cursor: pointer; transition: all .15s;
  font-size: 14px;
}
.pay-method.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); background: #fdfbf6; }
.pay-method input { accent-color: var(--gold); }
.pay-method .pm-desc { font-size: 12px; color: var(--muted); display: block; }
.bank-box {
  text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 5px;
  padding: 18px 20px; margin: 14px 0; font-size: 14px; line-height: 1.9;
}
.bank-box strong { font-family: monospace; font-size: 15px; }

/* ---------- Vídeo diseño 3D ---------- */
.video-sec {
  max-width: 1000px; margin: 20px auto; padding: 40px; text-align: center;
}
.section-title { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: .1em; text-transform: uppercase; }
.video-text { color: var(--muted); max-width: 620px; margin: 0 auto 30px; line-height: 1.75; font-size: 15px; }
.video-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(23,21,18,.3); }
.video-wrap video { width: 100%; display: block; }

/* ---------- Proceso ---------- */
.process { max-width: 1180px; margin: 30px auto; padding: 30px 40px; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 30px; }
.step { text-align: center; }
.step img { aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; margin-bottom: 18px; width: 100%; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 13px; margin-bottom: 10px;
}
.step h3 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---------- Cuenta (popup y página) ---------- */
.acc-tabs { display: flex; gap: 8px; margin-bottom: 6px; }
.acc-tab {
  flex: 1; background: none; border: 1px solid var(--line); border-radius: 3px; cursor: pointer;
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 12px; color: var(--muted);
}
.acc-tab.active { border-color: var(--gold); color: var(--ink); box-shadow: 0 0 0 1px var(--gold); background: #fdfbf6; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 30px auto; padding: 40px 24px 20px; text-align: center; }
.faq-list { text-align: left; margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; text-align: left;
  font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink);
}
.faq-arrow { color: var(--gold); font-size: 18px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { color: var(--muted); font-size: 14.5px; line-height: 1.8; padding: 0 4px 20px; }

/* ---------- Confianza ---------- */
.badges {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  width: min(1220px, calc(100% - 48px));
  margin: 50px auto 0;
  border-radius: 6px; overflow: hidden;
}
.badge { padding: 44px 24px; text-align: center; border-left: 1px solid rgba(250,248,244,.12); }
.badge:first-child { border-left: none; }
.badge h3, .badge h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; margin-bottom: 8px; color: #fff; }
.badge p { font-size: 13px; color: rgba(250,248,244,.55); line-height: 1.6; }
.badge .b-ico { color: var(--gold); margin-bottom: 14px; font-size: 22px; }

.social-proof {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 44px 20px; flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 20px; letter-spacing: .3em; }
.stars-block, .counter-block { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.stars-block { flex-direction: column; gap: 6px; }
.counter-block svg { color: var(--gold); }
.proof-sep { width: 1px; height: 40px; background: var(--line); }

/* ---------- Banner final ---------- */
.banner {
  position: relative; overflow: hidden;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 50px; border-radius: 6px;
}
.banner img { width: 100%; height: 420px; object-fit: cover; }
.banner-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 8vw; gap: 24px;
  background: linear-gradient(90deg, rgba(250,248,244,.82) 0%, rgba(250,248,244,.25) 55%, transparent 100%);
}
.banner-claim { font-size: clamp(26px, 3.6vw, 42px); letter-spacing: .06em; text-transform: uppercase; max-width: 480px; line-height: 1.2; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 50px 20px 60px; border-top: 1px solid var(--line); }
.footer-mark { font-size: 40px; color: var(--gold); margin-bottom: 14px; }
.footer-claim { font-size: 12px; letter-spacing: .3em; line-height: 2; color: var(--ink); }

.footer-legal { margin-top: 22px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- Aviso de cookies ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 560px; margin: 0 auto;
  background: var(--ink); color: rgba(250,248,244,.9);
  border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 20px 50px -20px rgba(23,21,18,.5);
}
.cookie-banner p { font-size: 13px; line-height: 1.6; flex: 1; min-width: 220px; margin: 0; }
.cookie-banner a { color: var(--gold-soft); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn-dark {
  background: var(--cream); color: var(--ink); padding: 11px 22px; font-size: 11px;
}
.cookie-banner .btn-dark:hover { background: var(--cream-2); }
.btn-ghost-light {
  background: none; border: 1px solid rgba(250,248,244,.35); color: rgba(250,248,244,.85);
  border-radius: 3px; padding: 11px 18px; cursor: pointer;
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}

/* ---------- Barra fija ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; gap: 14px;
  background: rgba(250,248,244,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 18px;
}
.sticky-price { display: flex; flex-direction: column; line-height: 1.15; min-width: 100px; }
.sticky-price span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.sticky-price strong { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.sticky-bar .btn-dark { flex: 1; }

/* ---------- Carrito / modales ---------- */
.drawer-overlay, .modal-overlay {
  position: fixed; inset: 0; background: rgba(23,21,18,.45); z-index: 90;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 100;
  background: var(--cream); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 24px; }
.close-x { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--muted); line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; }
.cart-item h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.cart-item .ci-meta { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cart-item .ci-right { margin-left: auto; text-align: right; }
.cart-item .ci-price { font-family: var(--serif); font-size: 18px; }
.cart-item .ci-del { background: none; border: none; color: var(--muted); font-size: 11px; cursor: pointer; text-decoration: underline; margin-top: 6px; }
.cart-empty { text-align: center; color: var(--muted); padding: 40px 10px; font-size: 14px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 15px; }
.cart-total-row strong { font-family: var(--serif); font-size: 26px; }

.modal-overlay { display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal {
  position: relative; background: var(--cream); border-radius: 6px;
  width: min(520px, 100%); max-height: 92vh; overflow-y: auto;
  padding: 30px 28px;
}
.modal h3 { font-size: 26px; }
.modal .close-x { position: absolute; top: 14px; right: 16px; }
.pay-note { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 16px 0; }
.form-error { color: #a33; font-size: 13px; margin-top: 10px; min-height: 16px; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 6px auto 18px;
}
#checkoutSuccess { text-align: center; }
#checkoutSuccess p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 10px 0; }
#checkoutSuccess .btn-dark { margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  /* Menú móvil: panel lateral deslizante (0,3 s) */
  .nav {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 70;
    width: min(300px, 82vw);
    background: var(--cream); border-right: 1px solid var(--line);
    padding-top: 74px;
    transform: translateX(-100%);
    transition: transform .3s ease;
    box-shadow: 0 0 60px rgba(23,21,18,.18);
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 17px 26px; border-bottom: 1px solid var(--line); }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 65;
    background: rgba(23,21,18,.45);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .menu-btn { display: block; z-index: 80; position: relative; }
  .product-hero { grid-template-columns: 1fr; padding: 0 0 40px; gap: 20px; }
  .ph-media { position: static; }
  .ph-media > img { border-radius: 0; aspect-ratio: 1; box-shadow: none; }
  .thumbs { padding: 0 20px; }
  .ph-panel { padding: 6px 20px 0; }
  .video-sec { padding: 30px 20px; }
  .process { padding: 20px 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .badges { grid-template-columns: repeat(2, 1fr); width: calc(100% - 32px); }
  .badge { border-left: none; border-top: 1px solid rgba(250,248,244,.12); }
  .band, .banner { width: calc(100% - 32px); }
  .header { padding: 0 16px; }
  .banner img { height: 480px; }
  .banner-inner { padding: 0 24px; }
  .manifesto { padding: 50px 26px; }
  .anims { padding: 30px 20px; }
  .story-col { gap: 54px; margin-top: 36px; }
  .story-row { grid-template-columns: 1fr; gap: 22px; }
  .story-row.rev .story-media { order: 0; }
  .story-row.rev .story-text { order: 1; text-align: left; }
  .story-row.rev .story-text .gold-rule { margin-left: 0; }
  .band > img { height: 520px; }
  .band-inner { align-items: flex-start; text-align: left; padding: 0 24px;
    background: linear-gradient(90deg, rgba(23,21,18,.55) 0%, rgba(23,21,18,.15) 55%, transparent 100%); }
  .testimonials { padding: 40px 20px 10px; }
}
@media (min-width: 901px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .nav-overlay { display: none; }
}
