/* ======================================================
   DULCIS IDEA · Hoja de estilos principal
   Editorial · Cálido · Artesanal · Profesional
   ====================================================== */

/* ========== FUENTES ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== VARIABLES ========== */
:root {
  /* Colores brand */
  --c-marron: #4A2C17;
  --c-marron-oscuro: #2D1810;
  --c-marron-suave: #6B4528;
  --c-terracota: #A0522D;
  --c-dorado: #E8A33D;
  --c-dorado-claro: #F5C77A;
  --c-crema: #F5EFE0;
  --c-crema-suave: #FBF8F1;
  --c-crema-oscuro: #EDE3CD;
  --c-blanco: #FFFFFF;
  --c-verde: #7A8B47;
  --c-rojo: #B73E3E;
  --c-gris-borde: #E8E2D5;

  /* Tipografía */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  /* Espaciado */
  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1480px;

  /* Transiciones */
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--c-crema-suave);
  color: var(--c-marron-oscuro);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== TIPOGRAFÍA ========== */
.display { font-family: var(--f-display); font-weight: 600; letter-spacing: -0.01em; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; color: var(--c-marron); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-terracota);
}
.italic { font-style: italic; }

/* ========== LAYOUT BASE ========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 2rem; }

section { position: relative; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ========== NAVEGACIÓN ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: rgba(285, 239, 224, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 44, 23, 0.08);
  transition: var(--tr);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-marron-oscuro); 
  position: relative;
  transition: var(--tr);
}
.nav-link:hover { color: var(--c-dorado); } 
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--c-dorado); 
  transition: var(--tr);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--c-marron);
  color: var(--c-crema);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--tr);
}
.nav-cta:hover { background: var(--c-marron-oscuro); transform: translateY(-1px); }
.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--c-marron); }
  .nav-mobile {
    display: none; position: fixed; top: 80px; left: 0; right: 0;
    background: var(--c-crema); padding: 2rem;
    border-bottom: 1px solid var(--c-gris-borde);
    flex-direction: column; gap: 1.5rem;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-size: 1.1rem; }
}

/* ========== HERO ========== */
.hero {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(232, 163, 61, 0.15);
  border-radius: 999px;
  color: var(--c-marron);
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--c-marron);
}
.hero-title .accent {
  font-style: italic;
  color: var(--c-terracota);
  font-weight: 400;
}
.hero-text {
  font-size: 1.15rem;
  color: var(--c-marron-suave);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 5/5;
  box-shadow: 0 30px 80px rgba(74, 44, 23, 0.15);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74, 44, 23, 0.2) 100%);
  z-index: 1;
}
.hero-tag {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--c-crema);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(74, 44, 23, 0.15);
}
.hero-tag-num { font-family: var(--f-display); font-size: 2rem; font-weight: 700; color: var(--c-marron); line-height: 1; }
.hero-tag-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-terracota); margin-top: 0.25rem; }

@media (max-width: 900px) {
  .hero { padding: 9rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { max-width: 500px; margin: 0 auto; }
}

/* ========== BOTONES ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--tr);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-marron);
  color: var(--c-crema);
}
.btn-primary:hover {
  background: var(--c-marron-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 44, 23, 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--c-marron);
  border: 1.5px solid var(--c-marron);
}
.btn-secondary:hover {
  background: var(--c-marron);
  color: var(--c-crema);
}
.btn-gold {
  background: var(--c-dorado);
  color: var(--c-marron);
}
.btn-gold:hover {
  background: var(--c-dorado-claro);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 163, 61, 0.4);
}
.btn-arrow { transition: transform var(--tr); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== SECCIÓN HEADER ========== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { display: inline-block; margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--c-marron-suave); font-size: 1.05rem; }
.divider {
  width: 40px; height: 1px;
  background: var(--c-dorado);
  margin: 1.5rem auto;
}

/* ========== NÚMEROS / STATS ========== */
.stats {
  background: var(--c-marron);
  color: var(--c-crema);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(232, 163, 61, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.stat {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(245, 239, 224, 0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--c-dorado);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-num small { font-size: 0.5em; color: var(--c-crema); }
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.85);
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(245, 239, 224, 0.15); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(245, 239, 224, 0.15); }
}

/* ========== FILOSOFÍA / SECCIÓN CON IMAGEN ========== */
.philo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philo-image {
  /* aspect-ratio: 4/5; */
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(74, 44, 23, 0.12);
}
.philo-image img { width: 100%; height: 100%; object-fit: cover; }
.philo-content .eyebrow { margin-bottom: 1rem; display: inline-block; }
.philo-content h2 { margin-bottom: 1.5rem; }
.philo-content p { font-size: 1.05rem; color: var(--c-marron-suave); margin-bottom: 1rem; line-height: 1.8; }
.philo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.philo-feature {
  padding: 1.25rem;
  background: var(--c-crema);
  border-left: 3px solid var(--c-dorado);
  border-radius: 0 4px 4px 0;
}
.philo-feature h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.philo-feature p { font-size: 0.875rem; margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .philo-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ========== LÍNEAS DE PRODUCTO ========== */
.lines-bg { background: var(--c-crema); }
.lines-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.line-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--c-marron);
}
.line-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
  opacity: 0.85;
}
.line-card:hover img { transform: scale(1.05); opacity: 1; }
.line-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45, 24, 16, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--c-crema);
}
.line-overlay h3 {
  color: var(--c-crema);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.line-overlay p { font-size: 0.8rem; opacity: 0.9; margin: 0; }
@media (max-width: 1100px) {
  .lines-grid { grid-template-columns: repeat(3, 1fr); }
  .line-card:nth-child(4), .line-card:nth-child(5) {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 600px) {
  .lines-grid { grid-template-columns: 1fr 1fr; }
  .line-card { aspect-ratio: 1/1; }
}

/* ========== CATÁLOGO / PRODUCTOS ========== */
.catalog-bg { background: var(--c-crema-suave); }
.catalog-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--c-marron-suave);
  border: 1px solid var(--c-gris-borde);
  transition: var(--tr);
}
.filter-btn:hover { color: var(--c-marron); border-color: var(--c-marron); }
.filter-btn.active {
  background: var(--c-marron);
  color: var(--c-crema);
  border-color: var(--c-marron);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--c-blanco);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--tr);
  cursor: pointer;
  border: 1px solid var(--c-gris-borde);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74, 44, 23, 0.12);
  border-color: var(--c-dorado);
}
.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-crema);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-info { padding: 1.5rem; }
.product-line {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-terracota);
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-marron);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--c-marron-suave);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-gris-borde);
}
.product-meta span { display: flex; align-items: center; gap: 0.3rem; }
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-price {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-marron);
}
.product-price small { font-size: 0.6em; font-weight: 400; color: var(--c-marron-suave); }
.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--c-marron);
  color: var(--c-crema);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--tr);
}
.btn-add:hover { background: var(--c-dorado); color: var(--c-marron); }

/* ========== CTA BLOQUE ========== */
.cta-block {
  background: linear-gradient(135deg, var(--c-marron) 0%, var(--c-marron-oscuro) 100%);
  color: var(--c-crema);
  padding: 5rem 3rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem auto;
  max-width: 1100px;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(232, 163, 61, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block h2 { color: var(--c-crema); margin-bottom: 1rem; position: relative; }
.cta-block p { color: rgba(245, 239, 224, 0.8); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-block .btn { position: relative; }

/* ========== BENEFICIOS / GRID ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--c-crema);
  border-radius: 4px;
  transition: var(--tr);
}
.benefit:hover { background: var(--c-dorado-claro); transform: translateY(-4px); }
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--c-marron);
  color: var(--c-crema);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-family: var(--f-display);
  font-weight: 700;
}
.benefit h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit p { font-size: 0.875rem; color: var(--c-marron-suave); margin: 0; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== TESTIMONIO / QUOTE ========== */
.quote-section {
  background: var(--c-crema);
  text-align: center;
  padding: 6rem 2rem;
}
.quote {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  color: var(--c-marron);
  font-weight: 500;
  font-style: italic;
}
.quote::before, .quote::after {
  content: '"';
  font-size: 1.5em;
  color: var(--c-dorado);
  vertical-align: middle;
}

/* ========== METODO DULCIS ========== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.method-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--c-crema-suave);
  border-radius: 4px;
  border: 1px solid var(--c-gris-borde);
  transition: var(--tr);
}
.method-step:hover {
  border-color: var(--c-dorado);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(74, 44, 23, 0.08);
}
.method-num {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-dorado);
  line-height: 1;
  margin-bottom: 1rem;
}
.method-step h4 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.method-step p { font-size: 0.9rem; color: var(--c-marron-suave); margin: 0; line-height: 1.6; }
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .method-grid { grid-template-columns: 1fr; } }

/* ========== FOOTER ========== */
.footer {
  background: var(--c-marron-oscuro);
  color: var(--c-crema);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-brand img { height: 64px;  margin-bottom: 1rem; }
.footer-brand p { color: rgba(245, 239, 224, 0.65); font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h5 {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-dorado);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  color: rgba(245, 239, 224, 0.75);
  font-size: 0.875rem;
  transition: var(--tr);
}
.footer-links a:hover { color: var(--c-dorado); }
.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(245, 239, 224, 0.75);
  margin-bottom: 0.5rem;
}
.footer-contact-item strong { color: var(--c-crema); display: block; font-weight: 600; margin-bottom: 0.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 224, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(245, 239, 224, 0.5);
}

/* ========== CARRITO FLOTANTE ========== */
.cart-toggle {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: var(--c-marron);
  color: var(--c-crema);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(74, 44, 23, 0.3);
  transition: var(--tr);
}
.cart-toggle:hover { transform: scale(1.05); background: var(--c-dorado); color: var(--c-marron); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--c-rojo);
  color: var(--c-blanco);
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-crema);
}

.cart-panel {
  position: fixed;
  top: 0; right: -400px; bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--c-crema-suave);
  z-index: 200;
  transition: right var(--tr);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(74, 44, 23, 0.15);
}
.cart-panel.open { right: 0; }
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--c-gris-borde);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 1.4rem; }
.cart-close { font-size: 1.5rem; color: var(--c-marron); padding: 0.5rem; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-empty { text-align: center; color: var(--c-marron-suave); padding: 3rem 1rem; font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-gris-borde);
}
.cart-item-img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--f-display); font-size: 0.95rem; color: var(--c-marron); margin-bottom: 0.25rem; }
.cart-item-price { font-size: 0.85rem; color: var(--c-marron-suave); }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 24px; height: 24px;
  background: var(--c-crema);
  border: 1px solid var(--c-gris-borde);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--c-marron);
}
.qty-btn:hover { background: var(--c-dorado); }
.cart-item-qty { font-size: 0.85rem; min-width: 24px; text-align: center; }
.cart-item-remove { color: var(--c-rojo); font-size: 0.75rem; margin-left: auto; }
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--c-gris-borde);
  background: var(--c-crema);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-marron);
}
.cart-total strong { font-weight: 700; }
.cart-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--c-marron);
  color: var(--c-crema);
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--tr);
}
.cart-checkout:hover { background: var(--c-dorado); color: var(--c-marron); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(45, 24, 16, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ========== LANDING / FORMULARIO ========== */
.landing-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.landing-left {
  background: var(--c-marron);
  color: var(--c-crema);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.landing-left::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 80%; height: 160%;
  background: radial-gradient(ellipse, rgba(232, 163, 61, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.landing-left-content { position: relative; z-index: 2; max-width: 540px; margin-left: auto; }
.landing-left .eyebrow { color: var(--c-dorado); margin-bottom: 1.5rem; display: inline-block; }
.landing-left h1 { color: var(--c-crema); font-size: clamp(2.5rem, 4vw, 3.75rem); line-height: 1.1; margin-bottom: 1.5rem; }
.landing-left h1 .accent { color: var(--c-dorado); font-style: italic; }
.landing-left > .landing-left-content > p {
  font-size: 1.05rem;
  color: rgba(245, 239, 224, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.landing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.landing-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.landing-feature-icon {
  width: 36px; height: 36px;
  background: var(--c-dorado);
  color: var(--c-marron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.landing-feature h4 { color: var(--c-crema); font-size: 1.05rem; margin-bottom: 0.25rem; }
.landing-feature p { font-size: 0.9rem; color: rgba(245, 239, 224, 0.7); margin: 0; }

.landing-right {
  background: var(--c-crema-suave);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-right-content { max-width: 460px; margin-right: auto; }
.landing-form-header { margin-bottom: 2rem; }
.landing-form-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.landing-form-header p { color: var(--c-marron-suave); }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-marron);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--c-blanco);
  border: 1px solid var(--c-gris-borde);
  border-radius: 4px;
  color: var(--c-marron-oscuro);
  transition: var(--tr);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--c-dorado);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--c-marron-suave);
  margin: 1.5rem 0;
}
.form-checkbox input { margin-top: 0.2rem; accent-color: var(--c-marron); }
.form-checkbox a { color: var(--c-marron); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--c-marron);
  color: var(--c-crema);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-submit:hover { background: var(--c-dorado); color: var(--c-marron); }

.form-success {
  background: var(--c-crema);
  border-left: 4px solid var(--c-verde);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--c-verde); margin-bottom: 1rem; }

@media (max-width: 1000px) {
  .landing-hero { grid-template-columns: 1fr; }
  .landing-left, .landing-right { padding: 4rem 2rem; }
  .landing-left-content, .landing-right-content { margin: 0 auto; }
}

/* ========== ANIMACIONES ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
  position: fixed;
  bottom: 6rem; right: 2rem;
  background: var(--c-marron);
  color: var(--c-crema);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  z-index: 300;
  box-shadow: 0 10px 30px rgba(74, 44, 23, 0.3);
  transform: translateX(120%);
  transition: transform var(--tr);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.toast.show { transform: translateX(0); }
.toast::before { content: '✓'; color: var(--c-dorado); font-weight: 700; }

/* ========== UTILS ========== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
