/* ============================================================
   I Love Being a Woman — styles.css
   Archetype: Glassmorphism Modern × Retro-Pop (Sabrina Carpenter)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --cherry:    #C41E3A;
  --cherry-2:  #A0162E;
  --cherry-3:  #FF4D6D;
  --pink:      #FFB7C5;
  --pink-2:    #FFCDD8;
  --pink-3:    #FFE8EE;
  --peach:     #FFD8CC;
  --cream:     #FFF5F7;
  --cream-2:   #FFF0F3;
  --ivory:     #FFFAF9;
  --ink:       #2C1810;
  --ink-soft:  #5C3530;
  --ink-mute:  #9C7070;
  --glass:     rgba(255,255,255,0.55);
  --glass-2:   rgba(255,255,255,0.35);
  --glass-border: rgba(255,255,255,0.7);
  --shadow-sm: 0 4px 24px rgba(196,30,58,0.10);
  --shadow-md: 0 12px 48px rgba(196,30,58,0.16);
  --shadow-lg: 0 24px 80px rgba(196,30,58,0.22);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-io:   cubic-bezier(0.45, 0, 0.55, 1);
  --nav-h:     72px;
  --r-card:    20px;
  --r-btn:     100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; }
input { font-family: inherit; }

/* ── CURSOR ── */
.cursor { pointer-events: none; position: fixed; inset: 0; z-index: 9999; }
.cursor-ring,
.cursor-dot {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--cherry);
  opacity: 0;
  transition: opacity .25s var(--ease-out), transform .06s linear, width .2s var(--ease-out), height .2s var(--ease-out);
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cherry);
  opacity: 0;
  transition: opacity .2s var(--ease-out);
  margin: -4px 0 0 -4px;
}
.cursor.is-ready .cursor-ring,
.cursor.is-ready .cursor-dot { opacity: 1; }
.cursor.is-hover .cursor-ring { width: 52px; height: 52px; background: rgba(196,30,58,.08); }
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } button { cursor: pointer; } }

/* ── SPLASH ── */
.splash {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease-in), clip-path .6s var(--ease-in);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
.splash-inner { text-align: center; }
.splash-logo { display: flex; align-items: center; gap: .6rem; }
.splash-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: .3em;
  color: var(--cherry);
  animation: splashPulse 1.4s ease-in-out infinite alternate;
}
.splash-star {
  font-size: 1.4rem;
  color: var(--cherry);
  animation: splashSpin 3s linear infinite;
}
@keyframes splashPulse { from { opacity: .6; } to { opacity: 1; } }
@keyframes splashSpin { to { transform: rotate(360deg); } }
.splash-sub {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--ink-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: splashPulse 1s ease-in-out infinite alternate;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  gap: 2rem;
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), backdrop-filter .3s;
}
.nav.is-solid {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 24px rgba(196,30,58,.08);
}
.nav-logo {
  display: flex; align-items: center; gap: .4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .18em;
  color: var(--cherry);
  transition: opacity .2s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: .7; }
.nav-logo-mark { font-size: .9rem; animation: splashSpin 6s linear infinite; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  position: relative;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cherry);
  transition: width .3s var(--ease-out);
}
.nav-link:hover { color: var(--cherry); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--cherry);
  color: #fff;
  border-radius: var(--r-btn);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.nav-cta:hover { background: var(--cherry-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nav-burger {
  display: none;
  margin-left: auto;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
/* burger turns into an X when the menu is open */
.nav-burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  pointer-events: none;
}
.nav-mobile:not([hidden]) { opacity: 1; transform: none; pointer-events: all; }
.nav-mobile-close {
  display: none;
}
.nav-mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}
.nav-mobile-link:hover { color: var(--cherry); }
.nav-mobile-cta {
  padding: .8rem 2.4rem;
  background: var(--cherry);
  color: #fff;
  border-radius: var(--r-btn);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

/* ── REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: elements with data-split never go invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* En mobile: mostrar todo de inmediato — sin animaciones de reveal */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 2rem;
  border-radius: var(--r-btn);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--cherry);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--cherry-2); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  border: 2px solid var(--cherry);
  color: var(--cherry);
}
.btn-ghost:hover { background: var(--cherry); color: #fff; }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: .8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--cherry);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.6;
  margin-top: .8rem;
}
.section-header {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

/* ── ANIMATED MESH GRADIENT ── */
.mesh-base {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.mesh-base::before {
  content: '';
  position: absolute; inset: -50%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,183,197,.55) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255,105,135,.35) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,216,204,.5) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(196,30,58,.15) 0%, transparent 40%);
  filter: blur(60px) saturate(130%);
  animation: meshDrift 18s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { transform: scale(1) rotate(0deg); }
  33%      { transform: scale(1.08) rotate(5deg); }
  66%      { transform: scale(1.04) rotate(-3deg); }
}

/* ── SPARKLES ── */
.sparkle {
  position: absolute;
  font-size: 1rem;
  color: var(--cherry);
  animation: sparklePulse 3s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes sparklePulse {
  0%,100% { opacity: .3; transform: scale(.8) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.3) rotate(20deg); }
}
.s1 { top: 8%;  left: 12%; animation-delay: 0s;    font-size: .9rem; }
.s2 { top: 15%; right: 18%; animation-delay: .5s;   font-size: 1.2rem; }
.s3 { top: 72%; left: 7%;  animation-delay: 1s;    font-size: .7rem; }
.s4 { top: 40%; right: 8%; animation-delay: 1.5s;  font-size: 1.4rem; }
.s5 { top: 88%; right: 22%; animation-delay: .3s;   font-size: .8rem; }
.s6 { top: 55%; left: 3%;  animation-delay: 2s;    font-size: 1.1rem; }
.s7 { top: 25%; left: 45%; animation-delay: .8s;   font-size: .6rem; }
.s8 { top: 80%; left: 55%; animation-delay: 1.8s;  font-size: .9rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav-h);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-inline: clamp(2rem, 8vw, 8rem);
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(255,183,197,.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(255,105,135,.25) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255,216,204,.5) 0%, transparent 60%);
  filter: blur(70px) saturate(130%);
  animation: meshDrift 22s ease-in-out infinite;
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .025;
  pointer-events: none;
}
.hero-sparkles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 1.2rem;
  transition-delay: .1s;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: .96;
  color: var(--ink);
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}
.hero-title em {
  font-style: italic;
  color: var(--cherry);
}
.ht-1 { transition-delay: .15s; }
.ht-2 { transition-delay: .25s; font-size: clamp(3.6rem, 8.5vw, 8rem); }
.ht-3 { transition-delay: .35s; font-size: clamp(3.4rem, 8vw, 7.5rem); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.55;
  margin-bottom: 2.2rem;
  transition-delay: .45s;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  transition-delay: .55s;
}

/* ── HERO VISUAL (CSS-only animated product orbit) ── */
.hero-visual {
  position: relative; z-index: 3;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin-inline: auto;
  transition-delay: .3s;
}

/* Central glow orb */
.hv-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,197,.9) 0%, rgba(196,30,58,.25) 50%, transparent 75%);
  filter: blur(32px);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* Central brand medallion */
.hv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--cherry);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 0 0 8px rgba(196,30,58,.12), 0 0 0 16px rgba(196,30,58,.06), var(--shadow-lg);
  z-index: 10;
  animation: centerSpin 18s linear infinite;
}
@keyframes centerSpin {
  to { box-shadow: 0 0 0 8px rgba(196,30,58,.12), 0 0 0 16px rgba(196,30,58,.06), var(--shadow-lg); }
}
.hv-center-star {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  animation: splashSpin 4s linear infinite;
}
.hv-center-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  letter-spacing: .15em; color: #fff;
  line-height: 1;
}
.hv-center-sub {
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* Floating product cards — orbit positions */
.hv-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: .7rem .9rem;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255,183,197,.4);
  z-index: 8;
  min-width: 110px;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.hv-card:hover {
  animation-play-state: paused;
  box-shadow: 0 12px 40px rgba(196,30,58,.18), 0 4px 16px rgba(196,30,58,.1);
  border-color: rgba(196,30,58,.3);
}
.hv-card-emoji { font-size: 1.4rem; line-height: 1; }
.hv-card-name { font-size: .72rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.hv-card-price { font-size: .8rem; font-weight: 700; color: var(--cherry); }
.hv-card-badge {
  font-size: .62rem; font-weight: 700;
  background: var(--cherry); color: #fff;
  border-radius: 4px; padding: 1px 6px;
  letter-spacing: .06em; text-transform: uppercase;
  width: fit-content;
}

/* Card positions + individual bob animations */
.hv-card-1 { top: 2%;   left: 50%; transform: translateX(-50%); animation: cardBob1 3.2s ease-in-out infinite; }
.hv-card-2 { top: 18%;  right: 2%; animation: cardBob2 3.8s ease-in-out infinite; }
.hv-card-3 { bottom: 18%; right: 2%; animation: cardBob3 3.5s ease-in-out infinite; }
.hv-card-4 { bottom: 2%;  left: 50%; transform: translateX(-50%); animation: cardBob4 4.1s ease-in-out infinite; }
.hv-card-5 { top: 18%;  left: 2%;  animation: cardBob5 3.6s ease-in-out infinite; }

@keyframes cardBob1 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes cardBob2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-12px) rotate(-1deg)} }
@keyframes cardBob3 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(1deg)} }
@keyframes cardBob4 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes cardBob5 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-11px) rotate(-1.5deg)} }

/* Floating sparkles around orbit */
.hv-spark {
  position: absolute;
  color: var(--cherry);
  font-size: .9rem;
  animation: sparklePulse 3s ease-in-out infinite;
  pointer-events: none;
}
.sp1 { top: 12%;  left: 20%;  animation-delay: 0s;    font-size: .7rem; }
.sp2 { top: 10%;  right: 22%; animation-delay: .7s;   font-size: 1rem; }
.sp3 { bottom: 14%; left: 22%; animation-delay: 1.3s;  font-size: .8rem; }
.sp4 { bottom: 12%; right: 20%; animation-delay: .4s;  font-size: .6rem; }
.sp5 { top: 50%;  left: 8%;  animation-delay: 1s;    font-size: .7rem; }

/* Rating badge */
.hv-badge {
  position: absolute; top: 44%; left: -7%; right: auto;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: .65rem 1rem;
  display: flex; flex-direction: column; gap: .1rem;
  font-size: .78rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
  z-index: 11;
  animation: cardBob2 4s ease-in-out infinite;
}
.hv-badge span:first-child { color: var(--cherry); font-size: .9rem; }

/* Responsive */
@media (max-width: 768px) {
  /* Contenedor más alto para dar más espacio entre cards */
  .hero-visual {
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 1 / 1.3;
  }
  .hv-center { width: 90px; height: 90px; }
  .hv-center-text { font-size: .95rem; }
  .hv-card { min-width: 88px; padding: .5rem .7rem; }
  .hv-card-emoji { font-size: 1.1rem; }
  .hv-card-name { font-size: .64rem; }

  /* Reposicionar cards en mobile — orbita equilibrada sin solapar el centro */
  .hv-card-1 { top: 1%;    left: 50%; transform: translateX(-50%); }  /* arriba centro */
  .hv-card-2 { top: 14%;   right: 0%; }                               /* arriba derecha */
  .hv-card-5 { top: 14%;   left: 0%;  }                               /* arriba izquierda */
  .hv-card-3 { bottom: 10%; right: 0%; }                              /* abajo derecha */
  .hv-card-4 { bottom: 1%;  left: 50%; transform: translateX(-50%); } /* abajo centro */

  /* Badge: abajo izquierda para no tapar el centro */
  .hv-badge  { top: auto; bottom: 16%; left: 0%; right: auto; }
}

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--ink-mute);
  animation: scrollBob 2.2s ease-in-out infinite;
}
.scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cherry));
}
.scroll-label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--cherry);
  overflow: hidden;
  padding: .9rem 0;
  position: relative; z-index: 4;
}
.marquee-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ── PRODUCTS ── */
.products {
  padding: 6rem clamp(2rem, 7vw, 7rem);
  background: var(--ivory);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* Individual product cards inside the main page products section */
.index-pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.index-pp-grid .pp-card {
  margin: 0;
}
.index-pp-grid .pp-card-img {
  height: 260px;
}
.index-pp-grid .pp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card {
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,183,197,.25);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product-card--spice {
  border: 2px solid var(--cherry);
  grid-column: span 1;
}

.pc-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pc-img {
  transition: transform .5s var(--ease-out);
}
.product-card:hover .pc-img { transform: scale(1.07); }
.pc-overlay {
  position: absolute; inset: 0;
  background: rgba(196,30,58,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.product-card:hover .pc-overlay { opacity: 1; }
.pc-btn {
  padding: .65rem 1.4rem;
  background: #fff;
  color: var(--cherry);
  border-radius: var(--r-btn);
  font-size: .85rem;
  font-weight: 700;
  transition: transform .2s;
}
.pc-btn:hover { transform: scale(1.05); }
.pc-emoji {
  position: absolute; top: .8rem; left: .8rem;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.pc-hot-badge {
  position: absolute; top: .8rem; right: .8rem;
  background: var(--cherry);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .7rem;
  border-radius: var(--r-btn);
  animation: splashPulse 1.8s ease-in-out infinite alternate;
}
.pc-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pc-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cherry);
}
.pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.pc-name em { font-style: italic; color: var(--cherry); }
.pc-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pc-products { display: flex; flex-direction: column; gap: .3rem; margin-top: .4rem; }
.pc-product {
  font-size: .8rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .4rem;
  padding: .25rem 0;
  border-bottom: 1px solid rgba(255,183,197,.2);
}
.pc-product strong { color: var(--cherry); margin-left: auto; font-weight: 700; }
.pc-product em {
  background: var(--pink-3);
  color: var(--cherry);
  font-style: normal;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── STATS ── */
.stats-band {
  background: var(--cherry);
  padding: 4rem clamp(2rem, 7vw, 7rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: .4rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ── SPICE CUBES FEATURE ── */
.spice-feature {
  padding: 7rem clamp(2rem, 7vw, 7rem);
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.spice-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 50%, rgba(255,183,197,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 70%, rgba(196,30,58,.1) 0%, transparent 55%);
  filter: blur(80px);
  pointer-events: none;
  animation: meshDrift 20s ease-in-out infinite reverse;
}
.spice-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.spice-desc {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 1.2rem 0 1.8rem;
  max-width: 46ch;
}
.spice-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 2.4rem;
}
.spice-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .95rem;
  color: var(--ink);
}
.spice-check { color: var(--cherry); font-size: .9rem; }

.spice-card-wrap {
  position: relative;
  border-radius: 2rem 6rem 2rem 6rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.spice-img { height: 100%; object-fit: cover; }
.spice-floating-tag {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-btn);
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--cherry);
  white-space: nowrap;
  animation: tagBob 3s ease-in-out infinite;
}
.t1 { top: 1.5rem; right: -1rem; animation-delay: 0s; }
.t2 { top: 40%; right: -1.5rem; animation-delay: .8s; }
.t3 { bottom: 2rem; left: -1rem; animation-delay: 1.6s; }
@keyframes tagBob {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

/* ── BESTSELLERS ── */
.bestsellers {
  padding: 6rem clamp(2rem, 7vw, 7rem);
  background: var(--ivory);
}
.bestsellers-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.bs-card {
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(255,183,197,.25);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.bs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bs-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #fff;
}
.bs-img {
  object-fit: contain;
  object-position: center;
  padding: 1.1rem;
  transition: transform .5s var(--ease-out);
}
.bs-card:hover .bs-img { transform: scale(1.05); }
.bs-badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--cherry);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 4px;
}
.bs-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.bs-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cherry);
}
.bs-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.bs-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cherry);
  margin-top: .2rem;
}
.bs-add {
  margin-top: auto;
  padding: .6rem 1rem;
  background: var(--pink-3);
  border-radius: var(--r-btn);
  font-size: .8rem;
  font-weight: 700;
  color: var(--cherry);
  text-align: center;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}
.bs-add:hover { background: var(--cherry); color: #fff; transform: scale(1.03); }

/* ── ABOUT ── */
.about {
  padding: 7rem clamp(2rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.about-img-wrap {
  position: relative;
  border-radius: 6rem 2rem 6rem 2rem;
  overflow: visible;
}
.about-img {
  border-radius: 6rem 2rem 6rem 2rem;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-deco { position: absolute; inset: 0; pointer-events: none; }
.about-star {
  position: absolute;
  font-size: 1.8rem;
  color: var(--cherry);
  animation: sparklePulse 3.5s ease-in-out infinite;
}
.as1 { top: -1rem; right: -1rem; animation-delay: 0s; }
.as2 { bottom: 2rem; right: -2rem; animation-delay: 1s; font-size: 1.2rem; }
.as3 { bottom: -1rem; left: 1rem; animation-delay: 2s; font-size: 1rem; }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 50ch;
}
.about-values {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-top: .8rem;
}
.av-item {
  display: flex; align-items: center; gap: .4rem;
  background: var(--pink-3);
  border: 1px solid rgba(196,30,58,.15);
  border-radius: var(--r-btn);
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.av-icon { color: var(--cherry); font-size: .7rem; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem clamp(2rem, 7vw, 7rem);
  background: var(--ivory);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,183,197,.25);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card--accent {
  background: var(--cherry);
  border-color: var(--cherry);
}
.testi-card--accent .testi-text,
.testi-card--accent .testi-name,
.testi-card--accent .testi-stars { color: #fff; }
.testi-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.testi-footer { display: flex; align-items: center; gap: .85rem; margin-top: .8rem; }
.testi-avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--cherry); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card--accent .testi-avatar { background: rgba(255,255,255,.25); }
.testi-author { display: flex; flex-direction: column; gap: .15rem; }
.testi-stars { color: var(--cherry); letter-spacing: .1em; font-size: .9rem; }
.testi-card--accent .testi-stars { color: #ffd6e0; }
.testi-name { font-size: .82rem; font-weight: 600; color: var(--ink-mute); }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 7rem clamp(2rem, 7vw, 7rem);
  background: var(--cream-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(255,183,197,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(255,105,135,.3) 0%, transparent 55%);
  filter: blur(80px) saturate(130%);
  animation: meshDrift 24s ease-in-out infinite;
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.nl-sparkles { position: absolute; inset: -2rem; pointer-events: none; }
.nl-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 1rem auto 2.4rem;
  max-width: 44ch;
}
.nl-form { display: flex; flex-direction: column; gap: .8rem; }
.nl-input-wrap {
  display: flex;
  background: #fff;
  border-radius: var(--r-btn);
  border: 2px solid rgba(196,30,58,.2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s;
}
.nl-input-wrap:focus-within { border-color: var(--cherry); box-shadow: var(--shadow-md); }
.nl-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: .9rem 1.4rem;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
}
.nl-input::placeholder { color: var(--ink-mute); }
.nl-submit {
  background: var(--cherry);
  color: #fff;
  border: none;
  padding: .9rem 1.6rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: none;
  transition: background .2s;
  white-space: nowrap;
}
.nl-submit:hover { background: var(--cherry-2); }
.nl-submit-success { color: #fff; }
.nl-note { font-size: .78rem; color: var(--ink-mute); }
@media (max-width: 480px) {
  /* En pantallas chicas el botón pasa abajo, ancho completo — nunca se corta */
  .nl-input-wrap { flex-direction: column; border-radius: 1.4rem; }
  .nl-input { padding: .95rem 1.2rem; text-align: center; }
  .nl-submit { padding: .95rem 1rem; width: 100%; }
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 4rem clamp(2rem, 7vw, 7rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: .2em;
  margin-bottom: .4rem;
}
.footer-tagline {
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
}
.footer-copy-short { font-size: .78rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .2rem;
}
.footer-link {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  width: fit-content;
}
.footer-link:hover { color: var(--pink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-legal { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-credits-note { font-size: .72rem; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .index-pp-grid { grid-template-columns: repeat(2, 1fr); }
  .bestsellers-track { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Ocultar links de texto */
  .nav-link, .nav-cta { display: none; }
  .nav-links { gap: 0; }
  .nav-burger { display: flex; }


  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 2rem);
    gap: 2.5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  /* Hero: texto arriba, visual abajo */
  .hero-content { order: 1; }
  .hero-visual {
    order: 2;
    max-width: 300px;
    margin-inline: auto;
  }
  .hero-img-wrap {
    order: 2;
    border-radius: 2rem;
    aspect-ratio: 16/10;
    max-height: 50vw;
  }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-inline: auto; hyphens: none; -webkit-hyphens: none; }
  /* Hero eyebrow — menos letter-spacing para que no se corte */
  .hero-eyebrow { letter-spacing: .06em; font-size: .72rem; }
  /* Section eyebrows en hero de categorías */
  .pp-hero .section-eyebrow { letter-spacing: .06em; }
  .hero-title { align-items: center; }
  .hero-scroll-hint { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .index-pp-grid { grid-template-columns: 1fr; }
  .bestsellers-track { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bestseller images: menos altas en móvil */
  .bs-img-wrap { aspect-ratio: 4/3; }

  .spice-content { grid-template-columns: 1fr; gap: 3rem; }
  .spice-visual { order: -1; }
  .spice-card-wrap { border-radius: 2rem; max-height: 300px; }
  .t1, .t2, .t3 { right: 0.5rem; left: auto; }

  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { border-radius: 2rem; aspect-ratio: 4/3; }
  .about-img-wrap { border-radius: 2rem; }

  .testimonials-grid { grid-template-columns: 1fr; }

  /* Padding de secciones — más compacto en móvil */
  .products    { padding-block: 4rem 6rem; }
  .stats-band  { padding-block: 3rem; }
  .spice-feature { padding-block: 3rem 2rem; }
  .bestsellers { padding-block: 4rem; }
  .about       { padding-block: 4rem; }
  .testimonials { padding-block: 4rem; }
  .newsletter  { padding-block: 4rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .bestsellers-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
}

/* ── CART / SHOPPING BAG ── */
.nav-cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--pink-3);
  border: 1.5px solid rgba(196,30,58,.2);
  border-radius: 50%;
  color: var(--cherry);
  cursor: none;
  transition: background .2s, transform .2s var(--ease-out), box-shadow .2s;
  flex-shrink: 0;
}
.nav-cart:hover { background: var(--cherry); color: #fff; transform: scale(1.08); box-shadow: var(--shadow-sm); }
.nav-cart.is-bump { animation: cartBump .45s var(--ease-out); }
@keyframes cartBump {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.32) rotate(-10deg); }
  55%  { transform: scale(0.94) rotate(5deg); }
  75%  { transform: scale(1.06) rotate(-2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* bag fill rect — animates from bottom up via JS transform */
.bag-svg { overflow: visible; }
.bag-fill {
  transition: transform .65s cubic-bezier(.22,.68,0,1.2), opacity .4s ease;
  transform: translateY(0px);
  opacity: 0;
}

/* overflowing (6+ items): sparkle glow on the button */
.nav-cart[data-fill="full"] {
  animation: bagGlow 1.8s ease-in-out infinite;
  border-color: var(--cherry);
}
@keyframes bagGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,58,0); }
  50%       { box-shadow: 0 0 0 5px rgba(196,30,58,.18), 0 0 16px rgba(196,30,58,.12); }
}

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--cherry);
  color: #fff;
  border-radius: 9px;
  font-size: .65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  opacity: 0;
  transform: scale(0);
  transition: opacity .2s, transform .2s var(--ease-out);
  pointer-events: none;
}
.cart-count.has-items { opacity: 1; transform: scale(1); }

/* ── FLY TO CART ANIMATION ── */
.fly-item {
  position: fixed;
  z-index: 99999;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(196,30,58,.4);
  will-change: transform, opacity;
}

/* ── CART PANEL ── */
.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 9990;
  box-shadow: -8px 0 60px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  overflow: hidden;
}
.cart-panel.is-open { transform: translateX(0); }

.cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(255,183,197,.3);
}
.cart-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
}
.cart-panel-close {
  background: none; border: none;
  font-size: 1.2rem; color: var(--ink-mute);
  cursor: none;
  transition: color .2s;
  padding: .2rem;
}
.cart-panel-close:hover { color: var(--cherry); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%;
  gap: .8rem; color: var(--ink-mute); text-align: center;
}
.cart-empty-icon { font-size: 2.5rem; }
.cart-empty p { font-size: .9rem; }

.cart-item {
  display: flex; gap: 1rem; align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,183,197,.2);
  animation: cartItemIn .3s var(--ease-out);
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}
.cart-item-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .88rem; font-weight: 600; color: var(--ink); }
.cart-item-price { font-size: .82rem; color: var(--cherry); font-weight: 700; margin-top: .15rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: .5rem;
  justify-content: space-between;
}

/* Counter group: − 1 + */
.cart-item-qty .qty-group {
  display: flex; align-items: center; gap: 0;
  background: var(--pink-3);
  border-radius: var(--r-btn);
  overflow: hidden;
  border: 1.5px solid rgba(196,30,58,.18);
}
.cart-item-qty .qty-dec,
.cart-item-qty .qty-inc {
  width: 30px; height: 30px;
  border: none;
  background: transparent;
  color: var(--cherry);
  font-size: 1rem; font-weight: 700;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
  border-radius: 0;
}
.cart-item-qty .qty-dec:hover,
.cart-item-qty .qty-inc:hover { background: var(--cherry); color: #fff; }
.cart-item-qty span {
  font-size: .88rem; font-weight: 700;
  color: var(--ink);
  min-width: 28px; text-align: center;
  border-left: 1px solid rgba(196,30,58,.15);
  border-right: 1px solid rgba(196,30,58,.15);
  padding: 0 4px;
  line-height: 30px;
}

/* Remove button — right side */
.cart-item-remove {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-mute);
  cursor: none;
  background: none;
  border: none;
  padding: .25rem .4rem;
  transition: color .2s;
  text-transform: uppercase;
}
.cart-item-remove:hover { color: var(--cherry); }

/* ── SHIPPING BAR ── */
.cart-shipping-bar {
  display: none;
  padding: .9rem 1.6rem .6rem;
  border-bottom: 1px solid rgba(255,183,197,.2);
}
.csb-track {
  height: 6px;
  background: var(--pink-3);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.csb-fill {
  height: 100%;
  border-radius: 99px;
  transition: width .5s cubic-bezier(.22,.68,0,1.2), background .4s;
  width: 0%;
}
.csb-label {
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.csb-label strong { color: var(--cherry); }
.csb-label--unlocked { color: var(--cherry); font-weight: 600; }
.cart-free-ship {
  font-size: .78rem;
  font-weight: 700;
  color: var(--cherry);
  background: var(--pink-3);
  padding: .3rem .8rem;
  border-radius: 99px;
  display: inline-block;
}

.cart-footer {
  padding: 1.2rem 1.6rem;
  border-top: 1px solid rgba(255,183,197,.3);
  display: flex; flex-direction: column; gap: .8rem;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
}
.cart-total-label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.cart-total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: var(--cherry);
}
.cart-checkout {
  width: 100%;
  padding: .9rem;
  background: var(--cherry);
  color: #fff;
  border: none;
  border-radius: var(--r-btn);
  font-size: .95rem; font-weight: 700;
  cursor: none;
  transition: background .2s, transform .2s var(--ease-out);
  text-align: center;
}
.cart-checkout:hover { background: var(--cherry-2); transform: translateY(-2px); }

.cart-overlay {
  position: fixed; inset: 0; z-index: 9989;
  background: rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }

/* ── CARRITO FLOTANTE EN MOBILE ── */
/* Esta regla va al final del archivo para sobreescribir position:relative */
@media (max-width: 768px) {
  .nav-cart {
    position: fixed !important;
    bottom: 1.6rem;
    right: 1.4rem;
    left: auto;
    width: 54px;
    height: 54px;
    z-index: 9990;
    box-shadow: 0 6px 24px rgba(196,30,58,.3), 0 2px 8px rgba(0,0,0,.12);
    background: var(--cherry) !important;
    color: #fff !important;
    border-color: transparent !important;
  }
  .nav-cart .bag-svg { width: 24px; height: 24px; }
  .cart-count { top: -5px; right: -5px; }
  /* Transición suave al mostrarse/ocultarse */
  .nav-cart {
    transition: opacity .25s ease, transform .25s var(--ease-out), background .2s, box-shadow .2s !important;
  }
}

/* ── ALL PRODUCTS PAGE (index.html full listing) ── */
.all-products { padding-block: 5rem; }
.all-products-category {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1.5px solid var(--pink-3);
}
.all-products-category:first-of-type { margin-top: 2rem; border-top: none; }
.apc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.apc-emoji { font-size: 1.6rem; }
.apc-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}
.apc-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cherry);
  text-decoration: none;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: opacity .2s;
}
.apc-link:hover { opacity: .7; }

/* Override pp-listing padding when used inside all-products section */
.all-products .pp-listing { padding: 0; background: none; }
.all-products .pp-grid { gap: 1.5rem; }

/* ── Card tilt: preserve 3D so inner image floats forward ── */
.pp-card, .bs-card {
  will-change: transform;
  transform-style: preserve-3d;
}
.pp-card-img, .bs-card-img {
  transform-style: preserve-3d;
}

/* ── Magnetic button base: don't let other transitions fight it ── */
.btn-primary, .nav-cta, .pp-card-footer .btn, .bs-add {
  will-change: transform;
}

/* ── Social proof strip ── */
.pp-social-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.45rem 0 0.6rem;
}
.pp-stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.pp-rating-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #555;
  font-weight: 500;
}
.pp-sold-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cherry);
  background: rgba(196,30,58,0.07);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

/* ── Sticky ATC bar ── */
#sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.09);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 999;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
#sticky-atc.is-visible { transform: translateY(0); }
.satc-info { display: flex; flex-direction: column; gap: 0.15rem; }
.satc-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.satc-price {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--cherry);
  font-weight: 600;
}
.satc-btn {
  flex-shrink: 0;
}
@media (max-width: 500px) {
  #sticky-atc { padding: 0.7rem 1rem; gap: .7rem; }
  .satc-info { flex-shrink: 1; min-width: 0; }
  .satc-name { max-width: 120px; font-size: 0.82rem; }
  .satc-btn {
    font-size: .78rem;
    padding: .6rem .9rem;
    white-space: nowrap;
    letter-spacing: .01em;
  }
}

/* Cuando la barra sticky está visible, el carrito flotante sube para no taparla */
@media (max-width: 768px) {
  body.satc-open .nav-cart {
    bottom: 5.4rem;
  }
}

/* ── Exit intent overlay ── */
#exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,5,5,0.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#exit-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.exit-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.exit-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.1rem; color: #999;
  cursor: pointer; padding: 0.3rem;
  line-height: 1;
  transition: color 0.2s;
}
.exit-close:hover { color: var(--ink); }
.exit-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 0.6rem;
}
.exit-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.exit-title em { color: var(--cherry); font-style: italic; }
.exit-sub {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.exit-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(196,30,58,0.06);
  border: 1.5px dashed rgba(196,30,58,0.3);
  border-radius: 0.75rem;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.3rem;
}
.exit-code {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cherry);
}
.exit-copy-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--cherry);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.exit-copy-btn:hover { opacity: 0.85; }
.exit-cta {
  width: 100%;
  justify-content: center;
}
.exit-skip {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════════
   3D GLAM UPGRADE — depth, gloss & shine (girly luxe)
   ════════════════════════════════════════════════════ */

/* ── Hero visual: real 3D scene with depth layers ── */
@media (hover: hover) and (pointer: fine) {
  .hero-visual {
    transform-style: preserve-3d;
    will-change: transform;
  }
  /* center medallion pops toward the viewer */
  .hero-visual .hv-center {
    transform: translate(-50%, -50%) translateZ(60px);
  }
  /* glow orb sinks behind */
  .hero-visual .hv-orb {
    transform: translate(-50%, -50%) translateZ(-50px);
  }
}

/* ── Product cards: glossy light that follows the mouse ── */
.pp-card, .bs-card { position: relative; }
.pp-card::after, .bs-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, .35) 0%,
    rgba(255, 183, 197, .12) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 3;
}
.pp-card:hover::after, .bs-card:hover::after { opacity: 1; }

/* ── Buttons: glossy shine sweep ── */
.btn-primary, .bs-add, .nav-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .bs-add::before, .nav-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, .35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-primary:hover::before, .bs-add:hover::before, .nav-cta:hover::before {
  left: 130%;
}

/* ── Hero CTA: soft 3D shadow lift ── */
@media (hover: hover) {
  .hero-actions .btn-primary {
    box-shadow:
      0 4px 0 rgba(140, 16, 38, .9),
      0 12px 28px rgba(196, 30, 58, .25);
    transition: transform .2s ease, box-shadow .2s ease, background .2s;
  }
  .hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 7px 0 rgba(140, 16, 38, .9),
      0 18px 36px rgba(196, 30, 58, .35);
  }
  .hero-actions .btn-primary:active {
    transform: translateY(2px);
    box-shadow:
      0 2px 0 rgba(140, 16, 38, .9),
      0 8px 18px rgba(196, 30, 58, .2);
  }
}
