/* =============================================
   Delicias del Bosque — Tienda Online
   Estética Cumbrecita / Aldea Alpina Serrana
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;600;700&display=swap');

:root {
  /* Paleta Cumbrecita */
  --madera-d:   #3B1F0A;   /* madera oscura */
  --madera:     #6B3A1F;   /* madera media */
  --madera-m:   #9B6240;   /* madera clara */
  --madera-l:   #D4A574;   /* madera pálida */
  --bosque-d:   #1E3A12;   /* verde bosque oscuro */
  --bosque:     #2E5A1A;   /* verde bosque */
  --bosque-m:   #4A7A2E;   /* verde medio */
  --bosque-l:   #D6E8C8;   /* verde claro */
  --piedra:     #8A7D6E;   /* piedra serrana */
  --piedra-l:   #C4B8A8;   /* piedra clara */
  --ambar:      #C4872A;   /* ámbar / miel */
  --ambar-d:    #9B6518;   /* ámbar oscuro */
  --pergamino:  #F5EDD8;   /* fondo pergamino */
  --crema:      #FBF5E8;   /* crema cálida */
  --blanco:     #FFFDF7;   /* blanco cálido */
  --texto:      #2A1A0A;   /* texto oscuro cálido */
  --texto-s:    #6B5040;   /* texto secundario */
  --gris-l:     #EDE5D8;
  --gris:       #D4C8B8;
  --radio:      6px;        /* más cuadrado, más rústico */
  --radio-l:    10px;
  --sombra:     0 3px 16px rgba(59,31,10,0.10);
  --sombra-h:   0 8px 32px rgba(59,31,10,0.18);
  --trans:      0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  background: var(--crema);
  color: var(--texto);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* Textura de madera sutil en el fondo */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 18px,
      rgba(59,31,10,0.015) 18px,
      rgba(59,31,10,0.015) 19px
    );
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilidades ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ── Botones ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radio); font-size: 15px; font-weight: 700;
  letter-spacing: 0.3px; transition: all var(--trans); cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-primary {
  background: var(--madera); color: #fff;
  border: 2px solid var(--madera-d);
}
.btn-primary:hover { background: var(--madera-d); transform: translateY(-1px); box-shadow: var(--sombra-h); }

.btn-naranja {
  background: var(--ambar); color: #fff;
  border: 2px solid var(--ambar-d);
}
.btn-naranja:hover { background: var(--ambar-d); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--madera);
  border: 2px solid var(--madera);
}
.btn-outline:hover { background: var(--pergamino); }

.btn-bosque {
  background: var(--bosque); color: #fff;
  border: 2px solid var(--bosque-d);
}
.btn-bosque:hover { background: var(--bosque-d); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ── Separador ornamental ── */
.ornament {
  text-align: center; color: var(--madera-m); font-size: 18px; letter-spacing: 12px;
  margin: 8px 0;
}

/* ══════════════════════════════════════════
   HERO INMERSIVO — LA CUMBRECITA
══════════════════════════════════════════ */

.hero-cumbrecita {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background:
    /* Luz dorada del atardecer en el horizonte */
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(196,135,42,0.45) 0%, transparent 70%),
    /* Cielo del bosque */
    linear-gradient(
      180deg,
      #0A1605 0%,
      #0F2208 20%,
      #152D0A 40%,
      #1E3A12 60%,
      #2E4A18 75%,
      #4A3010 88%,
      #6B3A1F 100%
    );
}

/* ── Partículas flotantes (hojas) ── */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: floatLeaf linear infinite;
}

/* Variantes de tamaño y color */
.particle:nth-child(odd)  { background: rgba(196,135,42,0.7); border-radius: 50% 0 50% 0; }
.particle:nth-child(even) { background: rgba(154,96,44,0.6);  border-radius: 0 50% 0 50%; width: 5px; height: 5px; }
.particle:nth-child(3n)   { background: rgba(74,122,46,0.5);  border-radius: 50%; width: 4px; height: 4px; }

/* Posiciones y tiempos escalonados */
.p1  { left:  5%; animation-duration: 12s; animation-delay:  0s;   width: 7px; height: 7px; }
.p2  { left: 12%; animation-duration: 15s; animation-delay:  2s; }
.p3  { left: 20%; animation-duration: 10s; animation-delay:  5s;   width: 5px; }
.p4  { left: 28%; animation-duration: 18s; animation-delay:  1s; }
.p5  { left: 35%; animation-duration: 13s; animation-delay:  7s;   width: 8px; height: 8px; }
.p6  { left: 42%; animation-duration: 11s; animation-delay:  3s; }
.p7  { left: 50%; animation-duration: 16s; animation-delay:  9s; }
.p8  { left: 58%; animation-duration: 14s; animation-delay:  4s;   width: 6px; }
.p9  { left: 65%; animation-duration: 12s; animation-delay:  6s; }
.p10 { left: 72%; animation-duration: 17s; animation-delay:  2s;   width: 7px; height: 7px; }
.p11 { left: 78%; animation-duration: 11s; animation-delay:  8s; }
.p12 { left: 85%; animation-duration: 14s; animation-delay:  1s; }
.p13 { left:  8%; animation-duration: 19s; animation-delay: 11s; }
.p14 { left: 22%; animation-duration: 13s; animation-delay: 14s;   width: 5px; }
.p15 { left: 45%; animation-duration: 15s; animation-delay: 10s; }
.p16 { left: 60%; animation-duration: 12s; animation-delay: 13s;   width: 8px; height: 8px; }
.p17 { left: 75%; animation-duration: 18s; animation-delay:  5s; }
.p18 { left: 92%; animation-duration: 14s; animation-delay: 16s; }

@keyframes floatLeaf {
  0%   { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg) translateX(60px); }
}

/* ── Rayos de luz entre los pinos ── */
.light-rays { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.ray {
  position: absolute;
  top: 0; width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,220,100,0.12) 0%, transparent 70%);
  transform-origin: top center;
  animation: rayPulse ease-in-out infinite;
  filter: blur(8px);
}
.r1 { left: 18%; width: 60px; animation-duration: 8s;  animation-delay: 0s;  transform: rotate(-8deg); }
.r2 { left: 38%; width: 40px; animation-duration: 11s; animation-delay: 3s;  transform: rotate(-3deg); }
.r3 { left: 60%; width: 50px; animation-duration: 9s;  animation-delay: 1.5s;transform: rotate(5deg); }
.r4 { left: 78%; width: 35px; animation-duration: 13s; animation-delay: 5s;  transform: rotate(10deg); }

@keyframes rayPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Contenido central del hero ── */
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 32px 20px 200px;
  max-width: 700px;
  animation: heroFadeIn 1.8s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-location {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 20px;
}
.loc-line {
  flex: 1; max-width: 80px;
  height: 1px; background: rgba(196,135,42,0.5);
}
.loc-text {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ambar);
  font-family: 'Lato', sans-serif; white-space: nowrap;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  color: var(--pergamino);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 60px rgba(196,135,42,0.2);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-poem {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.5vw, 20px);
  font-style: italic;
  color: rgba(245,237,216,0.85);
  line-height: 1.9;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-divider {
  font-size: 14px; letter-spacing: 12px;
  color: var(--ambar); margin-bottom: 28px;
  opacity: 0.8;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex; align-items: center;
  background: var(--ambar);
  color: var(--madera-d);
  font-family: 'Lato', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: 0.5px;
  padding: 14px 32px; border-radius: 4px;
  border: 2px solid var(--ambar-d);
  transition: all 0.25s ease;
  text-shadow: none; box-shadow: 0 4px 20px rgba(196,135,42,0.4);
}
.btn-hero-primary:hover {
  background: #fff; color: var(--madera-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,135,42,0.5);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--pergamino);
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
  padding: 14px 28px; border-radius: 4px;
  border: 2px solid rgba(245,237,216,0.4);
  transition: all 0.25s ease;
}
.btn-hero-ghost:hover {
  background: rgba(245,237,216,0.12);
  border-color: rgba(245,237,216,0.7);
  transform: translateY(-2px);
}

/* ── Silueta del bosque ── */
.forest-silhouette {
  position: absolute; bottom: 0; left: 0; right: 0;
  pointer-events: none; z-index: 5;
}
.mountains-bg  { display: block; width: 100%; margin-bottom: -2px; }
.mountains-mid { display: block; width: 100%; margin-bottom: -2px; }
.pines-fg      { display: block; width: 100%; }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 20;
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-arrow {
  color: rgba(245,237,216,0.5);
  font-size: 20px;
}
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   FRANJA DE AMBIENTE
══════════════════════════════════════════ */
.ambiente-strip {
  background: var(--madera-d);
  border-top: 3px solid var(--ambar);
  border-bottom: 3px solid var(--ambar);
  padding: 20px 16px;
}
.ambiente-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.ambiente-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--pergamino); font-size: 14px; font-family: 'Lato', sans-serif;
  padding: 4px 16px;
}
.amb-ico { font-size: 22px; }
.ambiente-item span { line-height: 1.4; }
.ambiente-item small { display: block; font-size: 11px; color: var(--madera-l); }
.amb-sep { color: var(--ambar); font-size: 12px; opacity: 0.6; padding: 0 4px; }

/* ══════════════════════════════════════════
   SECCIÓN NARRATIVA
══════════════════════════════════════════ */
.narrativa-section {
  background: var(--crema);
  padding: 64px 0;
  border-bottom: 2px solid var(--gris);
}
.narrativa-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px; align-items: center;
}
@media (min-width: 768px) {
  .narrativa-inner { grid-template-columns: 1fr 1fr; }
}
.narr-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ambar);
  margin-bottom: 12px; font-family: 'Lato', sans-serif;
}
.narr-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: var(--madera-d);
  line-height: 1.2; margin-bottom: 20px;
}
.narr-body {
  color: var(--texto-s); line-height: 1.9;
  font-size: 16px; margin-bottom: 14px;
  font-style: italic;
}
.narr-local {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px dashed var(--gris);
  font-size: 14px; color: var(--texto-s);
  font-family: 'Lato', sans-serif;
}
.narrativa-deco { display: flex; justify-content: center; }
.deco-frame svg { width: 100%; max-width: 260px; filter: drop-shadow(0 8px 24px rgba(59,31,10,0.15)); }

/* ── Header ── */
.header {
  background: var(--madera-d);
  color: #F5EDD8;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 4px solid var(--ambar);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* Franja decorativa superior */
.header::before {
  content: '';
  display: block;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--ambar) 0px, var(--ambar) 20px,
    var(--madera-m) 20px, var(--madera-m) 22px
  );
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; max-width: 1100px; margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo .logo-ico { font-size: 30px; }
.header-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--pergamino); line-height: 1.1;
}
.header-logo .logo-sub { font-size: 11px; color: var(--madera-l); font-weight: 400; letter-spacing: 0.5px; }
.header-actions { display: flex; align-items: center; gap: 8px; }

.cart-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(196,135,42,0.25); color: var(--pergamino);
  border: 1px solid rgba(196,135,42,0.5);
  border-radius: var(--radio); padding: 8px 14px; font-weight: 600;
  transition: background var(--trans);
}
.cart-btn:hover { background: rgba(196,135,42,0.45); }
.cart-badge {
  background: var(--ambar); color: #fff;
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ── Hero ── */
.hero {
  background:
    linear-gradient(180deg, rgba(30,58,18,0.82) 0%, rgba(59,31,10,0.70) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Crect fill='%232E5A1A' width='400' height='200'/%3E%3C/svg%3E") center/cover;
  color: #F5EDD8;
  padding: 56px 16px 48px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--ambar);
}

/* Silueta de montaña decorativa */
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 40px;
  background: var(--crema);
  clip-path: polygon(0 100%, 5% 40%, 12% 70%, 20% 20%, 30% 60%, 40% 30%, 50% 70%, 60% 25%, 70% 55%, 80% 15%, 90% 50%, 95% 30%, 100% 60%, 100% 100%);
}

.hero h1 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 15px; opacity: 0.88; max-width: 480px;
  margin: 0 auto 8px; font-style: italic;
}
.hero-ornament { font-size: 20px; letter-spacing: 10px; color: var(--ambar); margin: 10px 0; }
.hero-btns {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}

/* ── Sección info del local ── */
.info-strip {
  background: var(--bosque); color: var(--pergamino);
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  border-bottom: 2px solid var(--bosque-d);
}
.info-strip span { display: flex; align-items: center; gap: 6px; }

/* ── Categorías ── */
.cats-section { padding: 28px 0 12px; }
.cats-section h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
.cats-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  background: var(--blanco); border: 2px solid var(--gris);
  border-radius: 4px; padding: 7px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  transition: all var(--trans); white-space: nowrap;
  font-family: 'Lato', sans-serif;
  color: var(--texto-s);
}
.cat-chip:hover, .cat-chip.active {
  border-color: var(--madera);
  background: var(--pergamino);
  color: var(--madera);
}

/* ── Grid de productos ── */
.products-section { padding: 12px 0 48px; }
.products-section h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gris);
  position: relative;
}
.products-section h2::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: var(--ambar);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
}

/* ── Tarjeta de producto ── */
.product-card {
  background: var(--blanco);
  border-radius: var(--radio-l);
  border: 1px solid var(--gris);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-h);
  border-color: var(--madera-l);
}

/* Borde superior decorativo al hacer hover */
.product-card::before {
  content: '';
  display: block; height: 3px;
  background: linear-gradient(90deg, var(--madera), var(--ambar));
  opacity: 0; transition: opacity var(--trans);
}
.product-card:hover::before { opacity: 1; }

.product-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--gris-l);
}
.product-img-placeholder {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--pergamino), var(--bosque-l));
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.product-body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
  color: var(--madera-d);
}
.product-desc { font-size: 12px; color: var(--texto-s); margin-bottom: 8px; flex: 1; font-style: italic; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: auto; padding-top: 8px;
  border-top: 1px solid var(--gris-l);
}
.product-price {
  font-size: 17px; font-weight: 800; color: var(--bosque);
  font-family: 'Playfair Display', serif;
}
.product-destaca {
  background: var(--ambar); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; letter-spacing: 0.3px;
}
.add-btn {
  background: var(--madera); color: #fff;
  border-radius: var(--radio); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; flex-shrink: 0;
  transition: background var(--trans), transform var(--trans);
  border: 2px solid var(--madera-d);
}
.add-btn:hover { background: var(--madera-d); transform: scale(1.08); }

/* ── Página de producto ── */
.product-detail { padding: 24px 0 48px; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
}
.product-detail-img {
  border-radius: var(--radio-l); overflow: hidden;
  border: 2px solid var(--gris);
  aspect-ratio: 1/1; background: var(--gris-l);
  display: flex; align-items: center; justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { display: flex; flex-direction: column; gap: 14px; }
.product-detail-cat {
  font-size: 12px; color: var(--ambar); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.product-detail-name {
  font-size: clamp(22px, 4vw, 34px); font-weight: 800; line-height: 1.2;
  color: var(--madera-d); font-family: 'Playfair Display', serif;
}
.product-detail-price {
  font-size: 34px; font-weight: 800; color: var(--bosque);
  font-family: 'Playfair Display', serif;
}
.product-detail-desc { color: var(--texto-s); line-height: 1.7; font-style: italic; }

/* Selector de cantidad */
.qty-control { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 40px; height: 40px; background: var(--gris-l);
  border-radius: var(--radio); border: 2px solid var(--gris);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.qty-btn:hover { background: var(--pergamino); color: var(--madera); border-color: var(--madera-m); }
.qty-input {
  width: 56px; text-align: center; border: 2px solid var(--gris);
  border-left: none; border-right: none; height: 40px;
  font-size: 16px; font-weight: 700; background: var(--blanco);
}
.qty-input::-webkit-inner-spin-button { display: none; }

/* ── Carrito ── */
.cart-page { padding: 24px 0 48px; }
.cart-empty { text-align: center; padding: 64px 16px; }
.cart-empty .empty-ico { font-size: 64px; margin-bottom: 16px; }
.cart-empty h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.cart-empty p { color: var(--texto-s); margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .cart-layout { grid-template-columns: 1fr 340px; align-items: start; }
}
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--blanco); border-radius: var(--radio);
  border: 1px solid var(--gris); padding: 12px;
  display: flex; gap: 12px; align-items: center; box-shadow: var(--sombra);
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: var(--radio);
  object-fit: cover; background: var(--gris-l); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  border: 1px solid var(--gris);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; font-family: 'Playfair Display', serif; color: var(--madera-d); }
.cart-item-opts { font-size: 12px; color: var(--texto-s); margin-bottom: 6px; font-style: italic; }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--bosque); }
.cart-item-actions { display: flex; align-items: center; gap: 8px; }
.remove-btn { color: #8B2020; font-size: 18px; padding: 4px; }

/* Resumen carrito */
.cart-summary {
  background: var(--blanco);
  border-radius: var(--radio-l);
  border: 1px solid var(--gris);
  padding: 20px;
  box-shadow: var(--sombra);
  position: sticky; top: 72px;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; font-family: 'Playfair Display', serif; color: var(--madera-d); }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 15px;
  border-bottom: 1px dashed var(--gris);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  border-top: 2px solid var(--madera-l); border-bottom: none;
  margin-top: 8px; padding-top: 16px;
  font-size: 18px; font-weight: 800;
}
.summary-row.total .amount { color: var(--bosque); font-size: 22px; font-family: 'Playfair Display', serif; }

/* ── Checkout ── */
.checkout-page { padding: 24px 0 48px; }
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr 340px; align-items: start; }
}
.checkout-form-card {
  background: var(--blanco); border-radius: var(--radio-l);
  border: 1px solid var(--gris); padding: 24px; box-shadow: var(--sombra);
}
.checkout-form-card h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gris-l);
  font-family: 'Playfair Display', serif; color: var(--madera-d);
}

/* Formularios */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--texto-s); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--gris); border-radius: var(--radio);
  font-size: 15px; font-family: inherit; transition: border-color var(--trans);
  background: var(--blanco); color: var(--texto);
}
.form-control:focus { outline: none; border-color: var(--madera-m); background: var(--crema); }
.form-control::placeholder { color: var(--piedra-l); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-error { font-size: 12px; color: #8B2020; margin-top: 4px; display: none; }
.form-control.error { border-color: #8B2020; }
.form-control.error + .form-error { display: block; }

/* Radio cards */
.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-card input { display: none; }
.radio-card label {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 2px solid var(--gris); border-radius: var(--radio); padding: 14px 10px;
  text-align: center; cursor: pointer; transition: all var(--trans); font-size: 14px;
  background: var(--blanco);
}
.radio-card label .rc-ico { font-size: 26px; }
.radio-card label .rc-title { font-weight: 700; font-family: 'Playfair Display', serif; }
.radio-card label .rc-sub { font-size: 12px; color: var(--texto-s); font-style: italic; }
.radio-card input:checked + label {
  border-color: var(--madera); background: var(--pergamino); color: var(--madera-d);
}

/* Métodos de pago */
.pago-metodos { display: flex; flex-direction: column; gap: 10px; }
.pago-card {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--gris); border-radius: var(--radio);
  padding: 14px; cursor: pointer; transition: all var(--trans);
  background: var(--blanco);
}
.pago-card input { accent-color: var(--madera); width: 18px; height: 18px; }
.pago-card-ico { font-size: 26px; }
.pago-card-info { flex: 1; }
.pago-card-title { font-weight: 700; font-size: 15px; font-family: 'Playfair Display', serif; }
.pago-card-sub { font-size: 12px; color: var(--texto-s); font-style: italic; }
.pago-card:has(input:checked) { border-color: var(--madera); background: var(--pergamino); }

/* ── Página de éxito ── */
.success-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.success-card {
  background: var(--blanco); border-radius: var(--radio-l);
  border: 2px solid var(--gris); padding: 40px 32px;
  text-align: center; box-shadow: var(--sombra-h); max-width: 480px; width: 100%;
}
.success-ico { font-size: 72px; margin-bottom: 16px; }
.success-card h1 { font-size: 26px; font-weight: 800; margin-bottom: 8px; font-family: 'Playfair Display', serif; color: var(--madera-d); }
.success-card p { color: var(--texto-s); margin-bottom: 24px; }
.order-num {
  background: var(--bosque-l); border: 1px solid var(--bosque-m);
  border-radius: var(--radio); padding: 12px 20px;
  display: inline-block; margin-bottom: 24px;
}
.order-num strong { color: var(--bosque); font-size: 18px; font-family: 'Playfair Display', serif; }

/* ── Footer ── */
.footer {
  background: var(--madera-d); color: var(--pergamino);
  padding: 0;
  border-top: 4px solid var(--ambar);
}
/* Franja ornamental superior del footer */
.footer::before {
  content: '🌲  ✦  🏔  ✦  🌲  ✦  🏔  ✦  🌲';
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  letter-spacing: 4px;
  background: var(--madera);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--ambar);
}
.footer-inner { padding: 36px 16px 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .logo-txt {
  font-size: 22px; font-weight: 800; color: var(--pergamino);
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--madera-l); font-style: italic; }
.footer h4 {
  font-size: 12px; font-weight: 700; color: var(--ambar);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--madera-l); transition: color var(--trans); }
.footer-links a:hover { color: var(--ambar); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px; padding-top: 18px;
  text-align: center; font-size: 13px; color: var(--piedra-l);
}

/* ── Toast ── */
#cart-count-badge { transition: transform 0.2s; }
#cart-count-badge.bump { animation: bump 0.3s ease; }
@keyframes bump { 0%{transform:scale(1)} 50%{transform:scale(1.4)} 100%{transform:scale(1)} }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--madera); color: var(--pergamino);
  border: 2px solid var(--ambar);
  border-radius: 6px;
  padding: 12px 24px; font-size: 14px; font-weight: 700;
  box-shadow: var(--sombra-h); z-index: 9999; white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 0; font-size: 13px; color: var(--texto-s);
  border-bottom: 1px dashed var(--gris); margin-bottom: 8px;
}
.breadcrumb a { color: var(--madera); font-weight: 600; }
.breadcrumb span { margin: 0 6px; color: var(--piedra-l); }

/* ── Vacío ── */
.empty-state { text-align: center; padding: 48px 16px; color: var(--texto-s); }
.empty-state .ico { font-size: 48px; margin-bottom: 12px; }

/* ── Loader ── */
.spinner {
  width: 32px; height: 32px; border: 3px solid var(--gris);
  border-top-color: var(--madera); border-radius: 50%;
  animation: spin 0.7s linear infinite; margin: 32px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Alertas ── */
.alert { border-radius: var(--radio); padding: 14px 16px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: var(--bosque-l); color: var(--bosque-d); border-left: 4px solid var(--bosque); }
.alert-error   { background: #F5E0E0; color: #7B1010; border-left: 4px solid #8B2020; }
.alert-info    { background: var(--pergamino); color: var(--madera); border-left: 4px solid var(--ambar); }

/* ── Tabla admin ── */
.table-wrap { overflow-x: auto; border-radius: var(--radio); border: 1px solid var(--gris); }
table.data-table { width: 100%; border-collapse: collapse; background: var(--blanco); }
table.data-table th {
  background: var(--pergamino); padding: 12px 14px; text-align: left;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--texto-s); border-bottom: 2px solid var(--gris);
}
table.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--gris-l); font-size: 14px; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:hover td { background: var(--crema); }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.badge-pendiente  { background: #F5E8D0; color: #7B4A10; }
.badge-pagado     { background: var(--bosque-l); color: var(--bosque-d); }
.badge-preparando { background: #D8E8F5; color: #1A4A6B; }
.badge-listo      { background: #E8D8F5; color: #4A1A6B; }
.badge-entregado  { background: var(--bosque-l); color: var(--bosque-d); }
.badge-cancelado  { background: #F5D8D8; color: #7B1010; }

/* ── Buscador ── */
.search-wrap {
  margin: 20px 0 16px;
  display: flex; gap: 8px;
}
.search-wrap .form-control {
  flex: 1;
  border-color: var(--madera-l);
}
.search-wrap .form-control:focus { border-color: var(--madera); }

/* ── Divisor ornamental ── */
.divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--madera-l); font-size: 18px; margin: 8px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  border-top: 1px solid var(--gris);
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .hero { padding: 36px 16px 52px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 10px; }
  .radio-cards { grid-template-columns: 1fr 1fr; }
  .info-strip { gap: 12px; font-size: 12px; }
}

/* ══════════════════════════════════════════
   HISTORIA — ESTILOS COMPARTIDOS
══════════════════════════════════════════ */

.hist-kicker {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 12px;
}

.hist-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800; line-height: 1.15;
  color: var(--madera-d); margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   ACTO II — LA HISTORIA DE LA CUMBRECITA
══════════════════════════════════════════ */

.historia-lugar {
  background: var(--crema);
  border-top: 4px solid var(--ambar);
}

/* Intro atmosférica */
.hist-intro {
  padding: 72px 16px 56px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196,135,42,0.07) 0%, transparent 70%);
}

.hist-intro-inner { max-width: 760px; }

.hist-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.2vw, 20px);
  font-style: italic; color: var(--texto-s);
  line-height: 1.85; max-width: 640px; margin: 0 auto;
}

/* Banda de cita histórica */
.hist-quote-banda {
  background: var(--madera-d);
  padding: 52px 20px;
  border-top: 3px solid var(--ambar);
  border-bottom: 3px solid var(--ambar);
  text-align: center; position: relative; overflow: hidden;
}

.hist-quote-banda::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 20px,
    rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px
  );
}

.hist-blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 2.8vw, 26px);
  font-style: italic; color: var(--pergamino);
  line-height: 1.75; max-width: 700px;
  margin: 0 auto; position: relative; z-index: 1;
}

.bq-marks {
  color: var(--ambar); font-size: 2em;
  line-height: 0; vertical-align: -0.4em; font-style: normal;
}

/* Tres pilares */
.hist-pilares {
  padding-top: 64px; padding-bottom: 64px;
  display: grid; grid-template-columns: 1fr; gap: 28px;
}

@media (min-width: 768px) {
  .hist-pilares { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.pilar {
  background: var(--blanco); border-radius: var(--radio-l);
  border: 1px solid var(--gris); padding: 32px 24px;
  text-align: center; box-shadow: var(--sombra);
  position: relative; overflow: hidden;
}

.pilar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bosque), var(--ambar));
}

.pilar-ico { font-size: 40px; display: block; margin-bottom: 14px; }

.pilar-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--madera-d); margin-bottom: 10px;
}

.pilar-body { font-size: 15px; color: var(--texto-s); line-height: 1.8; font-style: italic; }

/* Franja de datos */
.hist-datos-banda {
  background: var(--ambar);
  border-top: 2px solid var(--ambar-d);
  border-bottom: 2px solid var(--ambar-d);
  padding: 36px 16px;
}

.hist-datos-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}

.dato-item {
  display: flex; flex-direction: column;
  align-items: center; padding: 8px 28px;
}

.dato-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800; color: var(--madera-d); line-height: 1;
}

.dato-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(59,31,10,0.72); margin-top: 6px;
  text-align: center; max-width: 120px;
}

.dato-sep {
  font-size: 24px; color: rgba(59,31,10,0.3);
  font-weight: 700; align-self: center;
}

@media (max-width: 540px) {
  .dato-sep { display: none; }
  .dato-item { padding: 12px 16px; }
}

/* Párrafo de cierre */
.hist-closing {
  padding-top: 56px; padding-bottom: 64px;
  background: linear-gradient(180deg, var(--crema) 0%, var(--pergamino) 100%);
}

.hist-closing-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}

.hist-closing-inner p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 18px); font-style: italic;
  color: var(--texto-s); line-height: 1.9; margin-bottom: 18px;
}

.hist-closing-inner p strong {
  color: var(--madera-d); font-style: normal; font-weight: 800;
}

/* ══════════════════════════════════════════
   ACTO III — HISTORIA DE DELICIAS DEL BOSQUE
══════════════════════════════════════════ */

.historia-local {
  background: linear-gradient(
    180deg,
    #0F2208 0%, #152D0A 30%, #1E3A12 70%, #253E14 100%
  );
  border-top: 4px solid var(--ambar);
}

.hist-local-hero { padding: 72px 16px 64px; }

.hist-local-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: start;
}

@media (min-width: 900px) {
  .hist-local-inner { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
}

/* Características */
.local-caract { display: flex; flex-direction: column; gap: 14px; }

.caract-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(245,237,216,0.07);
  border: 1px solid rgba(245,237,216,0.12);
  border-radius: var(--radio); padding: 14px 16px;
  transition: background 0.2s;
}

.caract-item:hover { background: rgba(245,237,216,0.12); }

.car-ico { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.caract-item strong {
  display: block; font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--pergamino); margin-bottom: 2px; letter-spacing: 0.2px;
}

.caract-item span {
  font-size: 13px; color: rgba(245,237,216,0.6);
  font-style: italic; line-height: 1.5;
}

/* Horario */
.local-horario {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(196,135,42,0.15);
  border: 1px solid rgba(196,135,42,0.3);
  border-radius: var(--radio); padding: 14px 16px; margin-top: 16px;
}

.hor-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.hor-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--ambar); margin-bottom: 3px;
}

.hor-valor {
  font-size: 14px; color: var(--pergamino);
  line-height: 1.5; font-style: italic;
}

/* ══════════════════════════════════════════
   ACTO IV — ENCABEZADO DE PRODUCTOS
══════════════════════════════════════════ */

.productos-section-wrap {
  background: var(--crema);
  border-top: 4px solid var(--ambar);
  padding-top: 56px;
}

.prod-section-header { text-align: center; padding-bottom: 8px; }
.prod-section-header p { margin: 0 auto; }

/* ══════════════════════════════════════════
   HOVER — PILARES, DATOS, CARACTERÍSTICAS
══════════════════════════════════════════ */

.pilar {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pilar:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--sombra-h);
  border-color: var(--ambar);
}

.dato-item { transition: transform 0.2s ease; cursor: default; }
.dato-item:hover { transform: scale(1.07); }

.caract-item { transition: background 0.2s ease, transform 0.22s ease; }
.caract-item:hover { background: rgba(245,237,216,0.13); transform: translateX(5px); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */

.rv { transition: opacity 0.7s ease, transform 0.7s ease; }

.rv-fade-up    { opacity: 0; transform: translateY(28px); }
.rv-fade-down  { opacity: 0; transform: translateY(-18px); }
.rv-scale      { opacity: 0; transform: scale(0.93); }
.rv-slide-right { opacity: 0; transform: translateX(32px); }

.rv-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   CONTADOR — ZOOM DE ENTRADA
══════════════════════════════════════════ */

@keyframes counterZoom {
  from { opacity: 0; transform: scale(0.55); }
  to   { opacity: 1; transform: scale(1); }
}
.counter-zoom { animation: counterZoom 0.65s cubic-bezier(0.34,1.56,0.64,1) both; }

/* ══════════════════════════════════════════
   PUNTOS DE NAVEGACIÓN ENTRE SECCIONES
══════════════════════════════════════════ */

.section-dots {
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%); z-index: 500;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: auto;
}

.section-dot {
  width: 10px; height: 10px; padding: 0;
  border-radius: 50%;
  background: rgba(196,135,42,0.28);
  border: 2px solid rgba(196,135,42,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.section-dot::after {
  content: attr(title);
  position: absolute;
  right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--pergamino);
  background: var(--madera-d);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(196,135,42,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}

.section-dot:hover { background: var(--ambar); transform: scale(1.45); }
.section-dot:hover::after { opacity: 1; }

.section-dot.active {
  background: var(--ambar);
  border-color: var(--ambar);
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(196,135,42,0.2);
}

@media (max-width: 800px) { .section-dots { display: none; } }

/* ══════════════════════════════════════════
   RIPPLE EN BOTONES DEL HERO
══════════════════════════════════════════ */

.btn-hero-primary,
.btn-hero-ghost { overflow: hidden; }

.ripple {
  position: absolute;
  width: 100px; height: 100px;
  margin-left: -50px; margin-top: -50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(5); opacity: 0; }
}

/* ══════════════════════════════════════════
   INTERLUDIO — SECCIONES ATMOSFÉRICAS
══════════════════════════════════════════ */

.hist-interlude {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
  position: relative; overflow: hidden;
}

.interlude-bosque {
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(196,135,42,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #050D02 0%, #0A1605 25%, #0F2208 55%, #152B08 100%);
}

.interlude-ambar {
  background:
    /* resplandor dorado hora mágica, como sol filtrándose entre los pinos */
    radial-gradient(ellipse 100% 45% at 50% -5%, rgba(196,135,42,0.28) 0%, transparent 65%),
    /* verde profundo del suelo del bosque */
    radial-gradient(ellipse 80% 55% at 8% 115%,  rgba(27,107,66,0.20) 0%, transparent 60%),
    /* base: bosque al atardecer */
    linear-gradient(160deg, #0D1504 0%, #142008 28%, #1C2D0B 55%, #111D07 80%, #070E03 100%);
}

/* comilla decorativa de fondo */
.interlude-ambar .interlude-phrase::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-55%);
  font-family: 'Playfair Display', serif;
  font-size: 220px;
  line-height: 1;
  color: rgba(196,135,42,0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.interlude-ambar .interlude-phrase {
  position: relative;
  z-index: 1;
}

/* línea ámbar vertical superior */
.interlude-ambar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(196,135,42,0.7), transparent);
}

/* línea ámbar vertical inferior */
.interlude-ambar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to top, rgba(196,135,42,0.7), transparent);
}

.interlude-inner {
  position: relative; z-index: 2;
  max-width: 700px; width: 100%;
}

.interlude-phrase {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 50px);
  font-style: italic;
  color: var(--pergamino);
  line-height: 1.6; margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.interlude-ornament {
  font-size: 14px; letter-spacing: 12px;
  color: var(--ambar); margin-bottom: 20px;
}

.interlude-sub {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--madera-l); opacity: 0.8;
}

/* ══════════════════════════════════════════
   LAS CUATRO ESTACIONES
══════════════════════════════════════════ */

.hist-estaciones {
  background: var(--blanco);
  border-top: 1px solid var(--gris-l);
  border-bottom: 1px solid var(--gris-l);
  padding: 64px 16px;
}

.estaciones-header { text-align: center; margin-bottom: 40px; }

.hist-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700; color: var(--madera-d);
  line-height: 1.2; margin-bottom: 8px;
}

.hist-sub {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic; color: var(--texto-s);
}

.estaciones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 900px) {
  .estaciones-grid { grid-template-columns: repeat(4, 1fr); }
}

.estacion {
  background: var(--crema);
  border-radius: var(--radio-l);
  border: 1px solid var(--gris);
  padding: 28px 18px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.estacion::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.est-primavera::before { background: #6B9A3A; }
.est-verano::before    { background: #E8A020; }
.est-otono::before     { background: #C4621A; }
.est-invierno::before  { background: #5B8AB0; }

.estacion:hover { transform: translateY(-6px); box-shadow: var(--sombra-h); border-color: var(--madera-l); }

.est-ico { font-size: 44px; display: block; margin-bottom: 12px; }
.est-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--madera-d); margin-bottom: 8px;
}
.est-body { font-size: 13px; color: var(--texto-s); line-height: 1.8; font-style: italic; }

/* ══════════════════════════════════════════
   SEIS MOMENTOS / EXPERIENCIAS
══════════════════════════════════════════ */

.hist-momentos {
  background: var(--pergamino);
  border-bottom: 2px solid var(--gris);
  padding: 60px 16px;
}

.momentos-header { text-align: center; margin-bottom: 36px; }

.momentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .momentos-grid { grid-template-columns: repeat(3, 1fr); }
}

.momento-item {
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radio-l);
  padding: 24px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.momento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  border-color: var(--madera-l);
}

.momento-ico { font-size: 34px; display: block; margin-bottom: 10px; }
.momento-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--madera-d); margin-bottom: 6px;
}
.momento-desc { font-size: 13px; color: var(--texto-s); line-height: 1.75; font-style: italic; }

/* ══════════════════════════════════════════
   PROCESO ARTESANAL
══════════════════════════════════════════ */

.hist-proceso-wrap {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(196,135,42,0.2);
  padding: 56px 16px 72px;
}

.hist-proceso-inner { max-width: 760px; }

.proceso-header { margin-bottom: 28px; }

.proceso-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--pergamino); line-height: 1.2;
}

.proceso-steps { display: flex; flex-direction: column; gap: 14px; }

.proceso-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(245,237,216,0.06);
  border: 1px solid rgba(245,237,216,0.1);
  border-radius: var(--radio); padding: 20px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.proceso-step:hover {
  background: rgba(245,237,216,0.1);
  border-color: rgba(196,135,42,0.35);
}

.paso-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 800;
  color: var(--ambar); line-height: 1;
  flex-shrink: 0; min-width: 40px;
}

.paso-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 800;
  color: var(--pergamino); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.8px;
}

.paso-body {
  font-size: 14px; color: rgba(245,237,216,0.62);
  line-height: 1.75; font-style: italic;
}


/* ─── Temporadas — Panoramas Inmersivos ─────────────────────────────────── */

.temporada {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Primavera — verde tierno + rosado */
.temp-primavera {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(120,200,80,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(255,160,180,0.14) 0%, transparent 50%),
    linear-gradient(160deg, #0e2a06 0%, #1a4210 40%, #0f2208 100%);
}

/* Verano — dorado intenso + azul cielo */
.temp-verano {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,215,80,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(80,160,200,0.15) 0%, transparent 55%),
    linear-gradient(160deg, #1a0a00 0%, #3a1a00 40%, #1a2a10 100%);
}

/* Otoño — naranja cálido + ocre */
.temp-otono {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,100,20,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 65%, rgba(160,80,0,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #1a0800 0%, #2e1000 40%, #1a0d00 100%);
}

/* Invierno — azul frío + violeta nocturno */
.temp-invierno {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(150,190,255,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(100,120,200,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #050d1a 0%, #0a1428 40%, #04091a 100%);
}

/* Marca de agua estacional */
.temporada-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 22vw, 260px);
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: #fff;
  opacity: 0.03;
  line-height: 1;
}

/* Contenedor de partículas */
.temporada-particulas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Partícula base */
.season-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Primavera: pétalos rosados */
.sp-primavera {
  border-radius: 50% 20% 50% 20%;
  background: radial-gradient(circle, #ffb8c8 30%, #ff88a8 100%);
  opacity: 0;
  animation: petalFall linear infinite;
}

/* Verano: luciérnagas */
.sp-verano {
  border-radius: 50%;
  background: radial-gradient(circle, #ffffa0 0%, #ffd700 50%, transparent 100%);
  box-shadow: 0 0 8px 3px rgba(255,220,50,0.55);
  opacity: 0;
  animation: fireflyFloat ease-in-out infinite;
}

/* Otoño: hojas girando */
.sp-otono {
  border-radius: 50% 10% 50% 10%;
  opacity: 0;
  animation: leafTumble linear infinite;
}

/* Invierno: copos de nieve */
.sp-invierno {
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 30%, rgba(200,220,255,0.7) 100%);
  box-shadow: 0 0 4px 1px rgba(200,230,255,0.4);
  opacity: 0;
  animation: snowFall linear infinite;
}

@keyframes petalFall {
  0%   { transform: translate(0, -40px) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.75; }
  85%  { opacity: 0.6; }
  100% { transform: translate(var(--dx, 60px), 110vh) rotate(var(--spin, 400deg)); opacity: 0; }
}

@keyframes fireflyFloat {
  0%   { transform: translate(0, 0) scale(1);           opacity: 0; }
  15%  { opacity: 0.85; }
  40%  { transform: translate(var(--dx1, 30px), var(--dy1, -20px)) scale(1.2); opacity: 0.9; }
  60%  { transform: translate(var(--dx2, -20px), var(--dy2, 15px)) scale(0.8); opacity: 0.6; }
  85%  { opacity: 0.7; }
  100% { transform: translate(var(--dx3, 10px), var(--dy3, -30px)) scale(1); opacity: 0; }
}

@keyframes leafTumble {
  0%   { transform: translate(0, -30px) rotate(0deg) scale(1);      opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translate(var(--dx, -40px), 50vh) rotate(var(--spin, 180deg)) scale(0.85); }
  90%  { opacity: 0.55; }
  100% { transform: translate(var(--dx2, 20px), 105vh) rotate(var(--spin2, 360deg)) scale(0.7); opacity: 0; }
}

@keyframes snowFall {
  0%   { transform: translate(0, -20px) rotate(0deg);  opacity: 0; }
  12%  { opacity: 0.9; }
  80%  { opacity: 0.7; }
  100% { transform: translate(var(--drift, 30px), 108vh) rotate(var(--spin, 90deg)); opacity: 0; }
}

/* Contenido de la temporada */
.temporada-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: center;
  padding: 80px 24px;
}

.temp-counter {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

.temp-ico-wrap {
  margin-bottom: 20px;
}

.temp-ico {
  font-size: clamp(56px, 9vw, 88px);
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.temp-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.temp-cuerpo {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto 36px;
}

.temp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.temp-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
}

/* Ajustes de color por estación */
.temp-primavera .temp-titulo { color: #d6f5a2; }
.temp-primavera .temp-tag    { border-color: rgba(180,255,140,0.3); color: rgba(210,255,170,0.85); }

.temp-verano .temp-titulo    { color: #ffe8a0; }
.temp-verano .temp-tag       { border-color: rgba(255,220,80,0.3); color: rgba(255,235,140,0.85); }

.temp-otono .temp-titulo     { color: #ffc880; }
.temp-otono .temp-tag        { border-color: rgba(255,160,60,0.3); color: rgba(255,190,100,0.85); }

.temp-invierno .temp-titulo  { color: #c8e0ff; }
.temp-invierno .temp-tag     { border-color: rgba(160,200,255,0.3); color: rgba(180,215,255,0.85); }

@media (max-width: 600px) {
  .temporada-content { padding: 60px 20px; }
  .temporada-watermark { font-size: clamp(60px, 30vw, 120px); }
}

/* ═══════════════════════════════════════
   NAVEGACIÓN PRINCIPAL
═══════════════════════════════════════ */
.header-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--verde, #1B6B42);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover { background: rgba(27,107,66,0.08); }
.nav-link.active {
  background: var(--verde, #1B6B42);
  color: #fff;
}
@media (max-width: 600px) {
  .header-nav { gap: 2px; }
  .nav-link { padding: 6px 10px; font-size: 13px; }
}

/* ═══════════════════════════════════════
   ENVÍOS A TODO EL PAÍS
═══════════════════════════════════════ */
.envios-section {
  background: var(--pergamino, #FFF8F0);
  padding: 80px 0 90px;
}
.envios-header {
  text-align: center;
  margin-bottom: 48px;
}
.envios-header .hist-kicker {
  color: var(--naranja, #F4A629);
}
.envios-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--verde, #1B6B42);
  margin: 8px 0 14px;
}
.envios-header p {
  color: var(--texto-s, #666);
  font-style: italic;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.envios-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.envios-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27,107,66,0.08);
  overflow: hidden;
}
.envios-card-head {
  background: var(--verde, #1B6B42);
  color: #fff;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.envios-card-head span {
  float: right;
  font-size: 11px;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.envios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.envios-table th {
  background: rgba(27,107,66,0.06);
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--verde, #1B6B42);
}
.envios-table th:last-child { text-align: right; }
.envios-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #444;
}
.envios-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--verde, #1B6B42);
}
.envios-table tr:last-child td { border-bottom: none; }
.envios-table tr:hover td { background: rgba(27,107,66,0.03); }

.envios-extras {
  background: rgba(244,166,41,0.08);
  border-top: 2px solid rgba(244,166,41,0.2);
  padding: 14px 16px;
  font-size: 13px;
  color: #666;
}
.envios-extras strong { color: #333; }

.envios-nota {
  grid-column: 1 / -1;
  background: rgba(27,107,66,0.05);
  border-left: 4px solid var(--verde, #1B6B42);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.envios-nota strong { color: var(--verde, #1B6B42); }

.envios-info-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.envios-info-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(27,107,66,0.18);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 14px;
  color: #444;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.envios-info-chip .chip-ico { font-size: 18px; }

@media (max-width: 640px) {
  .envios-body { grid-template-columns: 1fr; }
  .envios-nota { grid-column: 1; }
}

/* ═══════════════════════════════════════
   CORREO ARGENTINO — COSTO EN CHECKOUT
═══════════════════════════════════════ */
.correo-costo-card {
  background: linear-gradient(135deg, #f0faf5, #e8f5ee);
  border: 1.5px solid rgba(27,107,66,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.costo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--verde, #1B6B42);
  opacity: 0.75;
}
.costo-valor {
  font-size: 28px;
  font-weight: 900;
  color: var(--verde, #1B6B42);
  line-height: 1.1;
}
.costo-detalle {
  font-size: 13px;
  color: #666;
}

/* ══════════════════════════════════════════
   INSTAGRAM FEED
══════════════════════════════════════════ */
.ig-section { background:var(--crema); padding:80px 0 70px; border-top:1px solid var(--gris-l); }
.ig-header { text-align:center; margin-bottom:40px; }
.ig-kicker { font-family:'Lato',sans-serif; font-size:11px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:var(--ambar); margin-bottom:10px; }
.ig-title { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,38px); font-weight:800; color:var(--madera-d); margin-bottom:8px; }
.ig-handle a { color:var(--verde); font-weight:700; text-decoration:none; font-size:15px; }
.ig-handle a:hover { text-decoration:underline; }
.ig-carousel-wrap { position:relative; max-width:1180px; margin:0 auto; padding:0 48px; }
.ig-carousel { display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:4px 0 8px; }
.ig-carousel::-webkit-scrollbar { display:none; }
.ig-post { flex:0 0 calc(33.33% - 10px); min-width:220px; scroll-snap-align:start; border-radius:14px; overflow:hidden; position:relative; background:var(--madera-d); aspect-ratio:1; text-decoration:none; display:block; box-shadow:0 4px 20px rgba(0,0,0,0.12); transition:transform 0.3s; }
.ig-post:hover { transform:scale(1.02); }
@media(max-width:768px){ .ig-post{ flex:0 0 78%; } }
.ig-post-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }
.ig-post:hover .ig-post-img { transform:scale(1.06); }
.ig-post-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.78) 0%,transparent 55%); opacity:0; transition:opacity 0.3s; display:flex; align-items:flex-end; padding:16px; }
.ig-post:hover .ig-post-overlay { opacity:1; }
.ig-post-caption { color:#fff; font-size:12px; line-height:1.5; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.ig-post-placeholder { width:100%; height:100%; background:linear-gradient(135deg,var(--madera-d),var(--ambar-d)); display:flex; align-items:center; justify-content:center; font-size:48px; opacity:0.5; }
.ig-nav-btn { position:absolute; top:50%; transform:translateY(-60%); background:#fff; border:none; width:38px; height:38px; border-radius:50%; box-shadow:0 2px 14px rgba(0,0,0,0.18); cursor:pointer; font-size:20px; display:flex; align-items:center; justify-content:center; z-index:10; transition:background 0.2s,color 0.2s; line-height:1; }
.ig-nav-btn:hover { background:var(--ambar); color:#fff; }
.ig-nav-prev { left:0; }
.ig-nav-next { right:0; }
.ig-fallback { display:flex; flex-direction:column; align-items:center; padding:48px 20px; text-align:center; }
.ig-btn { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%); color:#fff; padding:13px 28px; border-radius:10px; font-weight:700; font-size:14px; text-decoration:none; margin-top:18px; transition:opacity 0.2s,transform 0.2s; }
.ig-btn:hover { opacity:0.9; transform:translateY(-1px); }
.ig-setup-note { font-size:12px; color:var(--gris-m); margin-top:10px; }
.ig-behold-wrap { max-width:1180px; margin:0 auto; padding:0 20px; }

/* ══════════════════════════════════════════
   RESEÑAS DE CLIENTES
══════════════════════════════════════════ */
.reviews-section { background:var(--madera-d); padding:80px 0 70px; }
.reviews-header { text-align:center; margin-bottom:48px; }
.reviews-kicker { font-family:'Lato',sans-serif; font-size:11px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:var(--ambar); margin-bottom:10px; }
.reviews-title { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,38px); font-weight:800; color:var(--pergamino); margin-bottom:6px; }
.reviews-sub { font-size:14px; color:rgba(255,255,255,0.45); }
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:20px; max-width:1100px; margin:0 auto; padding:0 20px; }
.review-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.09); border-radius:16px; padding:24px; transition:transform 0.3s,background 0.3s; }
.review-card:hover { transform:translateY(-4px); background:rgba(255,255,255,0.10); }
.review-top { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.review-avatar { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; color:#fff; flex-shrink:0; }
.review-handle { font-size:13px; font-weight:700; color:var(--pergamino); }
.review-via { font-size:11px; color:rgba(255,255,255,0.32); margin-top:2px; }
.review-ig-icon { margin-left:auto; font-size:17px; opacity:0.4; }
.review-stars { color:var(--ambar); font-size:13px; letter-spacing:2px; margin-bottom:12px; }
.review-text { font-size:14px; line-height:1.75; color:rgba(255,255,255,0.72); font-style:italic; }
