/* Vitanova Store — store.css */

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Nunito+Sans:wght@400;600;700&display=swap');

/* ── Variables (light) ──────────────────────────────────────── */
:root {
  --c-brand:    #2D6A4F;
  --c-brand-l:  #52B788;
  --c-brand-d:  #1B4332;
  --c-brand-f:  rgba(82,183,136,.12);
  --c-accent:   #D4A373;
  --c-accent-l: #FEFAE0;
  --c-bg:       #F8FAF5;
  --c-bg-2:     #FFFFFF;
  --c-bg-3:     #EEF4EE;
  --c-bg-4:     #E0EDE0;
  --c-text:     #1A2E22;
  --c-text-2:   #3D5A45;
  --c-muted:    #6B8F74;
  --c-border:   #C8E6C9;
  --c-border-2: #A8D5B0;
  --c-green:    #10B981;
  --c-red:      #EF4444;
  --c-amber:    #F59E0B;
  --r:          8px;
  --r-sm:       4px;
  --r-lg:       16px;
  --r-full:     9999px;
  --sh:         0 2px 12px rgba(45,106,79,.08);
  --sh-lg:      0 8px 32px rgba(45,106,79,.12);
  --sh-xl:      0 20px 60px rgba(45,106,79,.18);
  --hh:         64px;
  --ph:         36px;
  --cnh:        48px;
  --sw:         240px;
  --cw:         380px;
  --t:          .2s ease;
  --ts:         .35s cubic-bezier(.4,0,.2,1);
  --grad:       linear-gradient(135deg,#2D6A4F,#52B788);
  --ff-serif:   'Lora', Georgia, serif;
  --ff-sans:    'Nunito Sans', sans-serif;
}

/* ── Variables (dark) ───────────────────────────────────────── */
[data-theme="dark"] {
  --c-brand:    #52B788;
  --c-brand-l:  #74C69D;
  --c-brand-d:  #2D6A4F;
  --c-brand-f:  rgba(82,183,136,.15);
  --c-accent:   #D4A373;
  --c-bg:       #0D1A12;
  --c-bg-2:     #112218;
  --c-bg-3:     #1A3327;
  --c-bg-4:     #234433;
  --c-text:     #E8F5E9;
  --c-text-2:   #B2DFBB;
  --c-muted:    #7FB98A;
  --c-border:   #2D4A35;
  --c-border-2: #3D6047;
  --sh:         0 2px 12px rgba(0,0,0,.5);
  --sh-lg:      0 8px 32px rgba(0,0,0,.6);
  --sh-xl:      0 20px 60px rgba(0,0,0,.75);
  --grad:       linear-gradient(135deg,#52B788,#74C69D);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; -webkit-tap-highlight-color:transparent; overflow-x:hidden }
body {
  font-family: var(--ff-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
  transition: background var(--ts), color var(--ts);
}
h1,h2,h3,h4,h5 {
  font-family: var(--ff-serif);
  font-weight: 600;
}
a { color:inherit; text-decoration:none }
button { font-family:inherit; cursor:pointer; border:none; background:none }
img { max-width:100%; display:block }
ul,ol { list-style:none }
::-webkit-scrollbar { width:5px; height:5px }
::-webkit-scrollbar-track { background:var(--c-bg-3) }
::-webkit-scrollbar-thumb { background:var(--c-brand); border-radius:var(--r-full) }

/* ── Promo bar ─────────────────────────────────────────────── */
.promo-bar {
  background: var(--c-brand-d);
  color: #fff;
  height: var(--ph);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.promo-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: promoScroll 40s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  width: max-content;
}
.promo-scroll span {
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  padding-right: 48px;
  letter-spacing: .01em;
  font-family: var(--ff-sans);
}
.promo-bar:hover .promo-scroll { animation-play-state:paused }
@keyframes promoScroll { from { transform:translateX(0) } to { transform:translateX(-50%) } }

/* ── Header ────────────────────────────────────────────────── */
.store-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t), background var(--ts), border-color var(--ts);
}
.store-header.scrolled { box-shadow: var(--sh-lg) }

.header-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--hh);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.btn-hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  transition: background var(--t);
  flex-shrink: 0;
}
.btn-hamburger:hover { background:var(--c-bg-3) }

/* Logo */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width:40px; height:40px; flex-shrink:0 }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-brand);
  letter-spacing: -.3px;
  font-family: var(--ff-serif);
  transition: color var(--ts);
}
.logo-tagline {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  font-family: var(--ff-sans);
  transition: color var(--ts);
}

/* Search desktop */
.search-wrap { flex:1; max-width:560px }
.search-inner { position:relative; display:flex; align-items:center }
.search-input {
  width: 100%;
  height: 44px;
  background: var(--c-bg-3);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 0 52px 0 18px;
  font-size: 14px;
  font-family: var(--ff-sans);
  color: var(--c-text);
  outline: none;
  transition: border-color var(--t), background var(--ts), box-shadow var(--t);
}
.search-input::placeholder { color:var(--c-muted) }
.search-input:focus {
  border-color: var(--c-brand);
  background: var(--c-bg-2);
  box-shadow: 0 0 0 3px var(--c-brand-f);
}
.search-btn {
  position: absolute;
  right: 6px;
  width: 34px; height: 34px;
  background: var(--grad);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t), box-shadow var(--t);
}
.search-btn:hover { transform:scale(1.06); box-shadow:0 2px 8px rgba(45,106,79,.4) }
.search-btn svg { color:#fff }

/* Mobile search */
.search-wrap-mobile {
  display: none;
  padding: 8px 14px 10px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
}
.search-wrap-mobile .search-inner { max-width:none }

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}
.icon-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-2);
  position: relative;
  transition: background var(--t), color var(--t);
}
.icon-btn:hover { background:var(--c-bg-3); color:var(--c-brand) }

/* Theme icon toggle */
[data-theme="light"] .icon-moon { display:none !important }
[data-theme="dark"]  .icon-sun  { display:none !important }
[data-theme="dark"]  .icon-moon { display:block !important }

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  min-width: 18px; height: 18px;
  background: var(--c-brand);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
  line-height: 1;
}
.cart-badge.pulse { animation:badgePulse .4s ease }
@keyframes badgePulse {
  0%   { transform:scale(1) }
  40%  { transform:scale(1.5) }
  70%  { transform:scale(.9) }
  100% { transform:scale(1) }
}

/* ── Category nav ──────────────────────────────────────────── */
.cat-nav {
  position: sticky;
  top: var(--hh);
  z-index: 90;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  height: var(--cnh);
  transition: background var(--ts), border-color var(--ts);
}
.cat-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display:none }
#cat-pills { display:contents }
.cat-pill {
  flex-shrink: 0;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  background: transparent;
  color: var(--c-text-2);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.cat-pill:hover { border-color:var(--c-brand); color:var(--c-brand); background:var(--c-brand-f) }
.cat-pill.active { background:var(--c-brand); border-color:var(--c-brand); color:#fff; font-weight:700 }

/* ── Mobile nav drawer ─────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset:0;
  background: rgba(0,0,0,.5);
  z-index: 800;
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display:block }
.mobile-nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px,88vw);
  background: var(--c-bg-2);
  z-index: 801;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--ts);
  box-shadow: 8px 0 40px rgba(0,0,0,.2);
  overflow-y: auto;
}
.mobile-nav-drawer.open { transform:translateX(0) }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav-header .logo-name { font-size:18px; font-weight:700; color:var(--c-brand); font-family:var(--ff-serif) }
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items:center; justify-content:center;
  color: var(--c-muted);
  transition: background var(--t);
}
.mobile-nav-close:hover { background:var(--c-bg-3) }
.mobile-nav-cats {
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-cats h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 8px 18px 6px;
  font-family: var(--ff-sans);
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--t), color var(--t);
  cursor: pointer;
  font-family: var(--ff-sans);
}
.mobile-nav-item:hover { background:var(--c-bg-3); color:var(--c-brand) }
.mobile-nav-item .nav-icon { font-size:20px; width:28px; text-align:center }
.mobile-nav-divider { height:1px; background:var(--c-border); margin:8px 18px }

/* ── Hero banner carousel ──────────────────────────────────── */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: clamp(480px,65vh,680px);
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,rgba(13,26,18,.82) 0%,rgba(13,26,18,.55) 38%,rgba(13,26,18,.18) 62%,transparent 82%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-slide-text { max-width: 560px }
.hero-slide-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem,4.2vw,3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.hero-slide-h1 em {
  font-style: italic;
  color: #A8E6BF;
}
.hero-slide-p {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  font-family: var(--ff-sans);
}
.hero-eyebrow {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #A8E6BF;
  border: 1px solid rgba(168,230,191,.35);
  padding: .35rem 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-family: var(--ff-sans);
  background: rgba(168,230,191,.08);
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  background: var(--c-brand-l);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--c-brand-l);
  border-radius: var(--r-full);
  transition: background .15s, transform .15s, box-shadow .15s;
  cursor: pointer;
}
.btn-hero-primary:hover { background:#74C69D; border-color:#74C69D; transform:translateY(-2px); box-shadow:0 6px 22px rgba(82,183,136,.45) }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: transparent;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  border-radius: var(--r-full);
  transition: border-color .15s, color .15s;
  cursor: pointer;
}
.btn-hero-secondary:hover { border-color:#A8E6BF; color:#A8E6BF }
.hero-cta-row { display:flex; gap:1rem; flex-wrap:wrap }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s, border-color .15s;
  border: 1px solid rgba(168,230,191,.3);
}
.hero-arrow:hover { background:rgba(45,106,79,.55); border-color:var(--c-brand-l) }
.hero-arrow--prev { left:1.5rem }
.hero-arrow--next { right:1.5rem }
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1.5px solid rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active { background:#fff; border-color:#fff; transform:scale(1.25) }
.hero-trust-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .65rem 1rem;
  background: rgba(13,26,18,.65);
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
  z-index: 5;
}
.hero-trust-strip span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-family: var(--ff-sans);
}
.trust-sep { color:#A8E6BF; opacity:.6 }

/* Hero visual card (decorative) */
.hero-visual-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  position: relative;
  flex-shrink: 0;
}
.hero-visual-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--c-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  box-shadow: 0 3px 10px rgba(212,163,115,.45);
  font-family: var(--ff-sans);
}
.hero-visual-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-align: center;
  font-family: var(--ff-serif);
}
.hero-visual-price {
  font-size: 20px;
  font-weight: 700;
  color: #A8E6BF;
  font-family: var(--ff-sans);
}

/* ── Section separator ─────────────────────────────────────── */
.section-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-sep::before,
.section-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,transparent,var(--c-brand));
}
.section-sep::after { background:linear-gradient(to left,transparent,var(--c-brand)) }
.section-sep-icon {
  font-size: .75rem;
  color: var(--c-brand);
  letter-spacing: .2em;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--ff-sans);
}

/* ── Section header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem,2.5vw,2rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-text);
}
.section-line {
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(to right,transparent,var(--c-brand),transparent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ── Flash Deals ────────────────────────────────────────────── */
.flash-deals {
  background: linear-gradient(135deg,#0D1A12,#1B4332 45%,#0D1A12);
  padding: 28px 0;
  overflow: hidden;
}
.flash-header {
  max-width: 1440px;
  margin: 0 auto 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.flash-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash-icon { font-size:24px; animation:flickerFlash 1.8s ease-in-out infinite }
@keyframes flickerFlash { 0%,100%{opacity:1} 50%{opacity:.45} }
.flash-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: var(--ff-serif);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(168,230,191,.3);
  padding: 6px 12px;
  border-radius: var(--r-sm);
}
.cd-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 26px;
}
.cd-seg span {
  font-size: 18px;
  font-weight: 700;
  color: #A8E6BF;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: var(--ff-sans);
}
.cd-seg small {
  font-size: 9px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: var(--ff-sans);
}
.cd-sep { font-size:16px; font-weight:700; color:#A8E6BF; margin-bottom:8px }
.flash-ver-todo {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  border-bottom: 1px dashed rgba(255,255,255,.3);
  transition: color var(--t);
  font-family: var(--ff-sans);
}
.flash-ver-todo:hover { color:#fff }

/* Flash nav row */
.flash-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 10px;
  max-width: 1440px;
  margin: 0 auto;
}
.flash-nav { display:flex; gap:.4rem }
.flash-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s, border-color .15s;
}
.flash-nav-btn:hover { background:var(--c-brand); color:#fff; border-color:var(--c-brand) }
.flash-scroll {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 8px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.flash-scroll::-webkit-scrollbar { display:none }
.flash-scroll .product-card { flex-shrink:0; width:180px }

/* ── Collections section ───────────────────────────────────── */
.colecciones-section {
  padding: 4rem 0 2rem;
  background: var(--c-bg-3);
  transition: background var(--ts);
}
.colecciones-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.coleccion-card {
  position: relative;
  aspect-ratio: .82/1;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 12px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.coleccion-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(0,0,0,.3) }
.coleccion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.22);
  transition: background .3s;
}
.coleccion-card:hover .coleccion-overlay { background:rgba(0,0,0,.08) }
.coleccion-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}
.coleccion-eyebrow {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .4rem;
  font-weight: 700;
  font-family: var(--ff-sans);
}
.coleccion-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.coleccion-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: var(--ff-sans);
}
.coleccion-cta {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D4E8BE;
  font-weight: 700;
  transition: letter-spacing .2s;
  font-family: var(--ff-sans);
}
.coleccion-card:hover .coleccion-cta { letter-spacing:.22em }

/* Collection background gradients — Vitanova */
.coleccion--suplementos { background:linear-gradient(145deg,#1B4332 0%,#2D6A4F 50%,#40916C 100%) }
.coleccion--vitaminas   { background:linear-gradient(145deg,#1B4332 0%,#40916C 50%,#74C69D 100%) }
.coleccion--proteinas   { background:linear-gradient(145deg,#1B4332 0%,#2D6A4F 50%,#D4A373 100%) }
.coleccion--bienestar   { background:linear-gradient(145deg,#1B4332 0%,#52B788 50%,#FEFAE0 100%) }

/* ── Product card ───────────────────────────────────────────── */
.product-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
  position: relative;
}
.product-card:not(.skeleton):hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-brand);
}
.product-card.skeleton {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg,var(--c-bg-3) 25%,var(--c-bg-4) 50%,var(--c-bg-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  border-color: transparent;
  cursor: default;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--c-bg-3);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img { transform:scale(1.06) }
.product-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 36px;
  color: rgba(255,255,255,.9);
}
.product-card__img-placeholder span:last-child {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .65;
  font-family: var(--ff-sans);
}

/* Quick-view overlay */
.product-card__quickview {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 0 10px 10px;
  background: linear-gradient(to top,rgba(13,26,18,.75) 0%,transparent 100%);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card__quickview { transform:translateY(0) }
.product-card__quickview-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: .55rem;
  background: rgba(45,106,79,.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(82,183,136,.3);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .15s;
  border-radius: var(--r-sm);
}
.product-card__quickview-btn:hover { background:rgba(45,106,79,.4) }

.product-card__wishlist {
  position: absolute;
  top: 8px; right: 8px;
  width: 32px; height: 32px;
  background: var(--c-bg-2);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
  border: 1px solid var(--c-border);
}
.product-card:hover .product-card__wishlist { opacity:1 }
.product-card__wishlist:hover { transform:scale(1.18) }
.product-card__wishlist svg { width:16px; height:16px; color:var(--c-muted) }
.product-card__wishlist:hover svg,
.product-card__wishlist.active svg { color:var(--c-red) }

/* Badges */
.badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  z-index: 2;
  font-family: var(--ff-sans);
}
.badge-sale  { background:var(--c-brand); color:#fff }
.badge-new   { background:#7C4DFF; color:#fff }
.badge-flash { background:var(--c-brand-l); color:#1B4332 }
.badge-dest  { background:var(--c-accent); color:#fff }

.product-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
.product-card__brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: var(--ff-sans);
}
.product-card__name {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.product-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.product-card__stars .star { color:var(--c-amber); font-size:13px }
.product-card__stars .star.empty { color:var(--c-border) }
.product-card__stars .count { color:var(--c-muted); font-size:11px; margin-left:3px; font-family:var(--ff-sans) }

.price-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.price-current { font-size:18px; font-weight:700; color:var(--c-brand); line-height:1; font-family:var(--ff-sans) }
.price-original { font-size:13px; color:var(--c-muted); text-decoration:line-through; line-height:1; font-family:var(--ff-sans) }
.price-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-green);
  background: rgba(16,185,129,.1);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
}

.product-card__btns { display:flex; gap:6px; margin-top:8px }
.product-card__add {
  flex: 1;
  height: 40px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: transform var(--t), box-shadow var(--t);
  border: none;
  cursor: pointer;
}
.product-card__add:hover { transform:scale(1.02); box-shadow:0 4px 14px rgba(45,106,79,.4) }
.product-card__add:active { transform:scale(.98) }
.product-card__add svg { width:15px; height:15px }
.product-card__detail {
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-brand);
  background: var(--c-brand-f);
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-brand);
  transition: background var(--t), color var(--t), transform var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card__detail:hover { background:var(--c-brand); color:#fff; transform:translateY(-1px) }

/* ── Store section ──────────────────────────────────────────── */
.store-section {
  max-width: 1440px;
  margin: 32px auto;
  padding: 0 20px;
}
.store-layout { display:flex; gap:24px; align-items:flex-start }

/* ── Sidebar filters ────────────────────────────────────────── */
.filters-sidebar { width:var(--sw); flex-shrink:0 }
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.filter-title { font-size:16px; font-weight:600; color:var(--c-text); font-family:var(--ff-serif) }
.filter-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-brand);
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity var(--t);
  font-family: var(--ff-sans);
}
.filter-clear:hover { opacity:.7 }
.filter-group {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 14px;
  margin-bottom: 10px;
  transition: background var(--ts), border-color var(--ts);
}
.filter-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--ff-sans);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--c-text-2);
  transition: color var(--t);
  user-select: none;
  font-family: var(--ff-sans);
}
.filter-option:hover { color:var(--c-brand) }
.filter-option input[type="checkbox"] { accent-color:var(--c-brand); width:14px; height:14px }

.price-range-wrap { padding:4px 0 }
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 10px;
  font-family: var(--ff-sans);
}
input[type="range"].price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,var(--c-brand) var(--progress,100%),var(--c-border) var(--progress,100%));
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
input[type="range"].price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-brand);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(45,106,79,.35);
}

/* ── Products area ──────────────────────────────────────────── */
.products-area { flex:1; min-width:0 }
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 10px;
  flex-wrap: wrap;
}
.products-count { font-size:14px; color:var(--c-muted); font-family:var(--ff-sans) }
.products-count strong { color:var(--c-text) }
.sort-wrap { display:flex; align-items:center; gap:8px }
.sort-label { font-size:13px; color:var(--c-muted); font-family:var(--ff-sans) }
.sort-select {
  height: 36px;
  padding: 0 30px 0 12px;
  background: var(--c-bg-2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-text);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B8F74' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--t);
}
.sort-select:focus { border-color:var(--c-brand) }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.load-more-wrap { display:flex; justify-content:center; margin-top:32px }
.btn-load-more {
  height: 44px;
  padding: 0 32px;
  background: transparent;
  border: 2px solid var(--c-brand);
  color: var(--c-brand);
  border-radius: var(--r-full);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--t), color var(--t), transform var(--t);
}
.btn-load-more:hover { background:var(--c-brand); color:#fff; transform:translateY(-1px) }

/* Empty state */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--c-muted);
}
.empty-state .icon { font-size:52px; margin-bottom:14px; opacity:.55 }
.empty-state h3 { font-size:18px; font-weight:600; color:var(--c-text-2); margin-bottom:8px; font-family:var(--ff-serif) }
.empty-state p { font-size:14px; max-width:300px; margin:0 auto; font-family:var(--ff-sans) }

/* ── Collection page hero ───────────────────────────────────── */
.col-hero {
  height: clamp(260px,38vh,400px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.col-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.col-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,rgba(13,26,18,.85) 0%,rgba(13,26,18,.55) 45%,rgba(13,26,18,.2) 75%,transparent 100%);
}
.col-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.col-hero-eyebrow {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #A8E6BF;
  font-weight: 700;
  margin-bottom: .8rem;
  display: block;
  font-family: var(--ff-sans);
}
.col-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.col-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  line-height: 1.65;
  font-family: var(--ff-sans);
}
.col-badge {
  display: inline-block;
  margin-top: .75rem;
  background: rgba(168,230,191,.18);
  border: 1px solid rgba(168,230,191,.4);
  color: #D4E8BE;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
}

/* ── Footer ─────────────────────────────────────────────────── */
.store-footer {
  background: #0D1A12;
  color: rgba(255,255,255,.65);
  padding: 52px 20px 28px;
  margin-top: 64px;
}
[data-theme="light"] .store-footer { background:#0D1A12 }
.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo span { font-size:22px; font-weight:700; color:#fff; font-family:var(--ff-serif) }
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 220px;
  margin-bottom: 18px;
  font-family: var(--ff-sans);
}
.footer-social { display:flex; gap:8px }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.social-btn:hover { background:var(--c-brand-f); border-color:var(--c-brand-l); transform:translateY(-2px) }
.footer-links { display:flex; flex-direction:column }
.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--ff-sans);
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  padding: 5px 0;
  transition: color var(--t), padding-left var(--t);
  font-family: var(--ff-sans);
}
.footer-links a:hover { color:#A8E6BF; padding-left:5px }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.payment-methods { display:flex; align-items:center; gap:8px; flex-wrap:wrap }
.pm-label { font-size:12px; color:rgba(255,255,255,.35); font-family:var(--ff-sans) }
.pm-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-sans);
}
.pm-nequi     { color:#00C1AF }
.pm-daviplata { color:#E83B8E }
.footer-copy { font-size:12px; color:rgba(255,255,255,.28); font-family:var(--ff-sans) }
.footer-copy a { color:rgba(255,255,255,.42) }
.footer-copy a:hover { color:#A8E6BF }

/* ── Cart drawer ────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset:0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  opacity: 0; pointer-events:none;
  backdrop-filter: blur(3px);
  transition: opacity var(--ts);
}
.cart-overlay.open { opacity:1; pointer-events:all }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: var(--cw);
  height: 100vh;
  background: var(--c-bg-2);
  z-index: 501;
  box-shadow: var(--sh-xl);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ts);
}
.cart-drawer.open { transform:translateX(0) }
.cart-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size:18px; font-weight:600; color:var(--c-text); font-family:var(--ff-serif) }
.cart-close {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  transition: background var(--t), color var(--t);
}
.cart-close:hover { background:var(--c-bg-3); color:var(--c-text) }
.cart-items { flex:1; overflow-y:auto; padding:16px 20px }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 12px;
  color: var(--c-muted);
  text-align: center;
}
.cart-empty p { font-size:14px; font-family:var(--ff-sans) }
.btn-ver-productos {
  height: 38px; padding:0 20px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  cursor: pointer;
}
.cart-item { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--c-border) }
.cart-item:last-child { border-bottom:none }
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--c-bg-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}
.cart-item__info { flex:1; min-width:0 }
.cart-item__name {
  font-size: 13px; font-weight:600; color:var(--c-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  font-family: var(--ff-sans);
}
.cart-item__price { font-size:15px; font-weight:700; color:var(--c-brand); font-family:var(--ff-sans) }
.cart-item__qty { display:flex; align-items:center; gap:8px; margin-top:8px }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border);
  display: flex; align-items:center; justify-content:center;
  font-size: 16px; font-weight:700; color:var(--c-text-2);
  transition: border-color var(--t), background var(--t), color var(--t);
  line-height: 1;
  font-family: var(--ff-sans);
}
.qty-btn:hover { border-color:var(--c-brand); background:var(--c-brand-f); color:var(--c-brand) }
.qty-num { font-size:14px; font-weight:700; min-width:20px; text-align:center; color:var(--c-text); font-family:var(--ff-sans) }
.cart-item__remove {
  color: var(--c-muted); padding:4px;
  border-radius: var(--r-sm);
  align-self: flex-start; margin-top:2px;
  transition: color var(--t), background var(--t);
}
.cart-item__remove:hover { color:var(--c-red); background:rgba(239,68,68,.1) }
.cart-item__remove svg { width:16px; height:16px }
.cart-footer { padding:14px 20px 20px; border-top:1px solid var(--c-border) }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--c-muted);
  font-family: var(--ff-sans);
}
.cart-total-price { font-size:22px; font-weight:700; color:var(--c-text); font-family:var(--ff-sans) }
.cart-shipping-note { font-size:12px; color:var(--c-muted); margin-bottom:14px; font-family:var(--ff-sans) }
.btn-checkout {
  width: 100%; height: 50px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
  border-radius: var(--r);
  font-family: var(--ff-sans);
  font-size: 15px; font-weight:700;
  display: flex; align-items:center; justify-content:center; gap:8px;
  border: none; cursor:pointer;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  margin-bottom: 8px;
}
.btn-checkout:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(37,211,102,.45) }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--r);
  padding: 12px 16px;
  min-width: 270px; max-width: 360px;
  box-shadow: var(--sh-lg);
  font-size: 13px; font-weight:600; color:var(--c-text);
  opacity: 0;
  transform: translateX(130%);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
  line-height: 1.4;
  font-family: var(--ff-sans);
}
.toast.show { opacity:1; transform:translateX(0); pointer-events:all }

/* ── Back to top ─────────────────────────────────────────────── */
.btn-backtop {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 44px; height: 44px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 14px rgba(45,106,79,.4);
  opacity: 0; pointer-events:none;
  transform: translateY(20px);
  transition: opacity var(--t), transform var(--t);
  z-index: 200;
}
.btn-backtop.visible { opacity:1; pointer-events:all; transform:translateY(0) }
.btn-backtop:hover { transform:translateY(-3px) }

/* ── Product Detail Drawer ───────────────────────────────── */
.pd-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 700;
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.pd-overlay.open { display:block; pointer-events:all }
.pd-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(540px,100vw);
  background: var(--c-bg-2);
  z-index: 800;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ts);
  box-shadow: -8px 0 40px rgba(0,0,0,.25);
  pointer-events: none;
}
.pd-drawer.open { transform:translateX(0); pointer-events:all }
.pd-close-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--c-border);
}
.pd-close-bar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--ff-sans);
}
.pd-close-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items:center; justify-content:center;
  color: var(--c-muted);
  transition: background var(--t), color var(--t);
}
.pd-close-btn:hover { background:var(--c-bg-3); color:var(--c-text) }
.pd-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 16px;
  min-height: 0;
}

/* PD Gallery */
.pd-gallery-wrap {
  position: relative;
  margin: 0 -20px 18px;
}
.pd-gallery {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-gallery::-webkit-scrollbar { display:none }
.pd-gallery-img {
  width: 100%;
  min-width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--c-bg-3);
  flex-shrink: 0;
  cursor: zoom-in;
  transition: opacity .2s;
}
.pd-gallery-img:hover { opacity:.92 }
.pd-gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-gallery-thumbs::-webkit-scrollbar { display:none }
.pd-gallery-thumb {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--c-bg-3);
  border: 2px solid var(--c-border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.pd-gallery-thumb.active { border-color:var(--c-brand) }
.pd-gallery-expand {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.pd-gallery-expand:hover { background:rgba(45,106,79,.6) }

/* PD Body */
.pd-body { padding-top: 14px }
.pd-sku {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
  font-family: var(--ff-sans);
}
.pd-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pd-price-row { display:flex; align-items:baseline; gap:10px; margin-bottom:6px }
.pd-price {
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-brand);
}
.pd-price-original { font-size:16px; color:var(--c-muted); text-decoration:line-through; font-family:var(--ff-sans) }
.pd-discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  background: rgba(16,185,129,.1);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
}
.pd-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 15px;
}
.pd-stars .star { color:var(--c-amber) }
.pd-stars .star.empty { color:var(--c-border) }
.pd-stars .count { font-size:12px; color:var(--c-muted); font-family:var(--ff-sans) }

/* Trust row */
.pd-trust-row {
  display: flex;
  justify-content: space-around;
  gap: 6px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 10px;
}
.pd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.pd-trust-item svg { color:var(--c-brand); opacity:.85 }
.pd-trust-item span {
  font-size: .63rem;
  color: var(--c-muted);
  text-align: center;
  letter-spacing: .02em;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--ff-sans);
}

/* Accordion */
.pd-accordion { margin-top: 14px; border-top:1px solid var(--c-border) }
.pd-acc-item { border-bottom:1px solid var(--c-border) }
.pd-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: .84rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .01em;
  text-align: left;
  transition: color .15s;
}
.pd-acc-header:hover { color:var(--c-brand) }
.pd-acc-chev { flex-shrink:0; transition:transform .28s ease; color:var(--c-muted) }
.pd-acc-item.open .pd-acc-chev { transform:rotate(180deg) }
.pd-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .3s ease;
}
.pd-acc-item.open .pd-acc-body { max-height:480px; padding-bottom:14px }
.pd-acc-desc {
  font-size: .86rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
  font-family: var(--ff-sans);
}
.pd-acc-list {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-family: var(--ff-sans);
}
.pd-acc-list li { margin-bottom:2px }

/* Tags inside accordion */
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pd-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--c-bg-3);
  color: var(--c-muted);
  border: 1px solid var(--c-border);
  font-family: var(--ff-sans);
}

/* Variants */
.pd-variants-pills { display:flex; flex-wrap:wrap; gap:6px }
.pd-variant-pill {
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  background: transparent;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-text-2);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.pd-variant-pill:hover,
.pd-variant-pill.active {
  border-color: var(--c-brand);
  background: var(--c-brand-f);
  color: var(--c-brand);
}

/* PD Actions bar */
.pd-actions {
  flex-shrink: 0;
  padding: 14px 20px 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--c-bg-2);
}
.pd-actions-btns { display:flex; gap:10px }
.pd-btn-add {
  flex: 1;
  height: 50px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--t), box-shadow var(--t);
}
.pd-btn-add:hover { transform:translateY(-1px); box-shadow:0 4px 16px rgba(45,106,79,.35) }
.pd-btn-wa {
  height: 50px;
  width: 56px;
  border-radius: var(--r);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t), box-shadow var(--t);
  flex-shrink: 0;
}
.pd-btn-wa:hover { transform:translateY(-1px); box-shadow:0 4px 14px rgba(37,211,102,.35) }

/* PD Skeleton */
.pd-skeleton { padding-top:16px }
.pd-skeleton .pd-sk-img {
  width: 100%;
  height: 280px;
  background: var(--c-bg-3);
  border-radius: var(--r);
  margin-bottom: 14px;
  animation: skeletonPulse 1.6s ease-in-out infinite;
}
.pd-skeleton .pd-sk-line {
  height: 16px;
  background: var(--c-bg-3);
  border-radius: var(--r-full);
  margin-bottom: 10px;
  animation: skeletonPulse 1.6s ease-in-out infinite;
}
@keyframes skeletonPulse {
  0%,100% { opacity:1 }
  50%      { opacity:.45 }
}

/* ── Lightbox ────────────────────────────────────────────────── */
#lightbox-overlay {
  display: none;
  position: fixed; inset:0;
  background: rgba(0,0,0,.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox-overlay.open { display:flex !important }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r);
  animation: lbIn .22s ease;
}
@keyframes lbIn { from { opacity:0; transform:scale(.94) } to { opacity:1; transform:scale(1) } }

/* ── Collection page empty state ────────────────────────────── */
.col-empty {
  text-align: center;
  padding: 80px 20px;
}
.col-empty h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 10px;
}
.col-empty p { font-size:14px; color:var(--c-muted); max-width:320px; margin:0 auto; font-family:var(--ff-sans) }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns:repeat(3,1fr) }
  .footer-top { grid-template-columns:1fr 1fr 1fr }
  .footer-brand { grid-column:1/-1 }
  .footer-desc { max-width:400px }
  .colecciones-grid { grid-template-columns:repeat(2,1fr) }
}
@media (max-width: 960px) {
  .products-grid { grid-template-columns:repeat(3,1fr) }
  .filters-sidebar { display:none }
  .footer-top { grid-template-columns:1fr 1fr }
  .hero-visual-card { display:none }
  .hero-slide-h1 { font-size:clamp(1.5rem,5vw,2.6rem) }
}
@media (max-width: 768px) {
  .colecciones-grid { grid-template-columns:repeat(2,1fr) }
  .hero-banner { height:clamp(360px,55vh,520px) }
  .hero-trust-strip { gap:.8rem }
  .hero-trust-strip span { font-size:.62rem }
}
@media (max-width: 640px) {
  :root { --hh:56px; --cw:100vw; --ph:28px }
  .promo-scroll span { font-size:11px }
  .header-inner { padding:0 12px; gap:8px }
  .logo-name { font-size:17px }
  .logo-tagline { display:none }
  .search-wrap { display:none }
  .search-wrap-mobile { display:block }
  .btn-hamburger { display:flex }
  .hero-banner { height:clamp(300px,60vw,420px) }
  .hero-slide-h1 { font-size:clamp(1.35rem,6vw,2rem) }
  .hero-slide-p { font-size:.85rem; margin-bottom:1.2rem }
  .hero-trust-strip { display:none }
  .hero-arrow { width:38px; height:38px }
  .hero-arrow--prev { left:.75rem }
  .hero-arrow--next { right:.75rem }
  .colecciones-grid { grid-template-columns:repeat(2,1fr); gap:8px }
  .coleccion-name { font-size:1.1rem }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:10px }
  .product-card__name { font-size:12px }
  .price-current { font-size:15px }
  .product-card__add { height:36px; font-size:12px }
  .store-section { padding:0 10px; margin:20px auto }
  .flash-header { padding:0 14px }
  .flash-scroll { padding:0 14px 8px }
  .flash-title { font-size:17px }
  .cd-seg span { font-size:15px }
  .footer-top { grid-template-columns:1fr; gap:24px }
  .footer-bottom { flex-direction:column; align-items:flex-start }
  .toast { min-width:0; max-width:calc(100vw - 24px); bottom:12px; right:12px; left:12px }
  .btn-backtop { bottom:60px; right:14px }
  .pd-drawer { width:100vw }
  .pd-gallery-img { height:240px }
  .section-sep { padding:1.5rem }
  .col-title { font-size:clamp(1.6rem,8vw,2.5rem) }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns:repeat(2,1fr); gap:8px }
  .product-card__body { padding:8px 10px 10px }
}
