*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HERO ENTRANCE ── */
.hero-eyebrow { animation: slideRight 0.9s cubic-bezier(.4,0,.2,1) both; animation-delay: 0.15s; }
.hero-title   { animation: fadeUp 1s cubic-bezier(.4,0,.2,1) both; animation-delay: 0.3s; }
.hero-desc    { animation: fadeUp 1s cubic-bezier(.4,0,.2,1) both; animation-delay: 0.5s; }
.hero-actions { animation: fadeUp 1s cubic-bezier(.4,0,.2,1) both; animation-delay: 0.65s; }

:root {
  --cream: #F5EFE4;
  --warm-white: #FAF6EF;
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark: #9A7830;
  --brown: #2C1A08;
  --brown-mid: #4A2E12;
  --brown-light: #7A5830;
  --dark: #120C04;
  --text: #2C1A08;
  --text-light: #6B4E2E;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --border: rgba(150,110,50,0.15);
  --shadow: 0 2px 20px rgba(44,26,8,0.08);
  --shadow-md: 0 8px 32px rgba(44,26,8,0.12);
  --shadow-lg: 0 20px 60px rgba(44,26,8,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,228,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.logo-icon { width: 62px; height: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.logo-dot { color: var(--gold); }
.logo-sub {
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1px;
}
.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--brown); }
.nav a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.cart-btn {
  background: var(--brown);
  color: #F5EFE4;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .25s;
}
.cart-btn svg { width: 16px; height: 16px; }
.cart-btn:hover { background: var(--brown-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(44,26,8,0.3); }
.cart-count {
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO — FULL BLEED ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,12,4,0.92) 0%,
    rgba(18,12,4,0.55) 40%,
    rgba(18,12,4,0.15) 75%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0;
  color: #F5EFE4;
  margin-bottom: 1.5rem;
  max-width: 700px;
  font-weight: 700;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(245,239,228,0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all .25s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: rgba(245,239,228,0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  transition: color .2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.5rem;
}
.btn-secondary::after { content: '→'; transition: transform .2s; }
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover::after { transform: translateX(4px); }

/* hide old hero visual */
.hero-visual { display: none; }

/* ── MANIFIESTO ── */
.manifiesto {
  background: var(--brown);
  padding: 5rem 2rem;
  text-align: center;
}
.manifiesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifiesto blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #F5EFE4;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.manifiesto blockquote strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 700;
}
.manifiesto cite {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.4);
  font-style: normal;
  font-weight: 500;
}

/* ── BADGES ── */
.badges {
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 2.5rem;
  color: rgba(245,239,228,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.badge:last-child { border-right: none; }
.badge span { font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--warm-white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 1.25rem;
}
.section-header p { color: var(--text-light); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

/* ── FILTROS ── */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.filter-btn {
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown);
  color: #F5EFE4;
  border-color: var(--brown);
  box-shadow: var(--shadow-md);
}

/* ── PRODUCTOS ── */
.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.product-card.hidden { display: none; }
.product-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(145deg, #F0E5CF 0%, #DDD0B0 100%);
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brown);
  color: #F5EFE4;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info { padding: 1.4rem 1.6rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.55rem;
  line-height: 1.3;
  font-weight: 700;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.product-weight { font-size: 0.7rem; color: var(--text-light); margin-top: 0.15rem; line-height: 1.4; }
.add-btn {
  background: var(--brown);
  color: #F5EFE4;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .2s;
  white-space: nowrap;
}
.add-btn:hover { background: var(--gold-dark); transform: scale(1.04); }
.add-btn.added { background: var(--gold); color: var(--dark); }

/* ── NOSOTROS ── */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.about-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.about-grid p { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.stat p { font-size: 0.75rem; color: var(--text-light); margin: 0; letter-spacing: 0.04em; line-height: 1.4; }
.process-steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .25s;
}
.step:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  min-width: 36px;
}
.step strong { color: var(--brown); display: block; margin-bottom: 0.2rem; font-size: 0.92rem; }
.step p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ── CÓMO PEDIR ── */
.how-grid {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.how-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brown);
  color: #F5EFE4;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.how-step h3 { font-family: 'Playfair Display', serif; color: var(--brown); margin-bottom: 0.5rem; font-size: 1.05rem; }
.how-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }
.how-arrow { font-size: 1.4rem; color: var(--gold); }
.pickup-info {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  box-shadow: var(--shadow);
}
.pickup-info svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.pickup-info p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 4.5rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img {
  width: 100px;
  height: auto;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.3);
}
.footer-brand { margin-bottom: 2rem; }
.footer-brand .logo-name { font-size: 1.5rem; color: #F5EFE4; }
.footer-brand p { color: rgba(245,239,228,0.35); font-size: 0.8rem; margin-top: 0.35rem; letter-spacing: 0.05em; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-links a {
  color: rgba(245,239,228,0.45);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-copy { color: rgba(245,239,228,0.2); font-size: 0.75rem; letter-spacing: 0.06em; }

/* ── CARRITO ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,12,4,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(6px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed;
  right: -500px;
  top: 0;
  height: 100vh;
  width: min(480px, 100vw);
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -16px 0 60px rgba(18,12,4,0.25);
}
.cart-panel.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.cart-header h3 { font-family: 'Playfair Display', serif; color: var(--brown); font-size: 1.3rem; }
.cart-close {
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer;
  color: var(--text-light);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-close:hover { background: var(--border); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }
.cart-empty { text-align: center; color: var(--text-light); padding: 3rem 0; font-size: 0.9rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-emoji { font-size: 1.8rem; }
.cart-item-info { flex: 1; }
.cart-item-info strong { color: var(--brown); font-size: 0.87rem; display: block; line-height: 1.3; margin-bottom: 0.2rem; }
.cart-item-info span { color: var(--text-light); font-size: 0.78rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.4rem; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  transition: all .2s;
}
.qty-btn:hover { background: var(--brown); color: white; border-color: var(--brown); }
.qty-val { font-weight: 700; color: var(--brown); min-width: 22px; text-align: center; font-size: 0.9rem; }
.cart-item-price { font-weight: 700; color: var(--brown); font-size: 0.88rem; min-width: 72px; text-align: right; font-family: 'Playfair Display', serif; }
.cart-footer { padding: 1.4rem 1.75rem; border-top: 1px solid var(--border); background: var(--cream); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}
.cart-total span:first-child { font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.cart-total span:last-child { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown); font-weight: 700; }
.cart-note { margin-bottom: 1rem; }
.cart-note label { font-size: 0.72rem; color: var(--text-light); display: block; margin-bottom: 0.45rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-note textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  resize: vertical;
  min-height: 64px;
  outline: none;
  background: white;
  transition: border-color .2s;
}
.cart-note textarea:focus { border-color: var(--gold); }
.btn-whatsapp {
  width: 100%;
  background: var(--green-wa);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.05rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all .2s;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp svg { width: 22px; height: 22px; }
.btn-whatsapp:hover { background: var(--green-wa-dark); box-shadow: 0 8px 24px rgba(37,211,102,0.4); transform: translateY(-1px); }
.cart-disclaimer { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 0.85rem; line-height: 1.55; }

/* ── PROCESO ── */
.proceso {
  padding: 6rem 2rem;
  background: var(--brown);
}
.proceso-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.proceso-header .section-label { color: var(--gold); }
.proceso-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F5EFE4;
  margin-bottom: 0.5rem;
}
.proceso-header .section-divider { background: var(--gold); }
.proceso-header p { color: rgba(245,239,228,0.6); font-size: 0.95rem; }
.proceso-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.proceso-tab {
  padding: 0.55rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid rgba(201,168,76,0.35);
  background: transparent;
  color: rgba(245,239,228,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.proceso-tab.active, .proceso-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.proceso-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proceso-grid.hidden { display: none; }
.proceso-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proceso-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
}
.proceso-card-large {
  grid-column: span 2;
  height: 320px;
}
.proceso-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.proceso-card:hover img { filter: brightness(0.55); transform: scale(1.04); }
.proceso-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(18,12,4,0.92) 0%, rgba(18,12,4,0.3) 60%, transparent 100%);
  transform: translateY(8px);
  transition: transform .3s ease;
}
.proceso-card:hover .proceso-caption { transform: translateY(0); }
.proceso-caption span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.proceso-caption p {
  color: rgba(245,239,228,0.9);
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
}
.proceso-tab-oculto {
  border-color: rgba(201,168,76,0.6) !important;
  color: var(--gold-light) !important;
}
.proceso-tab-oculto.active, .proceso-tab-oculto:hover {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown)) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold) !important;
}

/* ── VITRINA ── */
.vitrina {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.vitrina-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vitrina-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.vitrina-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.vitrina-large {
  grid-row: 1 / 3;
}
.vitrina-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.vitrina-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  filter: brightness(0.75);
}
.vitrina-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.6);
}
.vitrina-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(18,12,4,0.85) 0%, transparent 100%);
  transition: padding .3s;
}
.vitrina-card:hover .vitrina-overlay { padding-bottom: 2rem; }
.vitrina-overlay span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.vitrina-overlay h3 {
  font-family: 'Playfair Display', serif;
  color: #F5EFE4;
  font-size: 1.15rem;
  font-weight: 700;
}
.btn-catalogo {
  display: inline-block;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-catalogo:hover { color: var(--gold-dark); }

/* ── HISTORIA ── */
.historia {
  background: var(--cream);
  padding: 6rem 2rem;
}
.historia-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.historia-intro {
  max-width: 700px;
  margin-bottom: 4rem;
}
.historia-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--brown);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.historia-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
}
.historia-lead strong { color: var(--brown); }
.historia-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4.5rem;
  border-left: 2px solid var(--border);
  padding-left: 2rem;
  margin-left: 1rem;
}
.historia-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 0 0 2.5rem;
  position: relative;
}
.historia-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.historia-fecha {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 700;
  padding-top: 0.2rem;
  line-height: 1.3;
}
.historia-contenido h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}
.historia-contenido p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.historia-contenido p em { color: var(--brown-mid); font-style: italic; }
.historia-item-destacado .historia-contenido {
  background: var(--brown);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
}
.historia-item-destacado .historia-contenido h3 { color: var(--gold-light); }
.historia-item-destacado .historia-contenido p { color: rgba(245,239,228,0.8); }
.historia-beneficios {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border);
}
.historia-beneficios h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown);
  text-align: center;
  margin-bottom: 2rem;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
}
.beneficio {
  text-align: center;
}
.beneficio-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.beneficio h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.beneficio p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── GALLERY HINT ── */
.gallery-hint {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(18,12,4,0.72);
  color: rgba(245,239,228,0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.has-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color .25s;
}
.has-gallery:hover::after {
  border-color: var(--gold);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,6,2,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-inner {
  position: relative;
  width: min(900px, 96vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(245,239,228,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
.lb-close:hover { color: white; background: rgba(255,255,255,0.1); }
.lb-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lb-title {
  font-family: 'Playfair Display', serif;
  color: #F5EFE4;
  font-size: 1.1rem;
  font-weight: 700;
}
.lb-counter {
  font-size: 0.75rem;
  color: rgba(245,239,228,0.4);
  letter-spacing: 0.1em;
}
.lb-main {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-height: 60vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,239,228,0.1);
  border: 1px solid rgba(245,239,228,0.15);
  color: #F5EFE4;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.lb-arrow:hover { background: rgba(201,168,76,0.25); border-color: var(--gold); }
.lb-prev { left: -52px; }
.lb-next { right: -52px; }
.lb-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lb-thumb {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all .2s;
}
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.active { opacity: 1; border-color: var(--gold); }
@media (max-width: 768px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .lb-arrow { width: 36px; height: 36px; font-size: 1.5rem; }
  .lb-img { max-height: 50vh; }
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--green-wa);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  animation: fadeIn 0.8s 1.5s both;
  text-decoration: none;
}
.wa-float:hover {
  background: var(--green-wa-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 768px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; padding: 0.9rem; border-radius: 50%; }
  .wa-float .wa-float-text { display: none; }
}

/* ── HEADER SCROLLED ── */
.header.scrolled {
  background: rgba(245,239,228,0.99);
  box-shadow: 0 2px 20px rgba(44,26,8,0.1);
}
.header.scrolled .logo-name { font-size: 1.15rem; }
.header.scrolled .logo-icon { width: 50px; }
.header, .header .logo-icon, .header .logo-name { transition: all 0.3s ease; }

/* ── HAMBURGER MENU ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  margin-right: 0.75rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--brown);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav .mobile-nav-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-nav-wa {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-wa);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
}

/* ── VITRINA MOBILE CAROUSEL ── */
@media (max-width: 768px) {
  .vitrina-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vitrina-grid::-webkit-scrollbar { display: none; }
  .vitrina-card {
    flex: 0 0 80vw;
    height: 280px;
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .vitrina-large {
    flex: 0 0 90vw;
    height: 320px;
    grid-row: unset;
  }
  .vitrina-overlay h3 { font-size: 1rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Hero */
  .hero { height: 100svh; min-height: 580px; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); line-height: 1.05; }
  .hero-desc { font-size: 0.9rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary { padding: 0.9rem 2rem; font-size: 0.8rem; }

  /* Header */
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { padding: 0.6rem 1.25rem; }

  /* Badges — scroll horizontal */
  .badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    padding: 0 1rem;
    gap: 0;
  }
  .badges::-webkit-scrollbar { display: none; }
  .badge {
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: none;
    padding: 1rem 1.5rem;
    font-size: 0.7rem;
  }

  /* Manifiesto */
  .manifiesto { padding: 3.5rem 1.5rem; }
  .manifiesto blockquote { font-size: 1.2rem; line-height: 1.6; }

  /* Proceso */
  .proceso { padding: 4rem 1rem; }
  .proceso-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .proceso-card { height: 200px; border-radius: 10px; }
  .proceso-card-large { grid-column: span 2; height: 240px; }
  .proceso-caption span { font-size: 0.6rem; }
  .proceso-caption p { font-size: 0.75rem; }

  /* Catálogo */
  .section { padding: 4rem 1.25rem; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .product-img { height: 180px; }
  .product-info { padding: 1rem 1rem 1.1rem; }
  .product-name { font-size: 1rem; }
  .product-desc { font-size: 0.75rem; }
  .product-price { font-size: 1.2rem; }
  .add-btn { padding: 0.5rem 0.9rem; font-size: 0.7rem; }

  /* Nosotros */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats { gap: 1.25rem; flex-wrap: wrap; }
  .stat span { font-size: 2rem; }

  /* Cómo pedir */
  .how-grid { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .how-arrow { transform: rotate(90deg); text-align: center; }
  .how-step { padding: 1.5rem 1.25rem; }

  /* Historia */
  .historia { padding: 4rem 1.25rem; }
  .historia-item { grid-template-columns: 80px 1fr; gap: 0.75rem; }
  .historia-timeline { padding-left: 1rem; }
  .historia-beneficios { padding: 1.75rem 1.25rem; border-radius: 16px; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .beneficio p { font-size: 0.78rem; }

  /* Footer */
  .footer { padding: 3.5rem 1.25rem 2rem; }
  .footer-links { gap: 1.5rem; flex-wrap: wrap; }

  /* Filtros */
  .filters { gap: 0.4rem; }
  .filter-btn { padding: 0.45rem 1.1rem; font-size: 0.7rem; }

  /* Pickup */
  .pickup-info { padding: 1rem 1.25rem; }
}

/* ── EXTRA SMALL (< 400px) ── */
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .proceso-grid { grid-template-columns: 1fr; }
  .proceso-card { height: 240px; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .historia-item { grid-template-columns: 1fr; }
  .historia-fecha { margin-bottom: 0.5rem; }
}
