/* ============================================================
   LÚMINA BOUTIQUE — Design System
   Paleta: Marfil #FBF7F2 · Ciruela #35262F · Champán #C2A269
           Rosa #E8D3CC · Malva #A88FA3
   Tipografía: Playfair Display (display) · Montserrat (apoyo)
   ============================================================ */

:root {
  --marfil: #FBF7F2;
  --marfil-2: #F5EEE4;
  --ciruela: #35262F;
  --ciruela-90: rgba(53, 38, 47, .9);
  --ciruela-60: rgba(53, 38, 47, .6);
  --champan: #C2A269;
  --champan-dark: #A8894F;
  --rosa: #E8D3CC;
  --malva: #A88FA3;
  --taupe: #8A6F52;
  --blanco: #FFFFFF;
  --exito: #4C7A5C;
  --alerta: #B0522D;

  --font-display: "Playfair Display", "Didot", Georgia, serif;
  --font-body: "Montserrat", "Avenir Next", "Helvetica Neue", sans-serif;

  --shadow-s: 0 1px 3px rgba(53, 38, 47, .06);
  --shadow-m: 0 10px 30px rgba(53, 38, 47, .08);
  --shadow-l: 0 24px 60px rgba(53, 38, 47, .14);
  --radius: 14px;
  --radius-s: 8px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--marfil);
  color: var(--ciruela);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: .01em; }
.kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: "✦"; color: var(--champan); font-size: 10px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.section-sub { color: var(--ciruela-60); max-width: 560px; font-size: 15px; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s;
  white-space: nowrap;
}
.btn-primary { background: var(--ciruela); color: var(--marfil); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-l); background: #241820; }
.btn-gold { background: var(--champan); color: var(--blanco); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(194, 162, 105, .4); background: var(--champan-dark); }
.btn-ghost { border: 1px solid var(--ciruela-60); color: var(--ciruela); background: transparent; }
.btn-ghost:hover { background: var(--ciruela); color: var(--marfil); border-color: var(--ciruela); }
.btn-light { background: var(--blanco); color: var(--ciruela); box-shadow: var(--shadow-s); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-block { width: 100%; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37, 211, 102, .35); }
.link-arrow {
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--taupe); display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--champan); padding-bottom: 3px; transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ciruela); color: var(--marfil);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  text-align: center; padding: 9px 16px; position: relative; overflow: hidden; min-height: 36px;
}
.announce span { display: block; animation: announceFade .6s var(--ease); }
.announce b { color: var(--champan); font-weight: 600; }
@keyframes announceFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 247, 242, .88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(194, 162, 105, .18);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-m); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo .logo-name {
  font-family: var(--font-display); font-size: 26px; letter-spacing: .3em; color: var(--ciruela);
  display: inline-flex; align-items: flex-start; gap: 4px;
}
.logo .logo-name .spark { color: var(--champan); font-size: 13px; margin-top: -2px; }
.logo .logo-sub { font-size: 8.5px; letter-spacing: .5em; text-transform: uppercase; color: var(--taupe); margin-top: 4px; }
.nav { display: flex; gap: 34px; }
.nav a {
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ciruela); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--champan); transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  transition: background .25s; position: relative; color: var(--ciruela);
}
.icon-btn:hover { background: rgba(194, 162, 105, .15); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--champan); color: #fff; font-size: 10px; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 100px; display: grid; place-items: center; padding: 0 4px;
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-count.on { transform: scale(1); }
.burger { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--marfil);
  display: flex; flex-direction: column; padding: 28px;
  transform: translateX(100%); transition: transform .45s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: none; visibility: visible; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a.mnav-link {
  font-family: var(--font-display); font-size: 32px; padding: 14px 0; color: var(--ciruela);
  border-bottom: 1px solid rgba(194, 162, 105, .2); display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.mnav-link small { font-size: 12px; color: var(--champan); font-family: var(--font-body); letter-spacing: .2em; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  min-height: 78vh; padding: 60px 0 80px;
}
.hero-copy .kicker { animation: rise .8s var(--ease) both; }
.hero-title {
  font-size: clamp(40px, 6vw, 74px); line-height: 1.06; margin-bottom: 24px;
  animation: rise .8s .1s var(--ease) both;
}
.hero-title em { font-style: italic; color: var(--champan); }
.hero-sub {
  font-size: 17px; color: var(--ciruela-60); max-width: 480px; margin-bottom: 36px; font-weight: 400;
  animation: rise .8s .2s var(--ease) both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: rise .8s .3s var(--ease) both; }
.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 40px; animation: rise .8s .45s var(--ease) both; }
.hero-proof .stars { color: var(--champan); letter-spacing: 3px; font-size: 14px; }
.hero-proof span { font-size: 13px; color: var(--ciruela-60); }
.hero-media { position: relative; animation: heroImg 1.2s var(--ease) both; }
.hero-media .frame {
  border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden;
  box-shadow: var(--shadow-l); aspect-ratio: 4/5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease); }
.hero-media:hover img { transform: scale(1.05); }
.hero-chip {
  position: absolute; left: -20px; bottom: 40px; background: var(--blanco); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-l); display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-chip .dot { width: 9px; height: 9px; background: var(--exito); border-radius: 50%; box-shadow: 0 0 0 4px rgba(76, 122, 92, .18); }
.hero-chip b { display: block; font-size: 13px; }
.hero-chip small { font-size: 11.5px; color: var(--ciruela-60); }
.hero-spark { position: absolute; color: var(--champan); animation: twinkle 3s ease-in-out infinite; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroImg { from { opacity: 0; transform: scale(.96) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid rgba(194, 162, 105, .25); padding: 16px 0; overflow: hidden; background: var(--marfil-2); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
  color: var(--taupe); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--champan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Secciones ---------- */
.section { padding: 90px 0; }
.section.tight { padding: 60px 0; }
.section.plum { background: var(--ciruela); color: var(--marfil); }
.section.plum .section-sub { color: rgba(251, 247, 242, .65); }
.section.blush { background: linear-gradient(180deg, var(--marfil) 0%, var(--rosa) 140%); }

/* ---------- Categorías ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-s); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(53, 38, 47, .82) 100%);
}
.cat-card .cat-info { position: absolute; left: 18px; right: 18px; bottom: 18px; color: var(--marfil); }
.cat-card .cat-info h3 { font-size: 21px; }
.cat-card .cat-info small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--rosa); opacity: 0; transform: translateY(6px); transition: all .4s var(--ease); display: block; }
.cat-card:hover .cat-info small { opacity: 1; transform: none; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.prod-card { position: relative; }
.prod-media {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  background: var(--marfil-2); box-shadow: var(--shadow-s); transition: box-shadow .4s var(--ease);
}
.prod-card:hover .prod-media { box-shadow: var(--shadow-m); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-media .no-img { width: 100%; height: 100%; display: grid; place-items: center; }
.prod-media .no-img span { font-family: var(--font-display); font-size: 60px; color: var(--champan); opacity: .45; }
.badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; width: max-content;
}
.badge.new { background: var(--ciruela); color: var(--marfil); }
.badge.sale { background: var(--champan); color: #fff; }
.badge.low { background: #fff; color: var(--alerta); box-shadow: var(--shadow-s); }
.badge.out { background: #999; color: #fff; }
.prod-actions {
  position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; gap: 8px;
  opacity: 0; transform: translateY(12px); transition: all .35s var(--ease); z-index: 2;
}
.prod-card:hover .prod-actions, .prod-card:focus-within .prod-actions { opacity: 1; transform: none; }
.prod-actions .btn { flex: 1; padding: 12px 10px; font-size: 11px; }
.prod-info { padding: 14px 4px 0; text-align: center; }
.prod-info .p-cat { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--malva); font-weight: 600; }
.prod-info h3 { font-size: 18px; margin: 3px 0 5px; font-weight: 500; }
.prod-info h3 a:hover { color: var(--champan-dark); }
.price { font-size: 15px; font-weight: 600; letter-spacing: .02em; }
.price .compare { color: var(--ciruela-60); text-decoration: line-through; font-weight: 400; font-size: 13px; margin-right: 8px; }
.price .now.offer { color: var(--champan-dark); }
.stock-note { font-size: 11.5px; color: var(--alerta); font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 5px; }
.stock-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--alerta); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Oferta / countdown ---------- */
.offer-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
  background: var(--ciruela); border-radius: calc(var(--radius) * 2); overflow: hidden;
  padding: 56px; color: var(--marfil); position: relative;
}
.offer-wrap::before {
  content: "✦"; position: absolute; right: 40px; top: 32px; color: var(--champan);
  font-size: 22px; animation: twinkle 3s ease-in-out infinite;
}
.offer-badge {
  display: inline-block; background: var(--champan); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.offer-title { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 14px; }
.offer-text { color: rgba(251, 247, 242, .7); margin-bottom: 28px; max-width: 420px; }
.countdown { display: flex; gap: 12px; margin-bottom: 30px; }
.count-box {
  background: rgba(251, 247, 242, .08); border: 1px solid rgba(194, 162, 105, .35);
  border-radius: var(--radius-s); padding: 12px 0; text-align: center; min-width: 74px;
}
.count-box b { display: block; font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--champan); font-variant-numeric: tabular-nums; }
.count-box span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(251, 247, 242, .6); }
.offer-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer-products .prod-info { text-align: left; }
.offer-products .prod-info h3 { font-size: 15px; color: var(--marfil); }
.offer-products .p-cat { color: var(--malva); }
.offer-products .price { color: var(--marfil); font-size: 14px; }
.offer-products .price .compare { color: rgba(251,247,242,.5); }
.offer-products .price .now.offer { color: var(--champan); }

/* ---------- Beneficios ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit {
  background: var(--blanco); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-s); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.benefit .b-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(194, 162, 105, .14);
  display: grid; place-items: center; color: var(--champan-dark); margin-bottom: 18px;
}
.benefit .b-icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 17px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.benefit p { font-size: 13.5px; color: var(--ciruela-60); }

/* ---------- Testimonios ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: var(--blanco); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-s);
  position: relative; transition: transform .4s var(--ease);
}
.testi:hover { transform: translateY(-5px); }
.testi::before {
  content: "“"; font-family: var(--font-display); font-size: 70px; color: var(--rosa);
  position: absolute; top: 8px; right: 24px; line-height: 1;
}
.testi .stars { color: var(--champan); letter-spacing: 3px; margin-bottom: 14px; font-size: 13px; }
.testi p { font-size: 14.5px; margin-bottom: 20px; color: var(--ciruela-90); }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ciruela); color: var(--champan);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 17px;
}
.testi .who b { font-size: 13.5px; display: block; }
.testi .who small { font-size: 11.5px; color: var(--ciruela-60); }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--taupe); }
.trust-item svg { width: 18px; height: 18px; color: var(--champan); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq {
  background: var(--blanco); border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow-s); overflow: hidden;
}
.faq summary {
  padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 24px; color: var(--champan); transition: transform .3s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 26px 22px; font-size: 14px; color: var(--ciruela-60); }

/* ---------- Club / newsletter ---------- */
.club {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.club .monogram { width: 74px; margin: 0 auto 24px; }
.club h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.club p { color: var(--ciruela-60); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--ciruela); color: var(--marfil); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .f-logo { font-family: var(--font-display); font-size: 28px; letter-spacing: .28em; margin-bottom: 6px; }
.footer .f-logo .spark { color: var(--champan); font-size: 14px; }
.footer .f-sub { font-size: 9px; letter-spacing: .5em; text-transform: uppercase; color: var(--champan); margin-bottom: 20px; }
.footer p { font-size: 13.5px; color: rgba(251, 247, 242, .6); max-width: 300px; }
.footer h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--champan); margin-bottom: 18px; font-weight: 600; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: rgba(251, 247, 242, .75); transition: color .25s; }
.footer li a:hover { color: var(--champan); }
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 242, .12); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom small { font-size: 12px; color: rgba(251, 247, 242, .45); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(251, 247, 242, .25); border-radius: 50%;
  display: grid; place-items: center; transition: all .3s;
}
.socials a:hover { background: var(--champan); border-color: var(--champan); }
.socials svg { width: 16px; height: 16px; }

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(53, 38, 47, .5); backdrop-filter: blur(3px);
  z-index: 150; opacity: 0; visibility: hidden; transition: opacity .35s;
}
.overlay.on { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100vw); z-index: 160;
  background: var(--marfil); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: var(--shadow-l);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid rgba(194, 162, 105, .2); }
.drawer-head h3 { font-size: 22px; }
.drawer-head h3 small { font-family: var(--font-body); font-size: 12px; color: var(--taupe); margin-left: 6px; }
.ship-bar { padding: 16px 26px 0; }
.ship-bar p { font-size: 12px; color: var(--taupe); margin-bottom: 8px; }
.ship-bar p b { color: var(--champan-dark); }
.ship-track { height: 5px; background: rgba(194, 162, 105, .2); border-radius: 100px; overflow: hidden; }
.ship-fill { height: 100%; background: linear-gradient(90deg, var(--champan), var(--champan-dark)); border-radius: 100px; transition: width .6s var(--ease); }
.drawer-items { flex: 1; overflow-y: auto; padding: 20px 26px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty .spark { font-size: 34px; color: var(--champan); display: block; margin-bottom: 14px; }
.cart-empty p { color: var(--ciruela-60); font-size: 14px; margin-bottom: 22px; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(194, 162, 105, .15); }
.cart-item img { width: 76px; height: 96px; object-fit: cover; border-radius: var(--radius-s); }
.cart-item .ci-ph { width: 76px; height: 96px; border-radius: var(--radius-s); background: var(--marfil-2); display: grid; place-items: center; font-family: var(--font-display); color: var(--champan); font-size: 26px; }
.cart-item h4 { font-size: 14.5px; font-weight: 600; font-family: var(--font-body); }
.cart-item .ci-meta { font-size: 12px; color: var(--ciruela-60); margin: 2px 0 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(53, 38, 47, .2); border-radius: 100px; }
.qty button { width: 28px; height: 28px; font-size: 15px; }
.qty span { min-width: 26px; text-align: center; font-size: 13px; font-weight: 600; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.ci-right .ci-price { font-weight: 600; font-size: 14px; }
.ci-remove { font-size: 11px; color: var(--ciruela-60); text-decoration: underline; }
.ci-remove:hover { color: var(--alerta); }
.drawer-foot { padding: 20px 26px 26px; border-top: 1px solid rgba(194, 162, 105, .2); background: var(--blanco); }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 15px; }
.drawer-total b { font-size: 19px; }
.drawer-note { font-size: 11.5px; color: var(--ciruela-60); margin-bottom: 14px; }

/* ---------- Quick view / modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 170; display: grid; place-items: center; padding: 20px;
  background: rgba(53, 38, 47, .55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .35s;
}
.modal.on { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--marfil); border-radius: calc(var(--radius) * 1.5); max-width: 860px; width: 100%;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-l); position: relative;
  transform: translateY(26px) scale(.98); transition: transform .4s var(--ease);
}
.modal.on .modal-card { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 38px; height: 38px;
  background: var(--blanco); border-radius: 50%; box-shadow: var(--shadow-s); font-size: 17px;
}
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qv-grid .qv-img { aspect-ratio: 3/4; background: var(--marfil-2); }
.qv-grid .qv-img img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius) * 1.5) 0 0 calc(var(--radius) * 1.5); }
.qv-body { padding: 40px 36px; }

/* Welcome modal */
.welcome-card { max-width: 420px; text-align: center; padding: 46px 38px; }
.welcome-card .monogram { width: 64px; margin: 0 auto 20px; }
.welcome-card h3 { font-size: 27px; margin-bottom: 12px; }
.welcome-card p { font-size: 14px; color: var(--ciruela-60); margin-bottom: 24px; }
.welcome-card .code {
  font-size: 20px; letter-spacing: .3em; font-weight: 700; color: var(--champan-dark);
  border: 1.5px dashed var(--champan); border-radius: var(--radius-s); padding: 12px; margin-bottom: 22px;
  background: rgba(194, 162, 105, .07);
}

/* ---------- Página producto ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; padding: 50px 0 90px; }
.pdp-gallery .main-img {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; background: var(--marfil-2);
  box-shadow: var(--shadow-m); margin-bottom: 12px;
}
.pdp-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; }
.pdp-thumbs button { width: 72px; height: 90px; border-radius: var(--radius-s); overflow: hidden; border: 2px solid transparent; padding: 0; }
.pdp-thumbs button.on { border-color: var(--champan); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { position: sticky; top: 110px; align-self: start; }
.breadcrumb { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ciruela-60); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--champan-dark); }
.pdp-title { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 12px; }
.pdp-price { font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.pdp-price .compare { font-size: 17px; }
.pdp-desc { color: var(--ciruela-60); font-size: 15px; margin: 18px 0 26px; }
.opt-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.opt-label span { color: var(--taupe); font-weight: 500; text-transform: none; letter-spacing: 0; }
.opt-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.opt-chip {
  padding: 10px 20px; border: 1.5px solid rgba(53, 38, 47, .22); border-radius: 100px;
  font-size: 13px; font-weight: 600; transition: all .25s;
}
.opt-chip:hover { border-color: var(--ciruela); }
.opt-chip.on { background: var(--ciruela); color: var(--marfil); border-color: var(--ciruela); }
.pdp-ctas { display: flex; flex-direction: column; gap: 11px; margin: 26px 0 22px; }
.pdp-trust { display: grid; gap: 9px; padding-top: 22px; border-top: 1px solid rgba(194, 162, 105, .25); }
.pdp-trust div { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--ciruela-90); }
.pdp-trust svg { width: 17px; height: 17px; color: var(--champan-dark); flex-shrink: 0; }
.urgency {
  background: rgba(176, 82, 45, .08); border: 1px solid rgba(176, 82, 45, .25); color: var(--alerta);
  border-radius: var(--radius-s); padding: 11px 16px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 9px; margin-bottom: 6px;
}
.viewers { font-size: 12.5px; color: var(--taupe); display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.viewers .dot { width: 7px; height: 7px; background: var(--exito); border-radius: 50%; animation: pulse 1.8s infinite; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--blanco);
  box-shadow: 0 -8px 30px rgba(53, 38, 47, .12); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none; gap: 12px; align-items: center;
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta .sc-info b { font-size: 14px; display: block; }
.sticky-cta .sc-info span { font-size: 13px; color: var(--champan-dark); font-weight: 600; }
.sticky-cta .btn { flex: 1; padding: 13px 18px; }

/* ---------- Tienda ---------- */
.shop-head { padding: 60px 0 30px; text-align: center; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 18px 0; border-block: 1px solid rgba(194, 162, 105, .22); margin-bottom: 40px;
  position: sticky; top: 72px; background: var(--marfil); z-index: 40;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.f-chip {
  padding: 9px 20px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
  border: 1px solid rgba(53, 38, 47, .18); transition: all .25s; letter-spacing: .04em;
}
.f-chip:hover { border-color: var(--ciruela); }
.f-chip.on { background: var(--ciruela); color: var(--marfil); border-color: var(--ciruela); }
.sort-select {
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ciruela);
  border: 1px solid rgba(53, 38, 47, .18); border-radius: 100px; padding: 9px 18px; background: transparent;
}
.result-count { font-size: 13px; color: var(--ciruela-60); }
.empty-state { text-align: center; padding: 80px 20px; grid-column: 1 / -1; }
.empty-state .spark { font-size: 40px; color: var(--champan); display: block; margin-bottom: 16px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 34px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease); animation: waIn .6s 2s var(--ease) both;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float .wa-tip {
  position: absolute; right: 70px; background: var(--blanco); color: var(--ciruela);
  font-size: 12.5px; font-weight: 600; padding: 9px 16px; border-radius: 100px; box-shadow: var(--shadow-m);
  white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all .3s; pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: none; }
@keyframes waIn { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); z-index: 300;
  background: var(--ciruela); color: var(--marfil); padding: 14px 26px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-l); opacity: 0; visibility: hidden;
  transition: all .4s var(--ease); display: flex; align-items: center; gap: 9px;
}
.toast.on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .spark { color: var(--champan); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.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: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .offer-wrap { grid-template-columns: 1fr; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav { display: none; }
  .burger { display: grid; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 40px 0 60px; gap: 36px; }
  .hero-media .frame { aspect-ratio: 4/4.6; }
  .hero-chip { left: 10px; bottom: 20px; }
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-grid .qv-img img { border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) 0 0; }
  .pdp { grid-template-columns: 1fr; gap: 30px; padding: 24px 0 120px; }
  .pdp-info { position: static; }
  .sticky-cta { display: flex; }
  .offer-products { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .prod-actions { opacity: 1; transform: none; }
  .prod-actions .btn-light { display: none; }
  .shop-toolbar { position: static; }
  .trust-strip { gap: 18px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 38px; }
  .benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .count-box { min-width: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
