/* ============================================================
   LUZU'S COFFEE — Diseño inspirado en Cuervo Café
   Paleta: Cream · Marrón · Caramel
   ============================================================ */

:root {
  --cream:   #faf6f0;
  --brown:   #1c0e05;
  --caramel: #e2c9a6;
  --mid:     #f0e8db;
  --border:  #d4c4a8;
  --gray:    rgba(28,14,5,0.45);
  --white:   #ffffff;

  /* Card colors por sabor */
  --col-latte:   #c8a574;
  --col-caramel: #6b3d1e;
  --col-protein: #1c0e05;
  --col-vegan:   #4a6b3a;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--brown);
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--brown);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor.hover { width: 36px; height: 36px; }

/* ── TICKER ── */
.ticker {
  background: var(--caramel);
  color: var(--brown);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 0 32px;
  text-transform: uppercase;
}
.ticker-sep {
  font-size: 13px;
  opacity: 0.4;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}
nav.scrolled {
  top: 0;
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--brown);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
  cursor: none;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.gold { color: var(--col-caramel); opacity: 1; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-ig {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--brown);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
  cursor: none;
}
.nav-ig:hover { opacity: 1; }
.nav-cart-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 8px 18px;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.nav-cart-btn:hover { background: #3d1f0a; }
.nav-cart-count {
  background: var(--caramel);
  color: var(--brown);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px,10vw,64px);
  color: var(--brown);
  text-decoration: none;
  line-height: 1;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.gold { color: var(--col-caramel); }
.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 16px;
}
.mm-ig {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray) !important;
  text-decoration: none;
}
.mm-wa {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--brown);
  color: var(--cream) !important;
  padding: 12px 20px;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 33px; /* ticker height */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('3_botellas.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,246,240,0.05) 0%,
    rgba(250,246,240,0.0) 40%,
    rgba(250,246,240,0.6) 75%,
    rgba(250,246,240,1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--brown);
  opacity: 0.5;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 148px);
  line-height: 0.87;
  color: var(--brown);
  animation: fadeUp 0.8s ease both;
}
.hero-title .accent { color: var(--col-caramel); }
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-desc {
  font-size: 15px;
  color: rgba(28,14,5,0.6);
  max-width: 340px;
  line-height: 1.9;
}
.btn-hero {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  background: none;
  border: none;
  cursor: none;
  padding: 0;
  transition: opacity 0.2s;
}
.btn-hero:hover { opacity: 0.6; }

/* ── SECTION LABEL ── */
.section-label-bar {
  padding: 18px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(28,14,5,0.45);
}

/* ── PRODUCTS GRID ── */
.products-section {
  padding: 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ── PRODUCT CARD ── */
.product-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  cursor: none;
}
.product-card:last-child { border-right: none; }

.pc-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.product-card:hover .pc-visual { transform: scale(1.02); }

/* Bottle shape CSS */
.pc-bottle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 1;
}
.pc-bottle-neck {
  width: 28px;
  height: 30px;
  background: rgba(255,255,255,0.18);
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}
.pc-bottle-body {
  width: 54px;
  height: 130px;
  background: rgba(255,255,255,0.22);
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-bottle-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.pc-bottle-initial {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.pc-bottle-cap {
  width: 32px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px 3px 0 0;
  margin-bottom: 0;
  order: -1;
}

/* Name overlay at bottom of visual */
.pc-name-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 0.9;
  color: rgba(255,255,255,0.95);
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Label on dark cards */
.pc-visual.dark-card .pc-name-overlay { color: rgba(255,255,255,0.9); }

/* Card info */
.pc-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  flex: 1;
}
.pc-tag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.pc-desde {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--brown);
  line-height: 1;
}
.pc-desde span {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray);
  font-weight: 500;
  margin-left: 4px;
}

/* Pack picker */
.pc-packs {
  display: flex;
  gap: 4px;
}
.pp-btn {
  flex: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 4px;
  background: var(--mid);
  color: var(--brown);
  border: 1px solid var(--border);
  cursor: none;
  text-align: center;
  transition: all 0.15s;
}
.pp-btn:hover { background: var(--caramel); border-color: var(--caramel); }
.pp-btn.active {
  background: var(--brown);
  color: var(--caramel);
  border-color: var(--brown);
}

/* Add to cart button */
.pc-cta {
  background: var(--brown);
  color: var(--caramel);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 13px;
  border: none;
  cursor: none;
  text-transform: uppercase;
  transition: background 0.2s;
  width: 100%;
}
.pc-cta:hover { background: #3d1f0a; }

/* Nutri expandable */
.pc-nutri-toggle {
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 10px 0 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.pc-nutri-toggle span { font-size: 16px; transition: transform 0.3s; }
.pc-nutri-toggle.open span { transform: rotate(45deg); }
.pc-nutri-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.pc-nutri-body.open { max-height: 200px; }
.pc-nutri-rows { padding: 10px 0; display: flex; flex-direction: column; gap: 0; }
.pc-nutri-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  padding: 3px 0;
  border-bottom: 1px solid rgba(28,14,5,0.06);
}
.pc-nutri-row:last-child { border-bottom: none; }
.pc-nutri-row.bold { color: var(--brown); font-weight: 600; }

/* ── EDITORIAL ── */
.editorial {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.editorial h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.9;
  color: var(--brown);
  letter-spacing: -2px;
}
.editorial h2 .muted { color: rgba(28,14,5,0.2); }

/* ── SHIPPING BANNER ── */
.ship-banner {
  display: flex;
  background: var(--mid);
  border-bottom: 1px solid var(--border);
}
.ship-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  border-right: 1px solid var(--border);
}
.ship-item:last-child { border-right: none; }
.ship-item strong { color: var(--brown); }

/* ── FAQ ── */
.faq-section {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 12px;
}
.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.88;
  color: var(--brown);
  margin-bottom: 24px;
}
.faq-cta-box {
  background: var(--mid);
  padding: 20px;
  border-left: 3px solid var(--brown);
}
.faq-cta-box p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.faq-cta-link {
  display: inline-block;
  background: var(--brown);
  color: var(--caramel);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.2s;
}
.faq-cta-link:hover { background: #3d1f0a; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2px; }
.faq-col { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--brown);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: -0.3px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: none;
  transition: color 0.2s;
  line-height: 1.2;
}
.faq-btn:hover { color: var(--col-caramel); }
.faq-icon { font-size: 22px; color: var(--brown); flex-shrink: 0; margin-left: 8px; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-answer { font-size: 14px; color: var(--gray); line-height: 1.9; padding: 0 0 16px; }
.faq-answer strong { color: var(--brown); }

/* ── EVENTOS ── */
.eventos-section {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--brown);
}
.ev-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(226,201,166,0.5);
  display: block;
  margin-bottom: 16px;
}
.ev-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--caramel);
  margin-bottom: 20px;
}
.ev-text {
  font-size: 14px;
  color: rgba(226,201,166,0.6);
  line-height: 1.9;
  margin-bottom: 28px;
}
.ev-cta {
  display: inline-block;
  background: var(--caramel);
  color: var(--brown);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
}
.ev-cta:hover { background: #f0e5d0; }
.ev-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ev-stat {
  background: rgba(226,201,166,0.07);
  padding: 28px 24px;
  border: 1px solid rgba(226,201,166,0.1);
}
.ev-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 4px;
}
.ev-stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(226,201,166,0.4);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--brown);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
}
.footer-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: none;
}
.footer-links a:hover { color: var(--brown); }
.footer-copy {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: right;
}

/* ── CART DRAWER ── */
#cart-bubble {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
}
#cart-bubble-btn {
  background: var(--brown);
  color: var(--caramel);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 13px 22px;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 4px 20px rgba(28,14,5,0.2);
}
#cart-bubble-btn:hover { background: #3d1f0a; }
#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,14,5,0.4);
  z-index: 500;
}
#cart-overlay.visible { display: block; }
#cart-drawer {
  position: fixed;
  top: 0; right: -460px;
  width: 460px;
  height: 100%;
  background: var(--cream);
  z-index: 600;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--border);
}
#cart-drawer.open { right: 0; }
.cart-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--brown);
}
#cart-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: none;
  transition: color 0.2s;
}
#cart-close:hover { color: var(--brown); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.cart-empty {
  text-align: center;
  padding: 48px 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ci-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--brown);
  margin-bottom: 3px;
}
.ci-price { font-size: 12px; color: var(--gray); }
.ci-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ci-qty button {
  width: 28px; height: 28px;
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--brown);
  font-size: 16px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ci-qty button:hover { background: var(--caramel); }
.ci-qty span { font-family: 'Bebas Neue', sans-serif; font-size: 18px; min-width: 20px; text-align: center; }
.cart-zona {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
}
.cart-zona label {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.cart-zona select {
  width: 100%;
  padding: 10px 12px;
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--brown);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  cursor: none;
}
.cart-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#cart-envio-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total-lbl {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
#cart-total-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--brown);
  line-height: 1;
}
#cart-checkout-btn {
  background: var(--brown);
  color: var(--caramel);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 3px;
  padding: 16px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  width: 100%;
}
#cart-checkout-btn:hover:not(:disabled) { background: #3d1f0a; }
#cart-checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(226,201,166,0.3);
  border-top-color: var(--caramel);
  border-radius: 50%;
  animation: cspin 0.7s linear infinite;
}
.cart-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--brown);
  color: var(--caramel);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 10px 22px;
  z-index: 800;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Shipping progress */
.csp-msg { font-size: 12px; color: var(--gray); margin-bottom: 6px; letter-spacing: 0.3px; }
.csp-msg strong { color: var(--brown); }
.csp-msg.free { color: #00a650; font-weight: 600; }
.csp-track { height: 2px; background: var(--border); overflow: hidden; }
.csp-fill { height: 100%; background: linear-gradient(90deg, var(--caramel), #00a650); transition: width 0.4s ease; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes cspin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { border-bottom: 1px solid var(--border); }
  .product-card:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-ig { display: none; }
  .hamburger { display: flex; }
  .hero { margin-top: 33px; min-height: 100svh; }
  .hero-content { padding: 0 24px 40px; }
  .hero-title { font-size: 72px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-label-bar { padding: 16px 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pc-visual { height: 280px; }
  .editorial { padding: 64px 24px; }
  .ship-banner { flex-direction: column; }
  .ship-item { border-right: none; border-bottom: 1px solid var(--border); }
  .faq-section { padding: 64px 24px; grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }
  .faq-cols { grid-template-columns: 1fr; }
  .eventos-section { padding: 64px 24px; grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 32px 24px; grid-template-columns: 1fr; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-copy { text-align: center; }
  #cart-drawer { width: 100%; right: -100%; }
  body { cursor: auto; }
  .cursor { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(2) { border-right: none; }
}
