/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dra. Prima palette — adapted for health landing */
  --bg-warm: #FFFFFF;
  --bg-card: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A6E;
  --green: #2E7D5B;
  --green-light: #E8F5EE;
  --green-dark: #1B5E3F;
  --red: #C0392B;
  --red-light: #FDEDEB;
  --red-soft: #E8A49C;
  --coral: #E07C6A;
  --salmon: #F5C6B8;
  --salmon-light: #FFF3EF;
  --gold: #B8860B;
  --gold-light: #FFF8E1;
  --accent: #3B3BFF;

  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-elevated: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.10);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-btn: 14px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-warm);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

strong {
  font-weight: 700;
}

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

/* ========== TEXT COLOR UTILITIES ========== */
.txt-red {
  color: var(--red);
}

.txt-green {
  color: var(--green);
}

.txt-brown {
  color: #A0522D;
}

.line-through {
  text-decoration: line-through;
}

/* ========== FUNNEL SCREENS ========== */
#funnel {
  position: relative;
  overflow: hidden;
}

.screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  padding-bottom: 36px;
  background: var(--bg-warm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.screen.slide-out {
  opacity: 0;
  transform: translateY(-20px);
}

.screen-content {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* Pain border (screens 2, 3) */
.border-pain {
  border: 3px solid var(--coral);
  border-radius: 0;
  background: #FFFFFF;
}

/* Solution border (screens 5-9) */
.border-solution {
  border: 3px solid var(--green-light);
  border-radius: 0;
}

.border-identify {
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--salmon), var(--green-light)) 1;
}

/* ========== TYPOGRAPHY ========== */
.headline {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.subcopy {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tag-small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
}

.microcopy {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.microcopy-pointer {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 24px;
}

/* ========== TAGS — Green badge with white text ========== */
.tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-green {
  background: var(--green);
  color: #fff;
}

/* ========== BUTTONS ========== */
.btn {
  display: block;
  width: 100%;
  max-width: 360px;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: var(--shadow-card);
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-green {
  background: linear-gradient(180deg, #3DA36E 0%, var(--green) 40%, var(--green-dark) 100%);
  color: #fff;
  border-bottom: 4px solid #145233;
  box-shadow: 0 6px 20px rgba(46, 125, 91, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  animation: pulse-green 2s ease-in-out infinite;
}

.btn-green:hover {
  box-shadow: 0 8px 30px rgba(46, 125, 91, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-green:active {
  border-bottom-width: 2px;
  transform: translateY(2px) scale(0.98);
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-red {
  background: linear-gradient(180deg, #E8877A 0%, var(--coral) 40%, var(--red) 100%);
  color: #fff;
  border-bottom: 4px solid #8B1A10;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  animation: pulse-red 2s ease-in-out infinite;
}

.btn-red:hover {
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-red:active {
  border-bottom-width: 2px;
  transform: translateY(2px) scale(0.98);
}

@keyframes pulse-red {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-gold {
  background: linear-gradient(180deg, #FFD54F 0%, #F5C518 40%, #D4A017 100%);
  color: #1A1A2E;
  border: none;
  border-bottom: 4px solid #A67C00;
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  animation: pulse-gold 2s ease-in-out infinite;
}

.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-gold:active {
  border-bottom-width: 2px;
  transform: translateY(2px) scale(0.98);
}

@keyframes pulse-gold {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-big {
  padding: 22px 24px;
  font-size: 1.05rem;
}

/* ========== SCREEN IMAGES ========== */
.screen-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.screen-img-wide {
  max-width: 100%;
}

/* Chat screenshot crop — crops empty space on the right side */
.img-chat-crop {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0 auto;
}

.img-chat-crop img {
  width: 118%;
  display: block;
}

.img-chat-crop-big {
  max-width: 650px;
}

.img-chat-crop-big img {
  width: 135%;
}

/* Image frame — clips and presents images professionally */
.img-frame {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background: var(--bg-card);
  border: 3px solid rgba(0,0,0,0.06);
}

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

/* Article/news clipping — crops to show relevant part */
.img-frame-article {
  max-height: 220px;
  position: relative;
}

.img-frame-article img {
  object-fit: cover;
  object-position: top center;
  min-height: 220px;
}

.img-frame-article::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-warm));
  pointer-events: none;
}

/* WhatsApp screenshot frame */
.img-frame-chat {
  border: 3px solid #1B5E3F;
  max-width: 300px;
}

/* ========== IMAGE CROP — clips screenshots to show only the key part ========== */
.img-crop {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.img-crop img {
  width: 100%;
  display: block;
}

/* PIES.png — crop to show only the scale photo (cut top bar + bottom messages) */
.img-crop-pies {
  max-height: 200px;
  border: 3px solid var(--green);
}

.img-crop-pies img {
  margin-top: -12%;
  transform: scale(1.3);
  transform-origin: center 35%;
}

/* RESEÑA.png — crop to show the message bubble cleanly */
.img-crop-resena {
  border: 3px solid var(--green);
  border-radius: var(--radius-sm);
  background: #1B1B2E;
}

.img-crop-resena img {
  transform: scale(1.08);
  transform-origin: center center;
}

/* Article/newspaper screenshot — clean crop */
.img-crop-article {
  max-height: 220px;
  border: 2px solid rgba(0,0,0,0.08);
  background: #fff;
}

.img-crop-article img {
  object-fit: cover;
  object-position: top center;
  min-height: 220px;
}

.img-crop-article::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--bg-warm));
  pointer-events: none;
}

/* Product mockup frame — no border, just shadow */
.img-frame-product {
  border: none;
  background: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Testimonial intro text */
.testimonial-intro {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
}

/* ========== HERO IMAGE ========== */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ========== BEFORE/AFTER ========== */
.before-after {
  display: flex;
  gap: 8px;
  width: 100%;
}

.ba-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ba-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 8px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.ba-label-red {
  background: var(--red);
  color: #fff;
}

.ba-label-green {
  background: var(--green);
  color: #fff;
}

.ba-bar {
  width: 100%;
  padding: 10px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.04em;
}

/* ========== PLACEHOLDERS ========== */
.img-placeholder,
.ba-img-placeholder {
  background: linear-gradient(135deg, #e8e6e1, #d4d2cd);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  min-height: 160px;
  width: 100%;
}

.ba-img-placeholder {
  min-height: 140px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.img-placeholder-lg {
  min-height: 200px;
}

.ba-img-large {
  min-height: 200px;
}

.ba-img-carousel {
  min-height: 180px;
  border-radius: var(--radius-sm);
}

.img-placeholder-testimonial {
  min-height: 220px;
}

/* ========== CHOICE CARDS (Screen 4) ========== */
.choice-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.choice-card {
  background: var(--bg-card);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: var(--shadow-card);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.choice-card:active {
  transform: scale(0.97);
  border-color: var(--green);
}

.choice-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 700;
}

.choice-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ========== TESTIMONIAL CHAT ========== */
.testimonial-chat {
  width: 100%;
  background: #0B141A;
  border-radius: var(--radius-sm);
  padding: 16px 12px;
}

.chat-bubble {
  background: #005C4B;
  border-radius: 0 8px 8px 8px;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
  color: #E9EDEF;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  line-height: 1.6;
  max-width: 85%;
}

.chat-bubble strong {
  color: #fff;
}

.chat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ========== IDENTIFICATION CARDS (Screen 10) ========== */
.id-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.id-card {
  padding: 16px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.id-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.id-card-pain {
  background: var(--salmon-light);
  color: var(--text-primary);
  border-left: 4px solid var(--coral);
}

.id-card-desire {
  background: var(--green-light);
  color: var(--text-primary);
  border-left: 4px solid var(--green);
}

.separator-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 10px 0;
}

/* ========== STACK LIST ========== */
.stack-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-card {
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.stack-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.stack-price {
  color: var(--text-secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: 600;
}

.price-old {
  color: var(--red);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 1.05rem;
}

.stack-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: left;
}

.stack-divider {
  padding: 18px 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  letter-spacing: 0.02em;
}

.stack-total {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.stack-total-price {
  font-size: 2.2rem;
}

.stack-hook {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green);
}

/* ========== PRICING ========== */
.pricing {
  text-align: center;
  padding: 24px 0;
}

.pricing-old-block {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: line-through;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
}

.pricing-old-block-big {
  font-size: 2.2rem;
  padding: 12px 36px;
}

.pricing-installments {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 10px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--green);
  font-weight: 700;
}

.pricing-amount-big {
  font-size: 4.2rem;
}

.pricing-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 32px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 12px rgba(46, 125, 91, 0.3);
}

.pricing-final {
  padding: 32px 0;
}

/* ========== SECTION IMAGE ========== */
.section-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ========== FINAL SECTIONS ========== */
#final-section {
  display: none;
  width: 100%;
}

#final-section.visible {
  display: block !important;
}

#final-section .section {
  display: block;
  visibility: visible;
  opacity: 1;
}

.section {
  padding: 64px 20px;
}

.section-alt {
  background: #fff;
}

.section-price-block {
  background: var(--bg-warm);
}

.section-final {
  background: linear-gradient(180deg, var(--green-light), var(--bg-warm));
  padding: 80px 20px;
}

.section-guarantee {
  background: var(--gold-light);
}

.section-headline-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* Before/After full */
.before-after-full {
  margin: 16px 0;
}

.retoric-copy {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* Authority */
.authority-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: 100%;
}

/* BA Carousel */
.ba-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  width: 100%;
}

.ba-carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ba-carousel-name {
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* ========== GUARANTEE ========== */
.guarantee-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-elevated);
}

.guarantee-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #D4A017);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(184, 134, 11, 0.35);
}

.guarantee-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  line-height: 1.1;
}

.guarantee-shield {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.guarantee-days {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

.guarantee-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.guarantee-copy {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
}

.guarantee-trust {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== FAQ OPEN (no accordion) ========== */
.faq-open-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-open-item {
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 20px 16px;
}

.faq-open-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.faq-open-header h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: left;
}

.faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-open-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-open-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

.faq-cta {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  text-align: left;
  line-height: 1.5;
}

.faq-cta:hover {
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer p {
  margin-bottom: 8px;
}

.footer-email {
  color: var(--green);
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #999;
  max-width: 400px;
  margin: 8px auto 0;
  line-height: 1.5;
}

/* ========== CART MODAL ========== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}

.cart-overlay.open {
  display: flex;
}

.cart-modal {
  background: #fff;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 32px;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.cart-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Product principal */
.cart-product-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--green);
  margin-bottom: 16px;
}

.cart-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-product-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-product-pricing {
  font-size: 0.9rem;
}

.cart-price-old {
  text-decoration: line-through;
  color: var(--red);
  font-weight: 600;
  margin-right: 6px;
}

.cart-price-new {
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Order bumps */
.cart-bump {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
}

.cart-bump-tag {
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  text-align: center;
}

.cart-bump-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 2px dashed var(--green);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: #FAFFF7;
  transition: background 200ms;
}

.cart-bump-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}

.cart-bump-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-bump-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 6px;
}

.cart-bump-pricing {
  font-size: 0.85rem;
}

/* Total */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 2px solid rgba(0,0,0,0.08);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-total-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green);
}

/* Checkout button */
.cart-checkout-btn {
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  box-sizing: border-box;
}

.cart-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  text-align: center;
}

/* ========== RESPONSIVE — MOBILE FIXES ========== */
@media (max-width: 420px) {
  .btn-big {
    padding: 18px 16px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .section {
    padding: 48px 16px;
  }

  .container {
    gap: 14px;
  }

  .section-headline {
    font-size: 1.25rem;
  }

  /* Before/After labels */
  .ba-label {
    font-size: 0.6rem;
    padding: 8px 4px;
  }

  /* FAQ text */
  .faq-open-body p {
    font-size: 0.85rem;
  }

  .faq-open-header h3 {
    font-size: 0.88rem;
  }

  /* Stack cards */
  .stack-card {
    padding: 14px 12px;
    gap: 10px;
  }

  .stack-emoji {
    font-size: 1.5rem;
  }

  .stack-name {
    font-size: 0.82rem;
  }

  /* Pricing - keep big */
  .pricing-amount {
    font-size: 3rem;
  }

  .pricing-old-block {
    font-size: 1.4rem;
    padding: 8px 22px;
  }

  /* Authority block */
  .authority-block {
    padding: 20px 16px;
    font-size: 0.88rem;
  }

  /* Guarantee badge */
  .guarantee-block {
    padding: 28px 16px;
  }
}

/* ========== RESPONSIVE — TABLET+ ========== */
@media (min-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .section-headline {
    font-size: 1.8rem;
  }

  .screen-content {
    max-width: 500px;
  }

  .container {
    max-width: 560px;
  }

  .before-after-full .ba-img-placeholder {
    min-height: 260px;
  }

  .pricing-amount {
    font-size: 3.2rem;
  }

  .pricing-amount-big {
    font-size: 4rem;
  }

  .section-img {
    max-width: 440px;
  }
}
