/* ============================================
   YENI MOJICA — "Nunca es Tarde" FUXION
   
   ANALOGOUS PALETTE (yellow-green arc):
   Gold/Wheat → Olive → Sage → Forest
   
   Fonts: Lora (serif) + DM Sans (sans)
   ============================================ */
:root {
  --olive: #5C6B3C;
  --olive-dark: #47532E;
  --olive-deep: #3A4425;
  --sage: #8B9A6D;
  --sage-light: #A4B187;
  --sage-muted: #97A87B;
  --wheat: #C8A96E;
  --wheat-light: #D4BA86;
  --wheat-pale: #E2CFA4;
  --linen: #F7F3ED;
  --cream: #EDE8DF;
  --taupe: #B5A898;
  --bark: #6B5E52;
  --dark: #2F2B26;
  --dark-warm: #3A352E;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--linen); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; background: transparent; }
ul { list-style: none; }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ANNOUNCEMENT BAR */
.announcement-bar { background: linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 50%, var(--sage) 100%); color: #fff; text-align: center; padding: 10px 16px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.3px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(247,243,237,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(181,168,152,0.2); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(47,43,38,0.08); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.logo { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.logo span { color: var(--olive); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--bark); transition: color 0.3s; }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }
.nav-links a:hover { color: var(--olive); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; }
.cart-btn:hover { background: var(--cream); }
.cart-btn svg { width: 20px; height: 20px; color: var(--dark); }
.cart-count { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; background: var(--wheat); color: var(--dark); border-radius: 50%; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-count.hidden { display: none; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; background: var(--olive); color: #fff; font-size: 0.92rem; font-weight: 600; transition: all 0.3s; }
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,107,60,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; background: transparent; color: var(--olive); border: 2px solid var(--olive); font-size: 0.92rem; font-weight: 600; transition: all 0.3s; }
.btn-outline:hover { background: var(--olive); color: #fff; transform: translateY(-2px); }
.btn-wheat { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; background: var(--olive); color: #fff; font-size: 0.92rem; font-weight: 600; transition: all 0.3s; }
.btn-wheat:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,107,60,0.3); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; background: #fff; color: var(--olive); font-size: 0.92rem; font-weight: 600; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); font-size: 0.92rem; font-weight: 600; transition: all 0.3s; }
.btn-outline-white:hover { background: #fff; color: var(--olive); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* HAMBURGER & MOBILE */
.hamburger { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--linen); z-index: 999; padding: 90px 32px 40px; display: flex; flex-direction: column; }
.mobile-menu.hidden { display: none; }
.mobile-menu a { display: block; font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); padding: 14px 0; border-bottom: 1px solid rgba(181,168,152,0.3); }
.mobile-menu a:hover { color: var(--olive); }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.badge-olive { background: rgba(92,107,60,0.1); color: var(--olive); }
.badge-wheat { background: rgba(200,169,110,0.15); color: var(--wheat); }
.badge-sage { background: rgba(139,154,109,0.15); color: var(--sage); }

/* HERO */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; background: var(--linen); }
.hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(92,107,60,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-family: 'Lora', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin: 16px 0; color: var(--dark); }
.hero-content h1 em { font-style: italic; color: var(--olive); }
.hero-subtitle { font-size: 1.05rem; color: var(--bark); margin-bottom: 28px; max-width: 480px; line-height: 1.8; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; }
.hero-stat-value { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 700; color: var(--olive); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: var(--bark); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-image-wrapper { position: relative; }
.hero-image-frame { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(47,43,38,0.12); }
.hero-image-frame::after { content: ''; position: absolute; top: -10px; right: -10px; width: 100%; height: 100%; border: 2px solid var(--wheat-pale); border-radius: 16px; z-index: -1; }
.hero-image-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--cream) 0%, var(--wheat-pale) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--bark); text-align: center; padding: 40px; font-size: 0.9rem; }
.hero-float-card { position: absolute; bottom: -20px; left: -20px; background: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: 0 12px 36px rgba(47,43,38,0.12); display: flex; align-items: center; gap: 10px; z-index: 3; }
.hero-float-icon { width: 40px; height: 40px; background: rgba(92,107,60,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-float-icon svg { width: 20px; height: 20px; color: var(--olive); }

/* PAIN POINTS */
.pain-section { background: var(--cream); padding: 80px 0; overflow: hidden; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 40px; padding: 0 24px; }
.section-header h2 { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; margin-bottom: 10px; }
.section-header p { color: var(--bark); font-size: 1rem; }
.pain-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 0 24px 16px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.pain-scroll::-webkit-scrollbar { display: none; }
.pain-card { min-width: 260px; max-width: 280px; flex-shrink: 0; scroll-snap-align: start; background: #fff; border-radius: 12px; padding: 24px 20px; border-left: 4px solid var(--wheat); transition: all 0.3s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(47,43,38,0.08); }
.pain-card h4 { font-family: 'Lora', serif; font-size: 1.05rem; margin-bottom: 6px; }
.pain-card p { font-size: 0.88rem; color: var(--bark); line-height: 1.6; }

/* BENEFITS RIBBON */
.benefits-ribbon { background: var(--olive); overflow: hidden; }
.ribbon-track { display: flex; animation: ribbonScroll 30s linear infinite; }
.ribbon-item { display: flex; align-items: center; gap: 8px; padding: 16px 32px; white-space: nowrap; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; }
.ribbon-item svg { width: 16px; height: 16px; color: var(--wheat-light); flex-shrink: 0; }
.ribbon-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--wheat-light); flex-shrink: 0; align-self: center; }
@keyframes ribbonScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* CONCEPT SECTION */
.concept-section { background: var(--dark); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.concept-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(92,107,60,0.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(200,169,110,0.06) 0%, transparent 50%); pointer-events: none; }
.concept-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.concept-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.concept-header h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.concept-header h2 em { font-style: italic; color: var(--wheat-light); }
.concept-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--sage-light), var(--wheat), var(--olive)); }
.timeline-item { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.timeline-number { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: #fff; flex-shrink: 0; position: relative; z-index: 2; }
.timeline-content { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px; flex: 1; transition: all 0.3s; }
.timeline-content:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.timeline-content h4 { font-family: 'Lora', serif; font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.timeline-content .tl-product { font-size: 0.8rem; color: var(--sage-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.timeline-content p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ZIGZAG */
.zigzag-section { padding: 80px 0; background: var(--linen); }
.zigzag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.zigzag-grid.reverse .zigzag-text { order: 1; }
.zigzag-grid.reverse .zigzag-media { order: 2; }
.zigzag-image { width: 100%; border-radius: 16px; transition: transform 0.4s; }
.zigzag-image:hover { transform: scale(1.03); }
.zigzag-image-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(145deg, var(--cream), var(--wheat-pale)); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--bark); font-size: 0.9rem; }
.zigzag-text h3 { font-family: 'Lora', serif; font-size: clamp(1.4rem, 3vw, 2rem); margin: 12px 0; }
.zigzag-text p { color: var(--bark); font-size: 1rem; margin-bottom: 20px; line-height: 1.8; }
.benefit-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.benefit-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-item h5 { font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.benefit-item span { font-size: 0.82rem; color: var(--bark); }

/* PRODUCTS */
.products-section { padding: 80px 0; background: var(--cream); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.product-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(181,168,152,0.2); transition: all 0.3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(47,43,38,0.1); }
.product-image { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, var(--cream) 0%, #fff 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.product-info { padding: 20px; }
.product-info h4 { font-family: 'Lora', serif; font-size: 1.15rem; margin-bottom: 2px; }
.product-info .product-category { font-size: 0.8rem; color: var(--bark); margin-bottom: 4px; }
.product-info .product-desc { font-size: 0.85rem; color: var(--bark); margin-bottom: 12px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive); }
.add-to-cart-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--olive); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.add-to-cart-btn:hover { background: var(--olive-dark); transform: scale(1.1); }
.add-to-cart-btn svg { width: 18px; height: 18px; }

/* STEPS */
.steps-section { padding: 80px 0; background: var(--linen); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.step-card { text-align: center; }
.step-number { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0 auto 16px; }
.step-card h4 { font-family: 'Lora', serif; font-size: 1.1rem; margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; color: var(--bark); line-height: 1.6; }

/* QUIZ INTEGRATED */
.quiz-section { background: var(--dark-warm); padding: 80px 0; position: relative; overflow: hidden; }
.quiz-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 50%, rgba(92,107,60,0.1) 0%, transparent 60%); pointer-events: none; }
.quiz-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.quiz-progress-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--sage), var(--wheat)); border-radius: 2px; transition: width 0.4s ease; }
.quiz-option { width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; text-align: left; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; margin-bottom: 10px; }
.quiz-option:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.quiz-option.selected { background: rgba(92,107,60,0.2); border-color: var(--sage); color: #fff; }
.radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0; position: relative; transition: all 0.3s; }
.quiz-option.selected .radio-dot { border-color: var(--sage-light); background: var(--sage-light); }
.quiz-option.selected .radio-dot::after { content: ''; position: absolute; top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.quiz-result-bar { height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.quiz-result-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }

/* TESTIMONIALS */
.testimonials-section { padding: 80px 0; background: var(--linen); }
.testimonials-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 0 24px 16px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 300px; max-width: 340px; flex-shrink: 0; scroll-snap-align: start; background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid rgba(181,168,152,0.2); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--wheat); fill: var(--wheat); }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--dark); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; }
.testimonial-location { font-size: 0.78rem; color: var(--bark); }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--cream); }
.faq-container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.faq-item { border-bottom: 1px solid rgba(181,168,152,0.35); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); text-align: left; cursor: pointer; transition: color 0.3s; }
.faq-question:hover { color: var(--olive); }
.faq-icon { width: 20px; height: 20px; color: var(--olive); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-content { padding: 0 0 20px; font-size: 0.92rem; color: var(--bark); line-height: 1.7; }

/* CTA FINAL */
.cta-final { background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 50%, var(--dark) 100%); padding: 80px 0; text-align: center; }
.cta-final h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.cta-final p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 48px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--sage-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 320px; }
.footer h5 { color: #fff; font-family: 'Lora', serif; font-size: 0.95rem; margin-bottom: 12px; }
.footer a { display: block; font-size: 0.85rem; padding: 3px 0; transition: color 0.3s; }
.footer a:hover { color: var(--sage-light); }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; padding: 16px 24px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; text-align: center; }

/* CART SIDEBAR */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(47,43,38,0.4); z-index: 2000; transition: opacity 0.3s; }
.cart-overlay.opacity-0 { opacity: 0; }
.cart-overlay.pointer-events-none { pointer-events: none; }
.cart-sidebar { position: fixed; top: 0; right: 0; width: 400px; max-width: 90vw; height: 100%; background: var(--linen); z-index: 2001; display: flex; flex-direction: column; transition: transform 0.3s ease; box-shadow: -4px 0 24px rgba(47,43,38,0.1); }
.cart-sidebar.translate-x-full { transform: translateX(100%); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--cream); }
.cart-header h3 { font-family: 'Lora', serif; font-size: 1.2rem; }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; }
.cart-close:hover { background: var(--cream); }
.cart-close svg { width: 20px; height: 20px; color: var(--bark); }
.cart-body { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--cream); }
.cart-footer.hidden { display: none; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total-label { font-weight: 600; color: var(--dark); }
.cart-total-value { font-family: 'Lora', serif; font-weight: 700; color: var(--olive); font-size: 1.2rem; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--olive); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(92,107,60,0.4); z-index: 1500; transition: all 0.3s; }
.wa-float:hover { transform: scale(1.1); background: var(--olive-dark); }
.wa-float svg { width: 28px; height: 28px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrapper { order: 0; max-width: 400px; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-float-card { bottom: -10px; left: 50%; transform: translateX(-50%); }
  .zigzag-grid { grid-template-columns: 1fr; }
  .zigzag-grid.reverse .zigzag-text { order: 0; }
  .zigzag-grid.reverse .zigzag-media { order: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 22px; }
  .timeline-number { width: 44px; height: 44px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
