/* ========================================
   VARIABLES GLOBALES Y RESET
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores principales - San Valentín */
  --primary: #D81B60;
  --primary-dark: #AD1457;
  --secondary: #F06292;
  --accent: #FFD700;

  /* Colores neutros */
  --dark: #2D1B2E;
  --dark-light: #4A2C4D;
  --light: #FFE5EC;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #F3E5F5;
  --background: #FFF5F8;

  /* Colores de estado */
  --success: #E91E63;
  --error: #EF4444;
  --warning: #FFD700;
  --urgency: #FF4081;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(216, 27, 96, 0.15);
  --shadow-lg: 0 8px 24px rgba(216, 27, 96, 0.25);
  --shadow-xl: 0 12px 32px rgba(216, 27, 96, 0.35);

  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TIPOGRAFÍA BASE
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--gray);
}

/* ========================================
   BARRA DE URGENCIA SUPERIOR
   ======================================== */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary) 0%, var(--urgency) 100%);
  color: var(--white);
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  animation: pulse-bar 3s ease-in-out infinite;
}

@keyframes pulse-bar {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.95;
  }
}

.urgency-bar .countdown {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 20px 60px;
  font-size: 20px;
  font-weight: 700;
}

/* ========================================
   LAYOUT GENERAL
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(216, 27, 96, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.hero h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero .subheadline {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .cta-button {
  margin-top: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero .guarantees {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--gray);
}

.hero .guarantees p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Cuadro de bono de regalo en hero */
.gift-bonus-box {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  border: 3px solid var(--accent);
  border-radius: 20px;
  padding: 25px 30px;
  margin: 30px auto;
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.gift-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.gift-bonus-box h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.gift-bonus-box p {
  color: var(--dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gift-subtitle {
  font-size: 1rem !important;
  color: var(--gray) !important;
  font-style: italic;
}

/* Nuevo showcase de bono gratuito con imagen */
.gift-bonus-showcase {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  border: 3px solid var(--accent);
  border-radius: 25px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.gift-bonus-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.gift-bonus-showcase:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gift-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.gift-cookbook-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin: 1rem auto 1.5rem auto;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.gift-cookbook-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gift-bonus-showcase h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

.gift-description {
  color: var(--gray);
  font-size: 1rem;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ========================================
   SECCIÓN COMBO COMPLETO CON DETALLES DE MARKETING
   ======================================== */
.combo-showcase-section {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
  padding: 100px 0;
}

.combo-showcase-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.combo-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.combo-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 3rem;
}

.combo-image-container {
  position: relative;
  text-align: center;
}

.combo-full-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.combo-full-image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(216, 27, 96, 0.3);
}

.combo-value-badge {
  position: absolute;
  top: -15px;
  right: 10%;
  background: linear-gradient(135deg, var(--accent) 0%, #FFB700 100%);
  color: var(--dark);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  transform: rotate(5deg);
  animation: pulse-badge 2s ease-in-out infinite;
}

.value-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-amount {
  display: block;
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  margin-top: 5px;
}

/* Lista de detalles del combo */
.combo-details {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.combo-details h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.combo-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--background);
}

.combo-item:hover {
  transform: translateX(5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.combo-item.featured {
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(240, 98, 146, 0.05) 100%);
  border-color: var(--primary);
}

.combo-item.bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 183, 0, 0.1) 100%);
}

.combo-item.exclusive {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(216, 27, 96, 0.05) 100%);
}

.combo-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.combo-item-content h4 {
  color: var(--dark);
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.combo-item-content p {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

/* Precios con descuento */
.price-with-discount {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.75rem;
}

.original-value {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 500;
}

.discounted-value {
  font-size: 1.125rem;
  color: var(--success);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.item-value {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
}

.bonus-tag {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
}

.exclusive-tag {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  font-weight: 700;
}

/* Total del combo */
.combo-total {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  border-radius: 12px;
  border: 3px solid var(--accent);
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--dark);
}

.total-line.final {
  border-top: 2px solid var(--accent);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.total-original {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.125rem;
}

.total-price {
  color: var(--primary);
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

.savings-badge {
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: var(--success);
  color: var(--white);
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
}

/* CTA del combo */
.combo-cta {
  margin-top: 30px;
  text-align: center;
}

.combo-cta .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.combo-cta-note {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   SECCIÓN TESTIMONIOS
   ======================================== */
.testimonials-section {
  background: var(--white);
  padding: 100px 0;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--light);
  padding: 35px 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

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

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

/* ========================================
   SECCIÓN INFORMACIÓN DE COMPRA
   ======================================== */
.purchase-info-section {
  background: var(--background);
  padding: 100px 0;
}

.purchase-info-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

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

.info-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.info-list {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.info-list li {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ========================================
   SECCIÓN POLÍTICA DE DEVOLUCIÓN
   ======================================== */
.refund-policy-section {
  background: var(--white);
  padding: 80px 0;
}

.policy-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light);
  padding: 50px 40px;
  border-radius: 25px;
  border: 2px solid var(--gray-light);
  text-align: center;
}

.policy-box h2 {
  color: var(--dark);
  margin-bottom: 2rem;
}

.policy-text {
  color: var(--gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-text strong {
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   SECCIÓN "ESTO ES PARA VOS SI..."
   ======================================== */
.about-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.about-section h2 {
  color: var(--dark);
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 20px;
}

.about-intro p {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.8;
  text-align: center;
}

.about-intro strong {
  color: var(--primary);
  font-weight: 700;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.author-card {
  background: var(--light);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.author-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.author-avatar {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.avatar-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.avatar-initial {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

/* Estilos para imágenes de avatares */
.avatar-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  transition: var(--transition);
}

.avatar-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.author-content h3 {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.author-title {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-bio {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

.for-you-section {
  background: var(--background);
  padding: 100px 0;
}

.for-you-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.for-you-section .intro-text {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.checklist {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--gray-light);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  font-size: 1.125rem;
  color: var(--dark);
}

.checklist-item::before {
  content: '✔';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

/* ========================================
   DESGLOSE DEL CONTENIDO
   ======================================== */
.content-breakdown {
  background: var(--background);
  padding: 100px 0;
}

.content-breakdown h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.module-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.module-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.module-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.module-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* ========================================
   SECCIÓN DE BONOS
   ======================================== */
.bonos-section {
  background: var(--white);
  padding: 100px 0;
}

.bonos-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.bonos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.bono-card {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.bono-card::before {
  content: '🎁';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 6rem;
  opacity: 0.1;
}

.bono-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bono-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.bono-card .price-comparison {
  margin: 1rem 0;
}

.bono-card .original-price {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.125rem;
}

.bono-card .current-price {
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

/* ========================================
   SECCIÓN DE PRECIO
   ======================================== */
.pricing-section {
  background: var(--background);
  padding: 100px 0;
  text-align: center;
}

.pricing-section h2 {
  color: var(--dark);
  margin-bottom: 2rem;
}

.pricing-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.price-comparison {
  margin: 30px 0;
}

.original-price {
  font-size: 1.5rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.current-price .moneda {
  font-size: 2rem;
  vertical-align: super;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.payment-badge {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PRECIO
   ======================================== */
.precio-container {
  display: inline-block;
  margin: 30px 0;
}

.precio-tachado {
  font-size: 1.5rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.precio-actual {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.precio-actual .moneda {
  font-size: 2rem;
  vertical-align: super;
}

/* ========================================
   PÁGINA DE UPSELL
   ======================================== */
.upsell-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
  padding: 40px 20px;
}

.upsell-box {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 700px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.upsell-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.link-rechazo {
  display: block;
  margin-top: 2rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.link-rechazo:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ========================================
   PÁGINA DE GRACIAS
   ======================================== */
.gracias-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
  padding: 40px 20px;
}

.gracias-box {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce-in 0.6s ease-out;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#productos-descarga {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.producto-card {
  background: var(--light);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}

.producto-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.producto-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn-descarga {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.btn-descarga:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.info-email {
  margin-top: 2rem;
  padding: 20px;
  background: #FFF9E6;
  border-radius: 15px;
  border: 2px solid var(--accent);
  color: var(--dark);
  font-size: 1rem;
}

/* Sección de lanzamiento futuro */
.future-launch-box {
  background: linear-gradient(135deg, #FFE5EC 0%, #FFF5F8 100%);
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  margin-top: 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.launch-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.future-launch-box h3 {
  color: var(--dark);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.future-launch-box p {
  color: var(--dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.future-launch-box strong {
  color: var(--primary);
  font-weight: 700;
}

.launch-subtitle {
  font-size: 1rem !important;
  color: var(--gray) !important;
  font-style: italic;
}

/* Soporte */
.soporte-container {
  padding: 30px;
  background: var(--light);
  border-radius: 20px;
  margin-top: 2rem;
}

.soporte-opciones {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.soporte-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 50px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
}

.soporte-link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.whatsapp-link:hover {
  border-color: #25D366;
  background: #E8F5E9;
}

.soporte-icon {
  font-size: 1.5rem;
}

/* ========================================
   PÁGINA DE ERROR
   ======================================== */
.error-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  padding: 40px 20px;
}

.error-box {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.error-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

/* ========================================
   BOTÓN STICKY MOBILE
   ======================================== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky-cta-mobile .btn {
  width: 100%;
  margin: 0;
  font-size: 16px;
  padding: 16px 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero .subheadline {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
    padding: 18px 30px;
  }

  .btn-large {
    padding: 20px 40px;
    font-size: 18px;
  }

  .modules-grid,
  .bonos-grid {
    grid-template-columns: 1fr;
  }

  .precio-actual {
    font-size: 2.5rem;
  }

  .upsell-box,
  .gracias-box,
  .error-box {
    padding: 40px 25px;
  }

  #productos-descarga {
    grid-template-columns: 1fr;
  }

  .urgency-bar {
    font-size: 0.85rem;
    padding: 10px 15px;
  }

  .checklist {
    padding: 30px 20px;
  }
}

/* ========================================
   SCARCITY BADGE
   ======================================== */
.scarcity-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--urgency) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0.5rem 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-scarcity 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

@keyframes pulse-scarcity {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6);
  }
}

/* ========================================
   DESCUENTO BADGE
   ======================================== */
.descuento-badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */
.trust-signals {
  margin-top: 1.5rem;
  text-align: center;
}

.trust-text {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0.5rem 0;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.payment-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ========================================
   PRECIO MEJORADO
   ======================================== */
.precio-tachado {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVE MOBILE-FIRST
   ======================================== */
@media (max-width: 480px) {

  /* Botones grandes para touch */
  .btn {
    min-height: 56px;
    padding: 18px 30px;
    font-size: 16px;
  }

  .btn-large {
    min-height: 60px;
    padding: 20px 35px;
    font-size: 17px;
  }

  /* Timer más legible */
  .urgency-bar {
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .urgency-bar .countdown {
    font-size: 0.85rem;
    padding: 3px 10px;
  }

  /* Precios optimizados */
  .precio-actual {
    font-size: 2.25rem;
  }

  .precio-tachado {
    font-size: 1.4rem;
  }

  /* Badges responsive */
  .scarcity-badge {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  /* Payment logos más pequeños en mobile */
  .payment-logo {
    height: 30px;
  }

  /* Trust signals */
  .trust-text {
    font-size: 0.9rem;
  }

  /* Hero optimizado */
  .hero-content {
    padding: 30px 15px;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }
}

/* ========================================
   UTILIDADES
   ======================================== */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ========================================
   SHOWCASE DE PRODUCTOS Y EBOOKS
   ======================================== */

/* Imagen del producto principal en hero */
.product-showcase {
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
}

.product-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.product-image:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(216, 27, 96, 0.4);
}

/* Showcase de ebooks */
.ebooks-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 20px;
}

.ebook-item {
  text-align: center;
  transition: var(--transition);
}

.ebook-item:hover {
  transform: translateY(-10px);
}

.ebook-cover {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 1rem;
  border: 3px solid transparent;
}

.ebook-item:hover .ebook-cover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  transform: scale(1.05);
}

.ebook-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ebook-label {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.1) 0%, rgba(240, 98, 146, 0.1) 100%);
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.ebook-label:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  transform: scale(1.05);
}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .ebooks-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    max-width: 100%;
  }

  .ebook-cover {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ebooks-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ebook-item h4 {
    font-size: 1.125rem;
  }

  .gift-bonus-showcase {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .gift-cookbook-image {
    max-width: 100%;
  }

  .gift-bonus-showcase h3 {
    font-size: 1.25rem;
  }

  .gift-description {
    font-size: 0.95rem;
  }

  /* Responsivo para nuevas secciones */
  .combo-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .combo-full-image {
    max-width: 100%;
  }

  .combo-value-badge {
    right: 5%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .value-amount {
    font-size: 1.5rem;
  }

  .combo-details {
    padding: 25px 20px;
  }

  .combo-details h3 {
    font-size: 1.5rem;
  }

  .combo-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .combo-item-icon {
    font-size: 2rem;
  }

  .combo-item-content h4 {
    font-size: 1.125rem;
  }

  .combo-total {
    padding: 20px;
  }

  .total-line {
    font-size: 1rem;
  }

  .total-line.final {
    font-size: 1.25rem;
  }

  .total-price {
    font-size: 1.75rem;
  }

  .savings-badge {
    font-size: 1rem;
  }

  .combo-full-image {
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-box {
    padding: 30px 20px;
  }

  .policy-text {
    font-size: 1rem;
  }
}

/* ========================================
   PÁGINA DE UPSELL
   ======================================== */

.upsell-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
  padding: 40px 20px;
}

.upsell-box {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.upsell-box h1 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.upsell-box h2 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.upsell-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

/* Grid de productos upsell */
.upsell-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin: 3rem 0;
}

.upsell-product-card {
  background: var(--background);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.upsell-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.upsell-product-image {
  position: relative;
  padding: 30px;
  background: var(--white);
}

.upsell-product-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.upsell-product-content {
  padding: 30px;
  text-align: left;
}

.upsell-product-content h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.upsell-product-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.upsell-price-box {
  background: var(--light);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.upsell-price-original {
  display: block;
  font-size: 0.95rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.upsell-price-current {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-label {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.price-amount {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.upsell-product-content .btn {
  width: 100%;
}

/* Oferta de paquete bundle */
.upsell-bundle-offer {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  border: 3px solid var(--accent);
  border-radius: 25px;
  padding: 40px;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.bundle-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.bundle-icon {
  font-size: 3rem;
}

.bundle-header h3 {
  color: var(--dark);
  font-size: 1.75rem;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.bundle-pricing {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.bundle-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1.125rem;
  color: var(--dark);
}

.bundle-price-line.final {
  border-top: 2px solid var(--accent);
  margin-top: 10px;
  padding-top: 15px;
  font-weight: 700;
  font-size: 1.5rem;
}

.bundle-original {
  text-decoration: line-through;
  color: var(--gray);
}

.bundle-price {
  color: var(--primary);
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

.bundle-savings {
  text-align: center;
  margin-top: 15px;
  padding: 12px;
  background: var(--success);
  color: var(--white);
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.125rem;
}

.link-rechazo {
  display: inline-block;
  margin-top: 2rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.link-rechazo:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsivo para upsell */
@media (max-width: 768px) {
  .upsell-products-grid {
    grid-template-columns: 1fr;
  }

  .upsell-box {
    padding: 40px 25px;
  }

  .upsell-bundle-offer {
    padding: 30px 20px;
  }

  .bundle-header {
    flex-direction: column;
  }

  .bundle-header h3 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 1.75rem;
  }

  .bundle-price {
    font-size: 1.75rem;
  }
}

/* ========================================
   ADD-ON OPCIONAL EN UPSELL
   ======================================== */

/* Tarjeta principal del upsell con checkbox grande */
.main-upsell-card {
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(240, 98, 146, 0.05) 100%);
  border: 3px solid var(--primary);
  border-radius: 25px;
  padding: 30px;
  margin: 2rem 0;
  transition: var(--transition);
}

.main-upsell-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.upsell-checkbox-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.upsell-checkbox-large {
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 10px;
  accent-color: var(--primary);
}

.upsell-checkbox-label {
  cursor: pointer;
  flex: 1;
}

.upsell-main-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.upsell-main-image {
  position: relative;
  flex-shrink: 0;
}

.upsell-main-image img {
  width: 200px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.discount-badge-large {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.upsell-main-details {
  flex: 1;
}

.upsell-main-details h3 {
  color: var(--dark);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.upsell-main-details p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.upsell-main-price {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
}

.price-original-large {
  display: block;
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 0.75rem;
}

.price-special-large {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-label-large {
  font-size: 1.125rem;
  color: var(--dark);
  font-weight: 600;
}

.price-amount-large {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

/* Add-on pequeño */
.addon-box {
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 25px;
  margin: 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.addon-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.addon-checkbox {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 5px;
  accent-color: var(--primary);
}

.addon-image {
  flex-shrink: 0;
}

.addon-image img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.addon-details {
  flex: 1;
}

.addon-label {
  cursor: pointer;
}

.addon-label h4 {
  color: var(--dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.addon-label p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.addon-price-original {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
}

.addon-price-special {
  font-size: 1.5rem;
  color: var(--success);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* Resumen de compra */
.upsell-summary {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 1.125rem;
  color: var(--dark);
  border-bottom: 1px solid var(--light);
}

.summary-line:last-child {
  border-bottom: none;
}

.summary-line.addon-line {
  color: var(--success);
  font-weight: 600;
}

.summary-line.total-line {
  border-top: 3px solid var(--primary);
  margin-top: 15px;
  padding-top: 20px;
  font-weight: 700;
  font-size: 1.5rem;
}

.total-amount {
  color: var(--primary);
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

/* Responsivo para nuevo upsell */
@media (max-width: 768px) {
  .upsell-checkbox-header {
    flex-direction: column;
  }

  .upsell-checkbox-large {
    margin: 0 auto 15px auto;
  }

  .upsell-main-content {
    flex-direction: column;
    text-align: center;
  }

  .upsell-main-image img {
    width: 180px;
  }

  .upsell-main-details h3 {
    font-size: 1.5rem;
  }

  .price-amount-large {
    font-size: 1.75rem;
  }

  .addon-content {
    flex-direction: column;
    text-align: center;
  }

  .addon-checkbox {
    margin: 0 auto 10px auto;
  }

  .addon-image img {
    width: 150px;
  }

  .addon-price {
    flex-direction: column;
    gap: 5px;
  }

  .summary-line {
    font-size: 1rem;
  }

  .summary-line.total-line {
    font-size: 1.25rem;
  }

  .total-amount {
    font-size: 1.5rem;
  }
}