/** Shopify CDN: Minification failed

Line 1326:27 Unexpected "\x02"

**/
/* ===== VARICLICK — premium dark + gold ===== */

:root {
  --bg: #171717;
  --bg-2: #1a1a1a;
  --bg-3: #1f1f1f;
  --bg-4: #262626;
  --line: rgba(201, 168, 76, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #C9A84C;
  --gold-2: #d9bd6a;
  --gold-dim: #9c7f30;
  --cream: #e8e0d0;
  --white: #FFFFFF;
  --muted: #8a8478;
  --danger: #e07a5f;

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.6);

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; line-height: 1.15; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.muted { color: var(--muted); }
.cream { color: var(--cream); }
.gold { color: var(--gold); }

/* ===== Top announcement bar ===== */
.announce {
  background: #0f0f0f;
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line);
}
.announce-track {
  display: flex; justify-content: center; align-items: center; gap: 36px;
  padding: 10px 18px; min-height: 38px; text-align: center; flex-wrap: wrap;
}
.announce-track span { display: inline-flex; align-items: center; gap: 8px; }
.announce-track .sep { color: rgba(201,168,76,0.35); }
@media (max-width: 720px) {
  .announce-track { gap: 14px; font-size: 11px; }
  .announce-track .sep { display: none; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; flex-direction: column;
  padding: 14px 0 0; gap: 14px;
}
.header-top {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; min-height: 60px;
}
.header-top .left  { display: flex; gap: 12px; justify-content: flex-start; align-items: center; }
.header-top .right { display: flex; gap: 6px; justify-content: flex-end; align-items: center; }
.logo {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--white);
}
.logo .dot { color: var(--gold); }
.logo img { height: 56px; width: auto; display: block; }
@media (max-width: 720px) { .logo img { height: 38px; } }
.nav {
  display: flex; gap: 38px; justify-content: center;
  padding: 0 0 14px;
}
.nav a {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); position: relative; padding: 8px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .25s ease, left .25s ease;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; left: 0; }
.actions { display: contents; }
.icon-btn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s ease, color .2s ease; position: relative;
}
.icon-btn:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.cart-count {
  position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px;
  background: var(--gold); color: #0f0f0f; font-size: 10px; font-weight: 700;
  border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; font-family: var(--sans);
}
.mobile-toggle { display: none; }
@media (max-width: 960px) {
  .header-inner { padding: 0; }
  .header-top { min-height: 64px; }
  .header-top .left { justify-content: flex-start; }
  .nav { display: none; }
  .logo img { height: 40px; }
  .mobile-toggle { display: inline-flex; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(15,15,15,0.98);
  backdrop-filter: blur(20px); z-index: 100; padding: 80px 32px;
  display: none; flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif); font-size: 28px; padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .close {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; transition: all .25s ease;
  white-space: nowrap; cursor: pointer; border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold); color: #0f0f0f; border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-1px); color: #0f0f0f; }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: var(--white); color: #0f0f0f; }
.btn-ghost {
  background: transparent; color: var(--cream); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: clamp(560px, 78vh, 760px); overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #1f1c14 0%, #131311 55%, #0c0c0c 100%);
  display: flex; align-items: center;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(201,168,76,0.06), transparent 35%);
}
.hero-inner {
  position: relative; z-index: 2; padding: 100px 0;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px); font-weight: 400;
  line-height: 1.02; margin: 0 0 26px;
  font-style: italic; letter-spacing: -0.02em;
}
.hero h1 .emph {
  font-style: italic; color: var(--gold); font-family: var(--serif);
}
.hero h1 .reg { font-style: normal; }
.hero p.lead {
  font-size: 17px; color: var(--cream); max-width: 480px; margin: 0 0 38px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 44px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.06em;
}
.hero-meta strong { color: var(--cream); font-weight: 500; }

/* Hero collage */
.collage {
  position: relative; height: 560px;
}
.collage-item {
  position: absolute; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(180deg, #1c1c1a 0%, #111110 100%);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.05);
}
.collage-item .swatch { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.collage-item svg { width: 62%; height: 62%; opacity: 0.92; }
.collage-item .price-tag {
  position: absolute; bottom: 10px; left: 10px; padding: 5px 10px;
  background: rgba(15,15,15,0.85); border: 1px solid var(--line); border-radius: 2px;
  font-size: 11px; color: var(--gold); letter-spacing: 0.1em;
}
.collage-1 { width: 56%; height: 64%; top: 4%; right: 0; transform: rotate(2deg); }
.collage-2 { width: 42%; height: 46%; bottom: 4%; left: 4%; transform: rotate(-3deg); }
.collage-3 { width: 30%; height: 32%; top: 8%; left: 0; transform: rotate(-5deg); }
.collage-4 { width: 28%; height: 30%; bottom: 8%; right: 12%; transform: rotate(4deg); }

/* Animation: hero fade-in */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
  from { opacity: 0; transform: translateY(20px) rotate(var(--r, 0deg)); }
  to   { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); }
}
.hero h1, .hero p.lead, .hero-ctas, .hero-eyebrow, .hero-meta {
  animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-eyebrow { animation-delay: .1s; }
.hero h1 { animation-delay: .2s; }
.hero p.lead { animation-delay: .35s; }
.hero-ctas { animation-delay: .5s; }
.hero-meta { animation-delay: .65s; }
.collage-1 { --r: 2deg; animation: heroFloat 1s cubic-bezier(.2,.7,.2,1) .3s backwards; }
.collage-2 { --r: -3deg; animation: heroFloat 1s cubic-bezier(.2,.7,.2,1) .45s backwards; }
.collage-3 { --r: -5deg; animation: heroFloat 1s cubic-bezier(.2,.7,.2,1) .6s backwards; }
.collage-4 { --r: 4deg; animation: heroFloat 1s cubic-bezier(.2,.7,.2,1) .75s backwards; }

/* Hero variant: centered editorial */
.hero.variant-editorial .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 120px 0; }
.hero.variant-editorial .hero-inner > .hero-text { max-width: 760px; margin: 0 auto; }
.hero.variant-editorial .hero-meta { justify-content: center; }
.hero.variant-editorial .hero-ctas { justify-content: center; }
.hero.variant-editorial p.lead { margin-left: auto; margin-right: auto; }
.hero.variant-editorial .collage { display: none; }
.hero.variant-editorial .marquee { display: block; }

/* Hero variant: split product showcase */
.hero.variant-showcase { min-height: clamp(620px, 86vh, 820px); }
.hero.variant-showcase .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 40px; padding: 80px 0; }
.hero.variant-showcase .collage { display: none; }
.hero.variant-showcase .showcase { display: block; }

.showcase { display: none; position: relative; height: 600px; }
.showcase-hero {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #232017 0%, #14130f 100%);
  border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
}
.showcase-hero svg { width: 60%; height: 60%; }
.showcase-badge {
  position: absolute; top: 24px; left: 24px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 6px 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; background: rgba(15,15,15,0.7);
}
.showcase-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(15,15,15,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 3px;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.showcase-card .pname { font-family: var(--serif); font-size: 22px; }
.showcase-card .pmeta { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-top: 4px; }
.showcase-card .pprice { font-family: var(--serif); font-size: 26px; color: var(--gold); }
.showcase-card .pold { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* Marquee for editorial hero */
.marquee { display: none; margin-top: 72px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.marquee-track { display: flex; gap: 60px; animation: marquee 38s linear infinite; white-space: nowrap; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--cream); opacity: 0.85; }
.marquee span .dot { color: var(--gold); margin: 0 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 70px 0; }
  .hero.variant-showcase .hero-inner { grid-template-columns: 1fr; }
  .collage { height: 360px; max-width: 480px; margin: 24px auto 0; }
  .showcase { height: 460px; }
}

/* ===== Benefits bar ===== */
.benefits {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: #131313;
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 36px 0;
}
.benefit { display: flex; gap: 16px; align-items: center; padding: 0 18px; border-right: 1px solid var(--line-soft); }
.benefit:last-child { border-right: 0; }
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--line); border-radius: 50%;
}
.benefit-title { font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 0.02em; }
.benefit-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 0; gap: 20px; }
  .benefit { border-right: 0; padding: 0 8px; }
}

/* ===== Section header ===== */
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
}
.section-head .eyebrow { margin-bottom: 10px; }
.section-head .link {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 4px; border-bottom: 1px solid var(--gold);
}

/* ===== Product grid ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.product-card {
  position: relative; background: var(--bg-2);
  border: 1px solid var(--line-soft); border-radius: 3px;
  transition: transform .35s ease, border-color .25s ease, box-shadow .35s ease;
  overflow: hidden; display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px); border-color: var(--line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.15);
}
.product-media {
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--p-bg-a, #1f1d17) 0%, var(--p-bg-b, #100f0d) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-media svg {
  width: 56%; height: 56%; transition: transform .6s ease;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.4));
}
.product-card:hover .product-media svg { transform: scale(1.06); }
.product-badges {
  position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px;
}
.badge {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px; font-weight: 600;
}
.badge-new { background: var(--gold); color: #0f0f0f; }
.badge-sale { background: #2a1f1c; color: var(--gold); border: 1px solid var(--gold); }
.badge-hot  { background: rgba(231,108,67,0.15); color: #e07a5f; border: 1px solid rgba(231,108,67,0.4); }
.product-wish {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(15,15,15,0.5); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; backdrop-filter: blur(6px);
}
.product-wish:hover { background: var(--gold); color: #0f0f0f; }
.product-sold {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 10px; color: var(--cream); letter-spacing: 0.08em;
  background: rgba(15,15,15,0.65); border: 1px solid var(--line-soft);
  padding: 4px 8px; border-radius: 2px; backdrop-filter: blur(4px);
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.product-cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.product-name {
  font-family: var(--serif); font-size: 18px; line-height: 1.25; color: var(--white);
  font-weight: 500; min-height: 44px;
}
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.product-price { font-family: var(--serif); font-size: 22px; color: var(--gold); font-weight: 500; }
.product-old   { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-rating { display: flex; gap: 3px; color: var(--gold); font-size: 12px; margin-top: 2px; align-items: center; }
.product-rating .count { color: var(--muted); margin-left: 6px; }
.product-add {
  margin-top: 14px; width: 100%; padding: 12px;
  background: transparent; color: var(--white);
  border: 1px solid var(--line); border-radius: 2px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  transition: all .2s ease;
}
.product-add:hover { background: var(--gold); color: #0f0f0f; border-color: var(--gold); }
.product-add.added { background: #1f2418; color: #9dc97c; border-color: #3a4a2a; }

/* ===== Promo banner ===== */
.promo-banner {
  position: relative; padding: 88px 0; overflow: hidden;
  background: linear-gradient(110deg, #0c0c0c 0%, #1a1611 55%, #2a2010 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.promo-banner::before {
  content: '50%'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; font-size: 28vw; color: rgba(201,168,76,0.06);
  font-weight: 700; pointer-events: none; line-height: 1; user-select: none;
}
.promo-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
}
.promo-text h2 {
  font-size: clamp(36px, 5vw, 64px); font-style: italic; font-weight: 400;
  color: var(--white); margin-bottom: 14px;
}
.promo-text h2 .gold { color: var(--gold); }
.promo-text p { color: var(--cream); max-width: 520px; font-size: 16px; }

/* Countdown */
.countdown {
  display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap;
}
.countdown-cell {
  min-width: 64px; padding: 12px 14px; text-align: center;
  border: 1px solid var(--line); border-radius: 2px; background: rgba(15,15,15,0.6);
}
.countdown-num { font-family: var(--serif); font-size: 28px; color: var(--gold); line-height: 1; }
.countdown-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
@media (max-width: 720px) {
  .promo-inner { grid-template-columns: 1fr; }
}

/* ===== Categories ===== */
.cats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cats-grid .cat-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cats-grid .cat-card:nth-child(2) { grid-column: span 2; }
.cats-grid .cat-card:nth-child(3) { grid-column: span 2; }
.cats-grid .cat-card:nth-child(4) { grid-column: span 2; }
.cats-grid .cat-card:nth-child(5) { grid-column: span 2; }
.cat-card {
  position: relative; overflow: hidden; border-radius: 3px;
  border: 1px solid var(--line-soft); aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--c-a, #1e1c16) 0%, var(--c-b, #0d0c0a) 100%);
  display: flex; align-items: flex-end; padding: 22px;
  transition: transform .35s ease;
}
.cats-grid .cat-card:nth-child(1) { aspect-ratio: auto; }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  transition: background .3s;
}
.cat-card:hover::after { background: linear-gradient(180deg, rgba(201,168,76,0.18) 0%, rgba(0,0,0,0.85) 100%); }
.cat-card:hover { transform: translateY(-2px); }
.cat-card .cat-illus {
  position: absolute; top: 0; left: 0; right: 0; bottom: 30%;
  display: flex; align-items: center; justify-content: center; color: rgba(201,168,76,0.3);
  transition: color .3s, transform .35s ease;
}
.cat-card:hover .cat-illus { color: rgba(201,168,76,0.7); transform: scale(1.05); }
.cat-card .cat-illus svg { width: 50%; max-height: 70%; }
.cat-card .cat-info { position: relative; z-index: 2; }
.cat-card .cat-name { font-family: var(--serif); font-size: 24px; color: var(--white); }
.cat-card .cat-count { font-size: 12px; color: var(--cream); margin-top: 4px; letter-spacing: 0.08em; }
.cat-card .cat-arrow {
  position: absolute; top: 22px; right: 22px; z-index: 2; opacity: 0; transition: opacity .3s, transform .3s;
  color: var(--gold);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translate(2px, -2px); }
@media (max-width: 960px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid .cat-card:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
  .cats-grid .cat-card:nth-child(n) { grid-column: span 1; }
}

/* ===== New arrivals carousel ===== */
.carousel-wrap { position: relative; }
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: 280px;
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 26px; margin: 0 -6px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.carousel > * { scroll-snap-align: start; }
.carousel-nav {
  position: absolute; top: -56px; right: 0; display: flex; gap: 8px;
}
.carousel-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.carousel-nav button:hover { background: var(--gold); color: #0f0f0f; border-color: var(--gold); }

/* ===== Testimonials ===== */
.testimonials { background: #1a1a1a; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: #131313; border: 1px solid var(--line-soft); border-radius: 3px;
  padding: 30px 28px; position: relative;
}
.test-card::before {
  content: '“'; position: absolute; top: -16px; left: 22px;
  font-family: var(--serif); font-size: 90px; color: var(--gold); line-height: 1;
}
.test-stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 14px; }
.test-quote { color: var(--cream); font-size: 15px; line-height: 1.7; margin-bottom: 22px; min-height: 110px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 600; color: #0f0f0f;
}
.test-name { font-weight: 500; color: var(--white); }
.test-loc { font-size: 12px; color: var(--muted); }
.test-verified { margin-left: auto; font-size: 11px; color: #9dc97c; display: inline-flex; align-items: center; gap: 4px; }

/* ===== Trust badges ===== */
.trust { padding: 56px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-cell {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border: 1px solid var(--line-soft); border-radius: 3px;
}
.trust-cell svg { color: var(--gold); flex-shrink: 0; }
.trust-cell .t-title { font-size: 13px; font-weight: 500; }
.trust-cell .t-sub { font-size: 11.5px; color: var(--muted); }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Newsletter ===== */
.newsletter {
  background: linear-gradient(180deg, #14130f 0%, #0c0c0c 100%);
  padding: 84px 0; text-align: center;
  border-top: 1px solid var(--line);
}
.newsletter h2 {
  font-size: clamp(32px, 4vw, 48px); font-style: italic; margin-bottom: 14px; font-weight: 400;
}
.newsletter p { color: var(--cream); max-width: 540px; margin: 0 auto 28px; }
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
  background: rgba(0,0,0,0.4);
}
.newsletter-form input {
  flex: 1; background: transparent; border: 0; padding: 16px 18px;
  color: var(--white); font-size: 14px; outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--gold); color: #0f0f0f; padding: 0 26px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold-2); }
.newsletter-mini { font-size: 11px; color: var(--muted); margin-top: 14px; letter-spacing: 0.06em; }

/* ===== Footer ===== */
.footer { background: #0c0c0c; padding: 80px 0 28px; border-top: 1px solid var(--line-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 56px; border-bottom: 1px solid var(--line-soft);
}
.footer-brand .logo { font-size: 28px; margin-bottom: 18px; display: inline-flex; }
.footer-brand .logo img { height: 68px; }
.footer-brand p { color: var(--muted); max-width: 280px; font-size: 13px; line-height: 1.7; }
.footer-brand .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-brand .socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-soft);
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream);
  transition: all .2s;
}
.footer-brand .socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--cream); font-size: 13.5px; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom .copy { color: var(--muted); font-size: 12px; }
.footer-pay { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-pay span {
  font-size: 10px; padding: 6px 10px; border: 1px solid var(--line-soft);
  border-radius: 2px; color: var(--cream); letter-spacing: 0.1em;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px;
  background: #25D366; color: #0a3a17; border-radius: 100px; font-weight: 600;
  font-size: 13px; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #0a3a17; }
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .wa-float .wa-label { display: none; } .wa-float { padding: 14px; border-radius: 50%; } }

/* ===== Sticky mobile add-to-cart (product page) ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px; display: none;
  justify-content: space-between; align-items: center; gap: 12px;
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ===== Mini cart drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 420px; max-width: 100vw;
  background: #131313; border-left: 1px solid var(--line);
  z-index: 201; transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-head h3 { font-family: var(--serif); font-size: 22px; }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 22px 24px; }
.drawer-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.drawer-empty svg { color: var(--gold); opacity: 0.6; margin-bottom: 16px; }
.cart-row {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-row .thumb {
  width: 72px; height: 90px; background: var(--bg-3); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.cart-row .thumb svg { width: 70%; height: 70%; }
.cart-row .info .nm { font-family: var(--serif); font-size: 14px; line-height: 1.3; }
.cart-row .info .pr { color: var(--gold); font-family: var(--serif); margin-top: 4px; font-size: 15px; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line-soft); border-radius: 2px;
  margin-top: 8px;
}
.qty button { width: 26px; height: 26px; color: var(--cream); font-size: 14px; }
.qty button:hover { color: var(--gold); }
.qty .n { padding: 0 8px; font-size: 13px; min-width: 26px; text-align: center; }
.cart-row .remove { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-row .remove:hover { color: var(--danger); }
.drawer-foot { border-top: 1px solid var(--line-soft); padding: 20px 24px; }
.drawer-foot .totals { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer-foot .totals .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.drawer-foot .totals .val { font-family: var(--serif); font-size: 26px; color: var(--gold); }
.drawer-foot .ship-note { font-size: 11px; color: var(--muted); margin-bottom: 14px; }

/* ===== Forms (shared) ===== */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 8px; font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-soft); border-radius: 2px; color: var(--white);
  outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }

/* ===== Generic page header ===== */
.page-head {
  padding: 80px 0 64px; text-align: center;
  background: linear-gradient(180deg, #14130f 0%, #0d0c0a 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 { font-size: clamp(40px, 5vw, 64px); font-style: italic; font-weight: 400; }
.page-head p { color: var(--cream); max-width: 600px; margin: 14px auto 0; }
.breadcrumb { display: inline-flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-top: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--line); }

/* ===== Utility ===== */
.divider { height: 1px; background: var(--line-soft); margin: 36px 0; }
.spacer-sm { height: 24px; } .spacer { height: 48px; } .spacer-lg { height: 80px; }
.flex { display: flex; } .grid { display: grid; }
.center { text-align: center; }

/* ===== Colección (listing) ===== */
.coleccion-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 960px) { .coleccion-layout { grid-template-columns: 1fr; } }
.filters { position: sticky; top: 100px; }
@media (max-width: 960px) { .filters { position: static; } }
.filter-group { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.filter-body { display: flex; flex-direction: column; gap: 8px; }
.filter-radio, .filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 4px 0; font-size: 13.5px; color: var(--cream); }
.filter-radio input, .filter-check input { display: none; }
.filter-radio-dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; transition: border-color .2s; }
.filter-radio input:checked + .filter-radio-dot { border-color: var(--gold); }
.filter-radio input:checked + .filter-radio-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold); }
.filter-radio:hover, .filter-check:hover { color: var(--white); }
.filter-check-box { width: 14px; height: 14px; border: 1px solid var(--line); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: #0f0f0f; transition: all .2s; }
.filter-check input:checked + .filter-check-box { background: var(--gold); border-color: var(--gold); }
.price-range { width: 100%; accent-color: var(--gold); }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.filter-info { font-size: 12.5px; color: var(--cream); display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.dot-gold { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.results-count { color: var(--cream); font-size: 14px; }
.sort-wrap { display: flex; align-items: center; gap: 12px; }
.sort-wrap label { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.sort-wrap select { background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); padding: 8px 12px; border-radius: 2px; color: var(--white); font-size: 13px; outline: none; }
.coleccion-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .coleccion-grid { grid-template-columns: repeat(2, 1fr); } }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h3 { font-size: 26px; color: var(--white); margin-bottom: 10px; }

/* ===== Producto (detail) ===== */
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }
.gallery-main {
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--p-bg-a, #1f1d17) 0%, var(--p-bg-b, #100f0d) 100%);
  border: 1px solid var(--line-soft); border-radius: 3px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.gallery-main svg { width: 60%; height: 60%; }
.gallery-badge { position: absolute; top: 18px; left: 18px; display: flex; gap: 6px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb-card {
  aspect-ratio: 1; background: linear-gradient(160deg, var(--p-bg-a, #1f1d17) 0%, var(--p-bg-b, #100f0d) 100%);
  border: 1px solid var(--line-soft); border-radius: 2px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.thumb-card svg { width: 60%; height: 60%; }
.thumb-card.active { border-color: var(--gold); }
.thumb-card:hover { border-color: var(--line); }

.product-info .cat { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.product-info h1 { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 500; line-height: 1.1; margin-bottom: 18px; }
.product-info .rating-line { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--gold); }
.product-info .rating-line .count { color: var(--muted); font-size: 13px; }
.price-block { margin: 22px 0 24px; padding: 24px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.price-block .pp { font-family: var(--serif); font-size: 44px; color: var(--gold); line-height: 1; }
.price-block .po { font-size: 16px; color: var(--muted); text-decoration: line-through; margin-left: 14px; }
.price-block .save { display: inline-block; margin-left: 12px; padding: 4px 10px; background: #2a1f1c; color: var(--gold); border: 1px solid var(--gold); border-radius: 2px; font-size: 11px; letter-spacing: 0.14em; vertical-align: middle; }
.price-block .stock { margin-top: 12px; color: #e07a5f; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; }
.price-block .stock .pulse { width: 8px; height: 8px; background: #e07a5f; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.85); } }

.bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.bullets li { padding: 8px 0 8px 26px; position: relative; color: var(--cream); font-size: 14px; }
.bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.qty-row .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; }
.qty-stepper button { width: 40px; height: 44px; color: var(--cream); font-size: 18px; }
.qty-stepper button:hover { color: var(--gold); }
.qty-stepper .n { padding: 0 14px; min-width: 30px; text-align: center; font-family: var(--serif); }

.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
@media (max-width: 720px) { .cta-row { grid-template-columns: 1fr; } }

.guarantee-card { padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: 3px; background: rgba(255,255,255,0.02); margin-bottom: 14px; }
.guarantee-card .gh { display: flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 6px; }
.guarantee-card .gb { color: var(--cream); font-size: 13px; line-height: 1.6; }

.tabs-row { display: flex; gap: 32px; border-bottom: 1px solid var(--line-soft); margin: 56px 0 28px; }
.tabs-row button {
  padding: 12px 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent; transition: all .2s; font-weight: 500;
}
.tabs-row button.active { color: var(--gold); border-bottom-color: var(--gold); }
.tabs-row button:hover { color: var(--white); }
.tab-panel { color: var(--cream); line-height: 1.8; max-width: 720px; font-size: 14.5px; }
.tab-panel h4 { color: var(--white); margin: 16px 0 8px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--line-soft); }
.spec-table td { padding: 14px 0; }
.spec-table td:first-child { color: var(--muted); width: 40%; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.spec-table td:last-child { color: var(--cream); }

/* Review summary */
.review-summary { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 24px; background: #131313; border: 1px solid var(--line-soft); border-radius: 3px; margin-bottom: 32px; }
@media (max-width: 720px) { .review-summary { grid-template-columns: 1fr; } }
.review-score { text-align: center; }
.review-score .num { font-family: var(--serif); font-size: 64px; color: var(--gold); line-height: 1; }
.review-score .stars { color: var(--gold); font-size: 18px; margin-top: 8px; }
.review-score .count { color: var(--muted); font-size: 12px; margin-top: 8px; }
.review-bar-row { display: grid; grid-template-columns: 28px 1fr 40px; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.review-bar { height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.review-bar > div { height: 100%; background: var(--gold); }

.review-item { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-name { font-weight: 500; }
.review-meta { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--gold); margin-bottom: 8px; }
.review-text { color: var(--cream); font-size: 14px; line-height: 1.7; }

/* ===== Cart page ===== */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-table { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; }
.cart-table-row {
  display: grid; grid-template-columns: 110px 1fr auto auto; gap: 18px; padding: 22px;
  border-bottom: 1px solid var(--line-soft); align-items: center;
}
.cart-table-row:last-child { border-bottom: 0; }
.cart-table-row .thumb-lg {
  width: 110px; height: 130px; background: linear-gradient(160deg, var(--p-bg-a), var(--p-bg-b));
  display: flex; align-items: center; justify-content: center; border-radius: 2px;
}
.cart-table-row .thumb-lg svg { width: 70%; height: 70%; }
.cart-table-row .nm { font-family: var(--serif); font-size: 20px; line-height: 1.2; margin-bottom: 4px; }
.cart-table-row .cat-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.cart-table-row .pr-cell { font-family: var(--serif); font-size: 22px; color: var(--gold); min-width: 120px; text-align: right; }

.summary-card { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; padding: 28px; position: sticky; top: 100px; }
.summary-card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--cream); font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 12px; }
.summary-row.total .lbl { font-family: var(--serif); font-size: 18px; color: var(--white); }
.summary-row.total .val { font-family: var(--serif); font-size: 28px; color: var(--gold); }
.summary-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.summary-trust > div { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--cream); }
.summary-trust svg { color: var(--gold); }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-step { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; padding: 28px; margin-bottom: 18px; }
.checkout-step h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; display: flex; align-items: center; gap: 12px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: #0f0f0f; display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 13px; font-weight: 700; }
.checkout-step .sh-sub { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .fields-grid { grid-template-columns: 1fr; } }
.pay-method { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line-soft); border-radius: 2px; cursor: pointer; transition: border-color .2s; margin-bottom: 10px; }
.pay-method.active { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.pay-method input { display: none; }
.pay-method .pm-dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; margin-top: 2px; }
.pay-method.active .pm-dot { border-color: var(--gold); }
.pay-method.active .pm-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold); }
.pay-method .pm-title { font-weight: 500; font-size: 15px; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.pay-method .pm-title .pm-tag { font-size: 10px; padding: 3px 8px; background: var(--gold); color: #0f0f0f; border-radius: 2px; letter-spacing: 0.14em; font-weight: 700; }
.pay-method .pm-desc { color: var(--muted); font-size: 13px; line-height: 1.5; }

.checkout-complete { text-align: center; padding: 80px 20px; }
.checkout-complete .checkmark { width: 80px; height: 80px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid var(--gold); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 24px; }
.checkout-complete h2 { font-family: var(--serif); font-size: 40px; font-style: italic; margin-bottom: 12px; }
.checkout-complete p { color: var(--cream); max-width: 500px; margin: 0 auto 24px; }
.order-num { display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 2px; font-family: var(--serif); color: var(--gold); letter-spacing: 0.12em; margin-bottom: 32px; }

/* ===== Static info pages (nosotros, envios, devoluciones) ===== */
.prose { max-width: 760px; margin: 0 auto; padding: 64px 0; color: var(--cream); font-size: 16px; line-height: 1.8; }
.prose h2 { color: var(--white); font-family: var(--serif); font-size: 32px; margin: 48px 0 16px; font-weight: 500; }
.prose h3 { color: var(--gold); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; margin: 36px 0 12px; font-weight: 600; font-family: var(--sans); }
.prose p { margin: 0 0 16px; }
.prose ul { padding-left: 22px; margin: 0 0 20px; list-style: disc; }
.prose ul li { margin-bottom: 8px; color: var(--cream); list-style: disc; }
.prose strong { color: var(--white); }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 40px 0; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 28px 26px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; }
.value-card .vi { color: var(--gold); margin-bottom: 16px; }
.value-card h4 { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.value-card p { color: var(--cream); font-size: 13.5px; line-height: 1.7; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 48px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin: 60px 0; }
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: 44px; color: var(--gold); line-height: 1; }
.stat .l { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card { padding: 28px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; margin-bottom: 14px; display: flex; gap: 18px; align-items: flex-start; }
.contact-info-card .ci { color: var(--gold); flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.contact-info-card p { color: var(--cream); font-size: 13.5px; line-height: 1.6; margin: 0; }
/* ===== Mobile refinements (≤720px) =====
   Targeted overrides to make every page feel native on celular. */
@media (max-width: 720px) {
  body { font-size: 14.5px; }

  /* Containers */
  .container { padding: 0 16px; }

  /* Section spacing — tighten everything */
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  .page-head { padding: 48px 0 36px; }

  /* Announcement bar */
  .announce-track { font-size: 10.5px; gap: 12px; padding: 8px 14px; }

  /* Header */
  .header-inner { padding: 8px 0 0; gap: 8px; }
  .header-top { min-height: 56px; gap: 8px; }
  .header-top .left, .header-top .right { gap: 2px; }
  .icon-btn { width: 36px; height: 36px; }

  /* Hero */
  .hero { min-height: 0; }
  .hero-inner { padding: 48px 0 56px; gap: 32px; }
  .hero h1 { font-size: clamp(36px, 9vw, 52px); margin-bottom: 18px; }
  .hero p.lead { font-size: 15px; margin-bottom: 26px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1; min-width: 0; padding: 14px 16px; font-size: 12px; }
  .hero-meta { gap: 16px; margin-top: 28px; font-size: 11.5px; }
  .hero-meta span { width: 100%; }
  .collage { height: 320px; margin-top: 8px; }
  .collage-item .price-tag { font-size: 9.5px; padding: 4px 8px; }
  .showcase { height: 380px; }
  .showcase-badge { font-size: 9.5px; padding: 5px 9px; top: 14px; left: 14px; }
  .showcase-card { padding: 14px 16px; bottom: 14px; left: 14px; right: 14px; }
  .showcase-card .pname { font-size: 17px; }
  .showcase-card .pprice { font-size: 21px; }
  .showcase-card .pold { font-size: 11px; }
  .hero.variant-editorial .hero-inner { padding: 64px 0 48px; }
  .marquee { padding: 16px 0; margin-top: 40px; }
  .marquee span { font-size: 16px; }

  /* Benefits */
  .benefits-grid { gap: 16px; padding: 24px 0; }
  .benefit { padding: 4px 4px; gap: 12px; }
  .benefit-icon { width: 38px; height: 38px; }
  .benefit-title { font-size: 13px; }
  .benefit-sub { font-size: 11px; }

  /* Product cards */
  .products-grid { gap: 12px; }
  .product-body { padding: 14px 14px 16px; }
  .product-name { font-size: 15px; min-height: 36px; }
  .product-cat { font-size: 10px; }
  .product-price { font-size: 19px; }
  .product-old { font-size: 12px; }
  .product-add { padding: 11px; font-size: 10.5px; letter-spacing: 0.14em; }
  .product-badges { top: 8px; left: 8px; gap: 4px; }
  .badge { padding: 4px 7px; font-size: 9px; letter-spacing: 0.1em; }
  .product-wish { top: 6px; right: 6px; width: 30px; height: 30px; }
  .product-sold { font-size: 9.5px; padding: 3px 6px; bottom: 6px; left: 6px; }

  /* Promo banner */
  .promo-banner { padding: 56px 0; }
  .promo-banner::before { font-size: 50vw; }
  .promo-text h2 { font-size: clamp(28px, 8vw, 40px); }
  .promo-text p { font-size: 14px; }
  .countdown { gap: 8px; margin-top: 18px; }
  .countdown-cell { min-width: 0; flex: 1; padding: 10px 6px; }
  .countdown-num { font-size: 22px; }
  .countdown-label { font-size: 9px; letter-spacing: 0.12em; }
  .promo-inner .btn { width: 100%; }

  /* Categories — 2 columns on tablet, 1 on phone */
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cats-grid .cat-card:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .cats-grid .cat-card:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .cat-card { padding: 16px; }
  .cat-card .cat-name { font-size: 18px; }
  .cat-card .cat-count { font-size: 11px; }

  /* Carousel */
  .carousel { grid-auto-columns: 220px; gap: 12px; }
  .carousel-nav { display: none; }

  /* Testimonials */
  .test-card { padding: 24px 22px; }
  .test-quote { font-size: 14px; min-height: 0; }
  .test-card::before { font-size: 70px; top: -12px; left: 18px; }

  /* Trust badges */
  .trust { padding: 36px 0; }
  .trust-cell { padding: 12px 14px; gap: 10px; }
  .trust-cell .t-title { font-size: 12px; }
  .trust-cell .t-sub { font-size: 10.5px; }

  /* Newsletter */
  .newsletter { padding: 56px 0; }
  .newsletter h2 { font-size: clamp(26px, 7vw, 36px); }
  .newsletter p { font-size: 14px; }
  .newsletter-form { flex-direction: column; gap: 8px; border: 0; background: transparent; max-width: 100%; }
  .newsletter-form input {
    background: rgba(255,255,255,0.04); border: 1px solid var(--line-soft);
    border-radius: 2px; padding: 14px 16px; text-align: center;
  }
  .newsletter-form button { padding: 14px; border-radius: 2px; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand .logo img { height: 48px; }
  .footer h4 { margin-bottom: 12px; font-size: 11px; }
  .footer ul li { margin-bottom: 8px; }
  .footer ul li a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom .copy { font-size: 11px; }
  .footer-pay span { font-size: 9.5px; padding: 5px 8px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 12px; }
  .btn-lg { padding: 15px 28px; font-size: 13px; }

  /* Drawer takes full width on phone */
  .drawer { width: 100vw; }
  .drawer-head { padding: 18px 20px; }
  .drawer-body { padding: 16px 20px; }
  .drawer-foot { padding: 16px 20px; }
  .drawer-empty { padding: 40px 16px; }

  /* Mobile nav drawer */
  .mobile-nav { padding: 76px 24px 32px; gap: 4px; }
  .mobile-nav a { font-size: 24px; padding: 12px 0; }
  .mobile-nav .close { top: 16px; right: 16px; width: 40px; height: 40px; }

  /* Page head */
  .page-head h1 { font-size: clamp(30px, 8vw, 44px); }
  .page-head p { font-size: 14px; padding: 0 8px; }
  .breadcrumb { font-size: 11px; }

  /* Colección */
  .filters { padding: 18px 0 0; }
  .filter-group { margin-bottom: 22px; padding-bottom: 20px; }
  .filter-group h4 { font-size: 11px; margin-bottom: 12px; }
  .results-bar { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
  .results-bar .sort-wrap { width: 100%; }
  .sort-wrap select { flex: 1; padding: 10px 12px; }
  .coleccion-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .coleccion-layout { gap: 12px; }

  /* Producto */
  .product-layout { gap: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .product-info h1 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 14px; }
  .product-info .cat { font-size: 11px; margin-bottom: 10px; }
  .product-info .rating-line { flex-wrap: wrap; gap: 6px; font-size: 13px; }
  .product-info .rating-line > span:last-child { margin-left: 0 !important; width: 100%; }
  .price-block { padding: 18px 0; margin: 18px 0; }
  .price-block .pp { font-size: 32px; }
  .price-block .po { font-size: 14px; }
  .price-block .save { font-size: 10px; padding: 3px 8px; }
  .price-block .stock { font-size: 12px; }
  .bullets li { font-size: 13.5px; padding: 6px 0 6px 24px; }
  .guarantee-card { padding: 14px 16px; }
  .guarantee-card .gh { font-size: 12px; }
  .guarantee-card .gb { font-size: 12.5px; }
  .qty-row { gap: 12px; margin-bottom: 14px; }
  .qty-stepper button { width: 36px; height: 42px; }

  /* Tabs (product detail) */
  .tabs-row { gap: 16px; overflow-x: auto; margin: 36px -16px 22px; padding: 0 16px; flex-wrap: nowrap; }
  .tabs-row button { font-size: 11px; letter-spacing: 0.14em; padding: 10px 0; white-space: nowrap; flex-shrink: 0; }
  .tab-panel { font-size: 13.5px; line-height: 1.7; }
  .spec-table td { padding: 12px 0; font-size: 13px; }
  .review-summary { padding: 18px; gap: 18px; }
  .review-score .num { font-size: 48px; }
  .review-item { padding: 18px 0; }
  .review-head { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Cart page */
  .cart-table-row { grid-template-columns: 80px 1fr; gap: 12px; padding: 16px; }
  .cart-table-row .thumb-lg { width: 80px; height: 100px; }
  .cart-table-row .nm { font-size: 16px; }
  .cart-table-row .cat-tag { font-size: 10px; margin-bottom: 8px; }
  .cart-table-row > div:nth-child(3) { grid-column: 2; }
  .cart-table-row .pr-cell { grid-column: 1 / -1; text-align: left; font-size: 18px; padding-top: 6px; border-top: 1px dashed var(--line-soft); margin-top: 4px; }
  .summary-card { padding: 22px; position: static; top: auto; }
  .summary-card h3 { font-size: 20px; margin-bottom: 16px; }

  /* Checkout */
  .checkout-step { padding: 22px; margin-bottom: 12px; }
  .checkout-step h3 { font-size: 19px; }
  .step-num { width: 26px; height: 26px; font-size: 12px; }
  .pay-method { padding: 14px; }
  .pay-method .pm-title { font-size: 14px; flex-wrap: wrap; }
  .pay-method .pm-desc { font-size: 12px; }
  .pay-method .pm-tag { font-size: 9px; padding: 2px 6px; }
  .checkout-complete { padding: 48px 16px; }
  .checkout-complete h2 { font-size: 28px; }
  .checkout-complete .checkmark { width: 64px; height: 64px; }

  /* Contact */
  .contact-info-card { padding: 20px; gap: 14px; }
  .contact-info-card h4 { font-size: 16px; }
  .contact-info-card p { font-size: 12.5px; }

  /* Prose pages */
  .prose { padding: 40px 0 60px; font-size: 14.5px; line-height: 1.75; }
  .prose h2 { font-size: 24px; margin: 36px 0 12px; }
  .prose h3 { font-size: 12px; margin: 28px 0 10px; }
  .values-grid { gap: 12px; margin: 28px 0; }
  .value-card { padding: 22px 20px; }
  .stats-row { gap: 12px; padding: 32px 0; margin: 40px 0; }
  .stat .n { font-size: 32px; }
  .stat .l { font-size: 10px; }

  /* WhatsApp float — float higher to avoid sticky CTA collision */
  .wa-float { bottom: 16px; right: 16px; }

  /* Avoid sticky CTA + WhatsApp colliding on product page */
  body:has(.sticky-cta) .wa-float { bottom: 84px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .promo-text h2 { font-size: 26px; }
  .countdown-num { font-size: 19px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 17px; }
}



/* ===== VARICLICK Shopify Integration Fixes ===== */

/* 1. Force our body styles to win over Horizon's */
body {
  background: #171717 !important;
  color: #ffffff !important;
  font-family: 'Inter', -apple-system, system-ui, sans-serif !important;
}

/* 2. Remove Horizon's negative first-child margin (it hides hero behind header) */
/* margin-top override removed - Horizon handles this automatically */

/* 3. Ensure our custom sections are visible with explicit backgrounds */
.hero,
section.hero {
  display: flex !important;
  min-height: clamp(560px, 78vh, 760px) !important;
  background: radial-gradient(120% 80% at 50% 0%, #1f1c14 0%, #131311 55%, #0c0c0c 100%) !important;
  color: #ffffff !important;
  position: relative !important;
}

/* 4. Force hero text white */
.hero h1,
.hero p.lead,
.hero-text,
.hero-ctas,
.hero-eyebrow,
.hero-meta {
  color: #ffffff !important;
}
.hero h1 .emph { color: #C9A84C !important; }
.hero h1 .reg  { color: #ffffff !important; }
.hero-eyebrow  { color: #C9A84C !important; }

/* 5. Benefits section explicit styles */
section.benefits {
  background: #131313 !important;
  color: #ffffff !important;
}
.benefit-title { color: #ffffff !important; }
.benefit-sub   { color: #8a8478 !important; }

/* 6. Promo banner explicit styles */
section.promo-banner {
  background: linear-gradient(135deg, #12100a 0%, #1a1506 100%) !important;
  color: #ffffff !important;
}

/* 7. Testimonials explicit styles */
section.testimonials { background: #171717 !important; color: #ffffff !important; }

/* 8. Trust section */
section.trust { background: #131313 !important; color: #ffffff !important; }

/* 9. Newsletter */
section.newsletter { background: #0f0f0f !important; color: #ffffff !important; }

/* 10. WhatsApp float stays on top */
.wa-float { z-index: 9999 !important; }

/* 11. Collage images */
.collage-item .swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== HEADER LOGO FIX ===== */
.header__heading-logo,
.header__heading img,
[class*="header"] img[class*="logo"],
.header .logo img {
  max-height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Header compact */
.header-wrapper,
.header {
  min-height: unset !important;
}

/* ===== HERO LAYOUT FIX ===== */
section.hero,
.hero {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  min-height: clamp(560px, 80vh, 820px) !important;
  padding-top: 80px !important;
  padding-bottom: 60px !important;
}

.hero-inner {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 60px !important;
}

/* Remove Horizon negative first-section margin on home only when transparent is off */
.shopify-section.section-vc_hero_1 {
  margin-top: 0 !important;
}

/* ===== HEADER COMPACTO FORZADO ===== */

/* Barra de anuncios: altura mínima */
.announcement-bar,
.header-group .announcement-bar,
[class*="announcement"] {
  min-height: unset !important;
  padding-block: 6px !important;
  font-size: 0.72rem !important;
  line-height: 1.3 !important;
}

/* Navegación: forzar altura compacta */
.header,
.header--compact,
.header-wrapper,
sticky-header > *,
#shopify-section-header_section .header {
  min-height: unset !important;
  padding-block: 8px !important;
}

/* Filas del header: quitar padding extra */
.header__row,
.header__row--top,
.header__row--bottom {
  padding-block: 6px !important;
  min-height: unset !important;
}

/* Logo en el header pequeño */
.header__heading-logo img,
.header__heading-logo,
.header .logo {
  max-height: 36px !important;
  width: auto !important;
}

/* Quitar padding extra del header group entero */
.header-group,
.section-header,
#shopify-section-sections-----header_section {
  padding: 0 !important;
}

/* El gap entre anuncio y nav viene de aqui */
.header-group--sticky-header,
sticky-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
}


/* =================================================================
   VARICLICK — CATALOGO + PRODUCTO + MOVIL
   Negro #171717 | Dorado #C9A84C | Crema #e8e0d0
================================================================= */

:root {
  --vc-black:  #171717;
  --vc-dark:   #111111;
  --vc-gold:   #C9A84C;
  --vc-cream:  #e8e0d0;
  --vc-muted:  #8a8478;
  --vc-border: #2a2a2a;
  --vc-card:   #1e1e1e;
}

/* ── CATALOGO ── */
.template-collection,
body.template-collection,
.collection,
.collection-hero,
.facets-container,
.product-grid-container {
  background: #171717 !important;
  color: #e8e0d0 !important;
}

.collection__title,
h1.collection__title {
  color: #C9A84C !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  font-weight: 400 !important;
  padding: 40px 0 24px !important;
}

.product-grid {
  background: #171717 !important;
  gap: 20px !important;
}

.card-wrapper,
.card,
.card__inner {
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: border-color 0.2s, transform 0.2s !important;
}
.card-wrapper:hover { border-color: #C9A84C !important; transform: translateY(-2px) !important; }

.card__heading a,
.card__heading .full-unstyled-link {
  color: #e8e0d0 !important;
}
.card__heading a:hover { color: #C9A84C !important; }

.price, .price__regular, .price-item, .price-item--regular, .price-item--sale {
  color: #C9A84C !important;
  font-weight: 600 !important;
}

/* ── FILTRO ── */
.facets,
.facets-container,
.facets__form,
.js-filter {
  background: #111111 !important;
  color: #e8e0d0 !important;
  border-color: #2a2a2a !important;
}

.facets__header,
.facets details > summary,
.facets__summary {
  background: #1e1e1e !important;
  color: #e8e0d0 !important;
  border-bottom: 1px solid #2a2a2a !important;
  padding: 12px 16px !important;
}

.facets__heading,
.facets details > summary span {
  color: #e8e0d0 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.facets__close,
.drawer__close,
button[aria-label*="errar"] {
  color: #e8e0d0 !important;
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  pointer-events: all !important;
}

.facets__item label,
.facets__label { color: #e8e0d0 !important; }

.field__input {
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  color: #e8e0d0 !important;
  border-radius: 6px !important;
}

.range-slider__progress { background: #C9A84C !important; }

.facets__button,
.button--filter-update {
  background: #C9A84C !important;
  color: #171717 !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
}

/* ── PAGINA DE PRODUCTO ── */
.template-product,
body.template-product,
.product {
  background: #171717 !important;
  color: #e8e0d0 !important;
}

.product__title,
.product__title h1 {
  color: #ffffff !important;
  font-size: clamp(22px, 4vw, 38px) !important;
  font-weight: 400 !important;
}

.product .price-item--regular,
.product .price-item--sale {
  color: #C9A84C !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}

.product__description,
.product__description p,
.product__description li { color: #e8e0d0 !important; line-height: 1.7 !important; }

.product-form__input label {
  color: #e8e0d0 !important;
  border: 1px solid #2a2a2a !important;
  background: #1e1e1e !important;
  border-radius: 6px !important;
}
.product-form__input input:checked + label {
  border-color: #C9A84C !important;
  color: #C9A84C !important;
}

.product-form__submit,
button[name="add"] {
  background: #C9A84C !important;
  color: #171717 !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 16px 32px !important;
  width: 100% !important;
  font-size: 1rem !important;
  cursor: pointer !important;
}
.product-form__submit:hover, button[name="add"]:hover { background: #a8893d !important; }

.product__media,
.product__media .media,
.thumbnail-list__item button {
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
}
.thumbnail-list__item button[aria-current="true"] { border-color: #C9A84C !important; }

nav.breadcrumb a, .breadcrumb a { color: #8a8478 !important; }
nav.breadcrumb a:hover { color: #C9A84C !important; }

/* ── CARRITO DRAWER ── */
cart-drawer, #cart-drawer, .cart-drawer {
  background: #111111 !important;
  color: #e8e0d0 !important;
}
.cart-drawer__header { background: #1e1e1e !important; border-bottom: 1px solid #2a2a2a !important; }
.cart-item__title, .cart-item__name { color: #e8e0d0 !important; }
.cart-item .price { color: #C9A84C !important; font-weight: 700 !important; }

/* ── MOVIL ── */
@media (max-width: 767px) {
  .header { padding: 6px 16px !important; }
  .header__heading-logo img { max-height: 28px !important; }

  section.hero, .hero {
    min-height: 100svh !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 28px !important;
  }
  .hero h1 { font-size: clamp(30px, 10vw, 48px) !important; }
  .hero p.lead { font-size: 15px !important; max-width: 100% !important; }
  .hero-ctas { flex-direction: column !important; gap: 12px !important; }
  .hero-ctas .btn { width: 100% !important; text-align: center !important; }

  .collage {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    height: auto !important;
  }
  .collage-item { height: 160px !important; border-radius: 10px !important; }

  .benefits-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .benefit { padding: 16px 12px !important; }

  .collection__title { font-size: 26px !important; padding: 24px 16px 16px !important; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 12px !important;
  }

  .product { flex-direction: column !important; }
  .product__media-wrapper,
  .product__info-wrapper { width: 100% !important; }
  .product__title h1 { font-size: 22px !important; }

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

  .newsletter-form { flex-direction: column !important; gap: 12px !important; }
  .newsletter-form input, .newsletter-form .btn { width: 100% !important; }

  .wa-float { bottom: 16px !important; right: 16px !important; width: 52px !important; height: 52px !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner { gap: 32px !important; padding: 0 32px !important; }
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .collage-item { height: 200px !important; }
}


/* ── PAGINA CONTACTO ── */
.template-page,
body.template-page,
.page-width {
  background: #171717 !important;
  color: #e8e0d0 !important;
}

.main-page-title,
.page h1,
.contact-title {
  color: #C9A84C !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 400 !important;
  text-align: center !important;
}

/* Formulario de contacto */
.contact, .contact__fields,
.contact-form,
form[action="/contact"] {
  background: #111111 !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 12px !important;
  padding: 40px !important;
  max-width: 620px !important;
  margin: 0 auto !important;
}

/* Labels del formulario */
.field__label,
.contact label,
label[for*="contact"],
label[for*="ContactForm"] {
  color: #C9A84C !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* Inputs y textarea */
.field__input,
.contact input,
.contact textarea,
.contact select,
input[name*="contact"],
textarea[name*="contact"] {
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
  color: #e8e0d0 !important;
  font-size: 0.95rem !important;
  padding: 12px 16px !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}
.field__input:focus,
.contact input:focus,
.contact textarea:focus {
  border-color: #C9A84C !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15) !important;
}
.contact textarea { min-height: 140px !important; resize: vertical !important; }

/* Placeholder */
.field__input::placeholder,
.contact input::placeholder,
.contact textarea::placeholder {
  color: #5a5450 !important;
}

/* Botón enviar */
.contact .button,
.contact [type="submit"],
button.button[data-type="submit"],
.contact__button {
  background: #C9A84C !important;
  color: #171717 !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 14px 36px !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s !important;
  margin-top: 8px !important;
}
.contact .button:hover,
.contact [type="submit"]:hover {
  background: #a8893d !important;
}

/* Paginas legales también oscuras */
.template-page .rte,
.template-page .rte p,
.template-page .rte li,
.template-page .rte h2,
.template-page .rte h3 {
  color: #e8e0d0 !important;
}
.template-page .rte h1,
.template-page .rte h2 {
  color: #C9A84C !important;
}
.template-page .rte a { color: #C9A84C !important; }
.template-page .rte a:hover { color: #e8e0d0 !important; }
.template-page .rte table th { background: #1e1e1e !important; color: #C9A84C !important; }
.template-page .rte table td { border-color: #2a2a2a !important; color: #e8e0d0 !important; }

/* ── SEO: 404 y otros templates ── */
.template-404 { background: #171717 !important; color: #e8e0d0 !important; }
.not-found-title { color: #C9A84C !important; }
