/* ==========================================================================
   +1000 RECETAS ARGENTINAS - LANDING PAGE STYLESHEET (VANILLA CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary-brand: #0A64BC;        /* Argentine Sky Blue / Vibrant Navy */
  --primary-accent: #00C2FF;       /* Bright Cyan Action / CTA */
  --primary-accent-hover: #00A6DC;
  --secondary-brand: #FF6B00;     /* Appetizing Warm Orange */
  --golden-yellow: #FFBD00;      /* Star Rating & Highlight Yellow */
  --green-success: #22C55E;      /* Checkmarks & FREE Badges */
  --red-alert: #EF4444;          /* Urgency / Pain cross icons */

  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;

  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-accent: #CBD5E1;

  /* Fonts */
  --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.06);
  --shadow-cta: 0 12px 28px rgba(0, 194, 255, 0.4);
  --glow-cyan: 0 0 50px rgba(0, 194, 255, 0.35);
  --glow-orange: 0 0 35px rgba(255, 107, 0, 0.25);

  /* Layout Spacing */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-highlight { color: var(--secondary-brand); }
.text-cyan { color: var(--primary-accent); }
.text-gold { color: var(--golden-yellow); }

/* --------------------------------------------------------------------------
   3. ANIMATIONS & MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */

/* CTA Pulse Effect */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 14px 35px rgba(0, 194, 255, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
  }
}

/* Scroll Reveal Fade-In-Up */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee Infinite Scroll Animation */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Float 3D Motion */
@keyframes floatMild {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* --------------------------------------------------------------------------
   4. BUTTON STYLES (CTA)
   -------------------------------------------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #00D2FF 0%, #0088FF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: ctaPulse 3s infinite ease-in-out;
  width: 100%;
  max-width: 480px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 194, 255, 0.7);
  background: linear-gradient(135deg, #24D9FF 0%, #0077FF 100%);
}

.btn-cta-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 500;
}

.btn-cta-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* --------------------------------------------------------------------------
   SECTION 1: BARRA DE URGENCIA (TOP BAR)
   -------------------------------------------------------------------------- */
.top-urgency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #090E17;
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--secondary-brand);
  box-shadow: var(--shadow-md);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.urgency-text-ticker {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--golden-yellow);
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar-btn {
  background: var(--secondary-brand);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  white-space: nowrap;
}

.top-bar-btn:hover {
  background: #E55D00;
}

/* --------------------------------------------------------------------------
   SECTION 2: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #E6F3FF 0%, #F8FAFC 100%);
  overflow: hidden;
}

.hero-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E0F2FE;
  color: #0369A1;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ar-badge {
  background: #0A64BC;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.dashes-accent {
  color: #FF8A00;
  font-weight: 300;
  margin: 0 0.1em;
}

.hero-title .highlight-num {
  color: var(--secondary-brand);
  background: linear-gradient(180deg, #FF8A00 0%, #E55D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight-arg {
  color: #0A64BC;
}

.hero-title .dark-badge {
  background: #090E17;
  color: var(--text-white);
  padding: 0.15em 0.45em;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.25em;
  box-shadow: 0 6px 16px rgba(9, 14, 23, 0.25);
}

.sun-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem auto 1.25rem;
  max-width: 300px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #70B5F9, transparent);
}

.sun-icon {
  font-size: 1.1rem;
  color: #FFBD00;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto;
}

/* Floating 3D Composite Mockups */
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .hero-visual-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero-book-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-ebook-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.main-ebook-img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-dishes-composite {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.dish-card-floating {
  position: relative;
  background: #FFFFFF;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border: 2px solid #FFFFFF;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 360px;
}

.dish-card-floating:nth-child(1) {
  transform: rotate(-3deg) translateX(-15px);
}

.dish-card-floating:nth-child(2) {
  transform: rotate(2deg) translateX(15px);
  margin-top: -1rem;
}

.dish-card-floating:nth-child(3) {
  transform: rotate(-2deg) translateX(-5px);
  margin-top: -1rem;
}

.dish-card-floating img {
  border-radius: calc(var(--radius-md) - 4px);
  height: 170px;
  width: 100%;
  object-fit: cover;
}

/* Blue Pill Badges (Matching reference site) */
.blue-pill-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #0A64BC 0%, #0088FF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 100, 188, 0.4);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bottom-divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #70B5F9, transparent);
  max-width: 750px;
  margin: 3rem auto 0;
  border-radius: 3px;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   SECTION 3: CARRUSEL DE PRUEBA SOCIAL INICIAL (MARQUEE)
   -------------------------------------------------------------------------- */
.social-proof-marquee-sec {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 0;
  overflow: hidden;
}

.marquee-header {
  margin-bottom: 2rem;
}

.marquee-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.marquee-header p {
  color: #CBD5E1;
  font-size: 1rem;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marquee-item:hover img {
  transform: scale(1.08);
}

.marquee-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  padding: 0.75rem 0.6rem;
  color: #FFF;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   SECTION 4: AGITACIÓN DEL DOLOR VS. SOLUCIÓN (CONTRASTE)
   -------------------------------------------------------------------------- */
.contrast-section {
  padding: 5rem 0;
  background: #F1F5F9;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Overrides for dark background sections */
.bonuses-section .section-title,
.product-sample-section .section-title,
.footer-closing-section .section-title,
.social-proof-marquee-sec .section-title {
  color: var(--text-white);
}

.bonuses-section .section-subtitle,
.product-sample-section .section-subtitle,
.footer-closing-section .section-subtitle,
.social-proof-marquee-sec .section-subtitle {
  color: #CBD5E1;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 850px) {
  .contrast-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contrast-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.contrast-card.problem-card {
  background: #FAF8F8;
  border-top: 5px solid var(--red-alert);
}

.contrast-card.solution-card {
  background: #FFFFFF;
  border-top: 5px solid var(--green-success);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.12);
}

.card-badge-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-card .card-badge-title { color: #991B1B; }
.solution-card .card-badge-title { color: #166534; }

.contrast-img-wrapper {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
}

.contrast-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.icon-cross {
  color: var(--red-alert);
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-top: 2px;
}

.icon-check {
  color: var(--green-success);
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   SECCIÓN INTERMEDIA: OFERTA DESTACADA DEL PRODUCTO (PRODUCT OFFER CARD)
   -------------------------------------------------------------------------- */
.product-offer-section {
  padding: 4rem 0;
  background: #F8FAFC;
}

.product-offer-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .product-offer-card {
    grid-template-columns: 1.05fr 1fr;
  }
}

.product-offer-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-offer-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.product-offer-img:hover {
  transform: scale(1.02);
}

.product-offer-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verified-downloads-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 600;
}

.product-offer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
}

.product-offer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
}

.rating-val {
  font-weight: 800;
  color: #0F172A;
}

.rating-count {
  color: #64748B;
  font-weight: 500;
}

.product-offer-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0.25rem 0;
}

.price-old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: #64748B;
  font-weight: 700;
}

.price-current {
  font-size: 1.8rem;
  font-weight: 900;
  color: #16A34A;
  font-family: var(--font-heading);
}

.save-badge {
  background: #22C55E;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.urgency-cupos-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: #334155;
  width: fit-content;
}

.btn-green-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22C55E;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
  transition: all 0.3s ease;
  margin: 0.5rem 0;
  text-align: center;
}

.btn-green-cta:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.live-viewers-counter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.offer-features-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.features-box-header {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   SECTION 5: QUÉ INCLUYE (CARACTERÍSTICAS GRID 3x2)
   -------------------------------------------------------------------------- */
.features-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-item-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background: #E0F2FE;
  color: #0284C7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-item-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-item-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SECTION 6: APILAMIENTO DE BONOS (VALUE STACKING)
   -------------------------------------------------------------------------- */
.bonuses-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 10%, #0F172A 0%, #090E17 100%);
  color: var(--text-white);
}

.bonuses-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 189, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.bonus-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-accent);
}

.bonus-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-brand);
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}

.bonus-cover-img {
  width: 100%;
  max-width: 200px;
  margin: 1rem auto 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.bonus-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.bonus-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.bonus-price-tag {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.free-badge {
  background: var(--green-success);
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   SECTION 7: MUESTRA DEL PRODUCTO DIGITAL (MOCKUPS INTERNOS)
   -------------------------------------------------------------------------- */
.product-sample-section {
  padding: 5rem 0;
  background: #060B13;
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sample-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.tablet-preview-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 2.5rem auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 194, 255, 0.3);
  border: 1px solid rgba(0, 194, 255, 0.4);
}

.tablet-preview-wrapper img {
  width: 100%;
  display: block;
}

.sample-unlock-card {
  position: relative;
  z-index: 2;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.sample-unlock-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sample-unlock-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   SECTION 8: RESEÑAS Y TESTIMONIOS (UGC)
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.rating-summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-gold {
  color: var(--golden-yellow);
  font-size: 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.verified-tag {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.review-thumb-img {
  margin-top: auto;
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Customer Recipes Gallery Wall ("Sus recetas") */
.customer-gallery-sec {
  text-align: center;
  margin-top: 3rem;
}

.customer-gallery-sec h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.customer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 992px) {
  .customer-gallery-grid { grid-template-columns: repeat(6, 1fr); }
}

.gallery-photo-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-photo-item:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   SECTION 9: PREGUNTAS FRECUENTES (FAQ ACCORDION)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #F8FAFC;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--primary-accent);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* --------------------------------------------------------------------------
   SECTION 10: FOOTER Y CIERRE
   -------------------------------------------------------------------------- */
.footer-closing-section {
  background: #090E17;
  color: var(--text-white);
  padding: 5rem 0 3rem;
  text-align: center;
}

.closing-banner {
  background: linear-gradient(90deg, #FF6B00 0%, #FF8A00 100%);
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.closing-subtitle {
  color: #CBD5E1;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.closing-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #CBD5E1;
  margin-top: 1rem;
}

/* Floating WhatsApp Support Box */
.whatsapp-support-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 440px;
  margin: 3.5rem auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-support-box h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #4ADE80;
}

.btn-whatsapp-chat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, background 0.2s;
}

.btn-whatsapp-chat:hover {
  background: #1EBE5D;
  transform: translateY(-2deg);
}

.payment-methods-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.payment-method-icon {
  background: #FFF;
  color: #1A202C;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.footer-bottom-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* Floating Sticky WhatsApp Button (Fixed Corner Pill Style) */
.whatsapp-fixed-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1600;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.whatsapp-fixed-btn:hover {
  background: #1EBE5D;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-fixed-btn svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .whatsapp-fixed-btn {
    bottom: 18px;
    right: 15px;
    padding: 0.65rem 1.15rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES (MAX-WIDTH 768PX & 480PX)
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Top Urgency Bar Mobile */
  .top-urgency-bar {
    padding: 0.4rem 0.6rem;
  }
  
  .top-bar-content {
    gap: 0.5rem;
    justify-content: space-between;
  }

  .flag-badge {
    display: none; /* Hide flag badge on small screens so text ticker fits completely without truncation */
  }

  .urgency-text-ticker {
    font-size: 0.78rem;
    text-align: left;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-bar-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    flex-shrink: 0;
  }

  /* 2. Hero Section Mobile */
  .hero-section {
    padding: 2rem 0 3rem;
  }

  .hero-header {
    margin-bottom: 1.5rem;
  }

  .hero-pill-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  }

  .sun-divider {
    margin: 0.75rem auto 1rem;
    max-width: 240px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-visual-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .main-ebook-img {
    max-width: 280px;
    transform: none; /* Disable 3D tilt on mobile for clean rendering */
  }

  .hero-dishes-composite {
    gap: 0.75rem;
  }

  .dish-card-floating {
    max-width: 100%;
    transform: none !important; /* Remove horizontal offsets on mobile to prevent overflow */
    margin-top: 0 !important;
  }

  .dish-card-floating img {
    height: 150px;
  }

  .blue-pill-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    top: 10px;
    left: 10px;
  }

  /* 3. CTA Buttons Mobile */
  .btn-cta, .btn-green-cta {
    font-size: 1.05rem;
    padding: 0.9rem 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .btn-cta-subtext {
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  /* 4. Contrast Section Mobile */
  .contrast-section {
    padding: 3rem 0;
  }

  .contrast-card {
    padding: 1.25rem 1rem;
  }

  .contrast-img-wrapper {
    height: 170px;
  }

  .contrast-item {
    font-size: 0.92rem;
  }

  /* 5. Product Offer Card Section Mobile */
  .product-offer-section {
    padding: 2.5rem 0;
  }

  .product-offer-card {
    padding: 1.25rem 1rem;
    gap: 1.75rem;
  }

  .product-offer-title {
    font-size: 1.4rem;
  }

  .product-offer-pricing {
    gap: 0.5rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .price-old {
    font-size: 1.05rem;
  }

  .urgency-cupos-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .offer-features-box {
    padding: 1rem;
  }

  .offer-features-list {
    font-size: 0.84rem;
  }

  /* 6. Features Grid & Bonuses Mobile */
  .features-section, .bonuses-section, .reviews-section, .faq-section {
    padding: 3rem 0;
  }

  .feature-item-card {
    padding: 1.25rem 1rem;
  }

  .bonus-card {
    padding: 1.25rem 1rem;
  }

  .bonus-cover-img {
    max-width: 150px;
  }

  .bonuses-banner {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  /* 7. Reviews & Gallery Mobile */
  .review-card {
    padding: 1rem;
  }

  .customer-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  /* 8. FAQ Mobile */
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* 9. Footer & Floating WhatsApp Mobile */
  .footer-closing-section {
    padding: 3rem 0 2rem;
  }

  .whatsapp-support-box {
    padding: 1.25rem 1rem;
    margin: 2rem auto 2rem;
  }

  .whatsapp-fixed-btn {
    bottom: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .customer-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title .dark-badge {
    font-size: 0.85em;
    padding: 0.2em 0.4em;
  }

  .urgency-text-ticker {
    font-size: 0.72rem;
  }

  .top-bar-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
}

/* ==========================================================================
   SHOPPING CART DRAWER COMPONENT (TU CARRITO) STYLES
   ========================================================================== */

/* Dark Overlay Backdrop */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Off-canvas Drawer Panel */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cart-drawer.active {
  transform: translateX(0);
}

/* Mobile full-screen layout */
@media (max-width: 640px) {
  .cart-drawer {
    max-width: 100vw;
  }
}

/* 1. Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.1rem 1.5rem;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.cart-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0F172A;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--secondary-brand);
}

/* 2. Urgency Timer Banner */
.cart-timer-banner {
  background: #090E17;
  color: #FFFFFF;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.cart-timer-banner span {
  color: #FFFFFF;
  font-weight: 900;
}

/* Scrollable Body Container */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 3. Main Product Item */
.cart-main-product {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #F1F5F9;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin: 0;
}

.cart-item-delete {
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.cart-item-delete:hover {
  color: #EF4444;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  overflow: hidden;
  background: #F8FAFC;
}

.qty-btn {
  background: none;
  border: none;
  padding: 0.2rem 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1E293B;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #E2E8F0;
}

.qty-val {
  padding: 0.2rem 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0F172A;
  min-width: 24px;
  text-align: center;
}

.cart-item-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #94A3B8;
}

.cart-price-current {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #16A34A;
}

/* 4. Upsells (Order Bumps) Section */
.cart-upsells-sec {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.upsells-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
  letter-spacing: 0.3px;
}

.upsells-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.upsell-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed #E2E8F0;
}

.upsell-card:last-child {
  border-bottom: none;
}

.upsell-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.upsell-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.upsell-title {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin: 0;
}

.upsell-desc {
  font-size: 0.76rem;
  color: #64748B;
  line-height: 1.3;
  margin: 0;
}

.upsell-pricing {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.upsell-price-current {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #16A34A;
}

.upsell-price-old {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: #94A3B8;
}

.btn-add-upsell {
  background: #22C55E;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
}

.btn-add-upsell:hover {
  background: #16A34A;
  transform: translateY(-1px);
}

.btn-add-upsell.added {
  background: #15803D;
}

/* 5. Cart Footer / Summary */
.cart-drawer-footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 1.25rem 1.5rem 1rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.text-green {
  color: #16A34A;
  font-weight: 700;
}

.text-bold {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #0F172A;
}

/* Email input group in Cart Drawer */
.cart-email-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.3rem;
  margin-bottom: 0.2rem;
}

.cart-email-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
}

.cart-email-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0F172A;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
}

.cart-email-input:focus {
  background: #FFFFFF;
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.cart-email-input.invalid:not(:placeholder-shown) {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Error message in Cart Drawer */
.cart-error-message {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  line-height: 1.4;
  text-align: center;
}

.btn-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  width: 100%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 0.25rem;
}

.btn-cart-checkout:hover:not(:disabled) {
  background: linear-gradient(135deg, #28D866 0%, #15803D 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.55);
}

.btn-cart-checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* Spinner icon inside checkout button */
.cart-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: cartSpin 0.8s linear infinite;
  display: inline-block;
}

@keyframes cartSpin {
  to {
    transform: rotate(360deg);
  }
}

.cart-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.pay-logo-badge {
  width: 38px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.pay-logo-badge:hover {
  transform: translateY(-1px) scale(1.06);
}

/* In-flow WhatsApp help link inside Cart Drawer footer */
.cart-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #16A34A;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.25rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-whatsapp-link:hover {
  color: #15803D;
  text-decoration: underline;
}

/* Hide fixed landing page WhatsApp button when cart is open */
body.cart-open .whatsapp-fixed-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ==========================================================================
   CONFIRMATION PAGE STYLES (confirmacion.html)
   ========================================================================== */

.confirmation-page-body {
  background: radial-gradient(circle at 50% 10%, #0F172A 0%, #060B13 100%);
  color: #F8FAFC;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

.confirmation-header {
  padding: 1.5rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confirmation-brand-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.confirmation-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.confirmation-card {
  background: #FFFFFF;
  color: #0F172A;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.confirmation-state {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* State Icons */
.state-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.success-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.pending-icon {
  background: #FEF3C7;
  color: #D97706;
}

.cancelled-icon {
  background: #FEE2E2;
  color: #DC2626;
}

.error-icon {
  background: #F3F4F6;
  color: #6B7280;
}

/* State Titles and Text */
.state-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.state-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.state-subdesc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.email-highlight {
  color: #16A34A;
  font-weight: 800;
  word-break: break-all;
}

/* Spinner State */
.state-spinner-wrapper {
  padding: 2rem 0;
}

.state-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #E2E8F0;
  border-top-color: #22C55E;
  border-radius: 50%;
  animation: cartSpin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

/* Polling Status Badge */
.polling-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  color: #B45309;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

/* Order Details Box */
.order-details-box {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.details-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.detail-label {
  color: #64748B;
  font-weight: 600;
  flex-shrink: 0;
}

.detail-val {
  color: #0F172A;
  font-weight: 700;
  text-align: right;
}

.price-text {
  color: #16A34A;
  font-weight: 900;
  font-size: 1.05rem;
}

.order-num-badge {
  font-family: monospace;
  background: #E2E8F0;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Actions */
.confirmation-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-secondary-home {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  color: #334155;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary-home:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.confirmation-footer {
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   LIVE SALES NOTIFICATION TOAST (SOCIAL PROOF) STYLES
   ========================================================================== */

.sales-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  border-left: 4.5px solid #22C55E;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  max-width: 340px;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.sales-toast.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide toast when cart drawer is open on mobile or desktop */
body.cart-open .sales-toast {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.toast-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.toast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.toast-buyer {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: #0F172A;
  margin: 0;
  line-height: 1.25;
}

.toast-action {
  font-size: 0.78rem;
  color: #475569;
  margin: 0;
  line-height: 1.25;
}

.toast-time {
  font-size: 0.72rem;
  color: #16A34A;
  font-weight: 700;
}

.toast-close-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.toast-close-btn:hover {
  color: #0F172A;
}

@media (max-width: 640px) {
  .sales-toast {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: calc(100vw - 30px);
  }
}


