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

:root {
  --brand:       #00C853;
  --brand-dark:  #00A843;
  --accent:      #FF6F00;
  --accent-dark: #E65100;
  --dark:        #111827;
  --mid:         #374151;
  --muted:       #6B7280;
  --light:       #F3F4F6;
  --white:       #FFFFFF;
  --danger:      #EF4444;
  --gold:        #F59E0B;
  --combo-bg:    #0A0F1E;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --font:        'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,200,83,.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,83,.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-xl  { font-size: 1.1rem; padding: 16px 36px; }
.btn-xxl { font-size: 1.25rem; padding: 20px 48px; border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════
   URGENCY BAR
════════════════════════════════════════════ */
.urgency-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.urgency-icon { font-size: 1rem; }

/* ═══════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.logo strong { color: var(--brand); }
.logo-icon { font-size: 1.5rem; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.cart-btn:hover { background: var(--light); }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.btn-nav {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background .2s;
}
.btn-nav:hover { background: var(--brand-dark); }

.btn-blog-nav {
  font-size: .9rem;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.btn-blog-nav:hover { color: var(--dark); background: var(--light); }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0A0F1E 0%, #1a2744 60%, #0d3d1a 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,200,83,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,111,0,.10) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,111,0,.2);
  border: 1px solid rgba(255,111,0,.4);
  color: #FFB74D;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(90deg, var(--brand), #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.trust-strip span { display: flex; align-items: center; gap: 4px; }

/* Hero product image */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-product-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  display: block;
}

.hero-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
}

.hero-price-now {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}

.hero-price-tag {
  background: var(--brand);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.floating-badge {
  position: absolute;
  bottom: 16px;
  right: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-num   { font-size: 1.4rem; font-weight: 900; color: var(--brand); }
.badge-label { font-size: .7rem; color: var(--muted); }

.floating-badge-2 {
  position: absolute;
  top: 16px;
  left: -20px;
  background: var(--gold);
  border-radius: 100px;
  padding: 8px 14px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ═══════════════════════════════════════════
   SOCIAL BAR
════════════════════════════════════════════ */
.social-bar {
  background: var(--white);
  padding: 40px 20px;
  border-bottom: 1px solid #E5E7EB;
}

.social-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  gap: 4px;
}

.social-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}

.social-label {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}

.stars { font-size: 1.1rem; }

.social-divider {
  width: 1px;
  height: 50px;
  background: #E5E7EB;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.7); }

.section-eyebrow {
  display: inline-block;
  background: rgba(0,200,83,.15);
  color: var(--brand);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════ */
.products-section {
  padding: 80px 20px;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.card-badge.bestseller { background: var(--accent); color: var(--white); }
.card-badge.new        { background: var(--brand);  color: var(--white); }
.card-badge.premium    { background: #7C3AED;        color: var(--white); }

.card-visual {
  background: linear-gradient(135deg, #F0F4FF, #E8F5E9);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Real product images */
.card-visual--photo {
  position: relative;
  overflow: hidden;
}

.card-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.card-product-img--contain {
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(135deg, #E3F2FD, #E8F5E9);
}

.product-card:hover .card-product-img { transform: scale(1.04); }

.card-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  padding: 20px 16px 10px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.card-img-overlay.premium { background: linear-gradient(transparent, rgba(74,20,140,.7)); }

.card-tag-envio {
  font-size: .78rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 10px;
}

.price-unit {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}

.card-body { padding: 24px; }

.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.card-desc {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

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

.price-now {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}

.stock-indicator { margin-bottom: 16px; }

.stock-bar {
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #FF8F00);
  border-radius: 2px;
}

.stock-text { font-size: .78rem; color: var(--muted); }

.btn-add-cart {
  width: 100%;
  padding: 13px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-add-cart:hover { background: var(--brand); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   COMBOS SECTION
════════════════════════════════════════════ */
.combos-section {
  background: var(--combo-bg);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.combos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,200,83,.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255,111,0,.08) 0%, transparent 40%);
  pointer-events: none;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.combo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  transition: transform .2s, border-color .2s, background .2s;
}

.combo-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}

.combo-card.combo-featured {
  background: rgba(0,200,83,.1);
  border-color: var(--brand);
  box-shadow: 0 0 30px rgba(0,200,83,.15);
}

.combo-card.combo-maxsave {
  background: rgba(255,111,0,.08);
  border-color: var(--accent);
}

.combo-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.combo-tag.featured  { background: var(--brand);  color: var(--white); }
.combo-tag.maxsave   { background: var(--accent); color: var(--white); }

.combo-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.combo-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.combo-item {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.05);
  padding: 10px 14px;
  border-radius: 8px;
}

.combo-plus {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.3);
  font-weight: 700;
  padding: 2px 0;
}

.combo-pricing { margin-bottom: 20px; }

.combo-old {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}

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

.combo-new {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.combo-save {
  font-size: .8rem;
  color: var(--brand);
  font-weight: 600;
  margin-top: 4px;
}

.btn-combo {
  width: 100%;
  padding: 13px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.btn-combo:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
}

.btn-combo-featured {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-combo-featured:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.btn-combo-max {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-combo-max:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ═══════════════════════════════════════════
   INCLUDES SECTION
════════════════════════════════════════════ */
.includes-section {
  padding: 80px 20px;
  background: var(--white);
}

.includes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.includes-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.includes-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark);
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.include-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }

.include-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.include-item strong { font-size: .95rem; color: var(--dark); }
.include-item span   { font-size: .85rem; color: var(--muted); }

/* Combo image rows */
.combo-img-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.combo-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.15);
}

.combo-img--sm {
  width: 52px;
  height: 52px;
}

.combo-album-thumb {
  width: 60px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid rgba(255,255,255,.15);
}

.combo-album-thumb.trad { background: rgba(46,125,50,.3); }
.combo-album-thumb.pd   { background: rgba(74,20,140,.3); }

/* CTA product image */
.cta-product-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  margin: 0 auto 24px;
  display: block;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 20px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s;
}

.testimonial-card:hover { transform: translateY(-2px); }

.testimonial-card.t-featured {
  background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
  border: 2px solid var(--brand);
}

.t-stars { font-size: 1.1rem; margin-bottom: 12px; }

.t-text {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name     { font-weight: 700; font-size: .9rem; }
.t-location { font-size: .8rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.benefits-section {
  background: var(--dark);
  padding: 48px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-text strong {
  font-size: .95rem;
  color: var(--white);
}

.benefit-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  padding: 80px 20px;
  background: var(--light);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 12px;
}

.faq-question:hover { color: var(--brand); }

.faq-arrow {
  font-size: .75rem;
  color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, #0A0F1E, #1a2744);
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
}

.cta-content { max-width: 600px; margin: 0 auto; }

.cta-icon { font-size: 4rem; margin-bottom: 16px; }

.cta-final h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-final p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 48px 20px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   MINI CART
════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.cart-header h3 { font-size: 1.15rem; font-weight: 700; }

.cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cart-close:hover { background: var(--light); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  text-align: center;
  color: var(--muted);
}

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

.cart-item-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
}

.cart-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1565C0, #0D47A1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-name  { font-size: .9rem; font-weight: 600; }
.cart-item-price { font-size: .85rem; color: var(--muted); }

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  padding: 4px;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
  border-top: 1px solid #E5E7EB;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upsell-banner {
  background: #FFF8E1;
  border: 1px solid #F59E0B;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--dark);
}

.upsell-btn {
  background: var(--gold);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark);
  white-space: nowrap;
  transition: background .2s;
}
.upsell-btn:hover { background: #F59E0B; }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.total-amount { font-size: 1.4rem; font-weight: 900; }

.btn-checkout { width: 100%; font-size: 1.05rem; padding: 16px; }

.cart-security {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   STICKY BUY BAR
════════════════════════════════════════════ */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #E5E7EB;
  padding: 12px 20px;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transform: translateY(100%);
  transition: transform .3s;
  display: none;
}

.sticky-buy-bar.visible { transform: translateY(0); }

.sticky-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-info strong { font-size: .95rem; }
.sticky-price { font-size: 1.2rem; font-weight: 900; color: var(--brand); }

/* ═══════════════════════════════════════════
   CHECKOUT OVERLAY
════════════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.checkout-overlay.active { display: flex; }

.checkout-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  overflow: hidden;
  margin: auto;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #E5E7EB;
  background: var(--light);
}

.checkout-header h2 { font-size: 1.2rem; font-weight: 700; }

.checkout-back {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
  transition: color .2s;
}
.checkout-back:hover { color: var(--dark); }

.checkout-secure {
  font-size: .85rem;
  color: var(--brand);
  font-weight: 600;
}

.checkout-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}

.checkout-left { padding: 32px 28px; }

.checkout-section {
  margin-bottom: 36px;
}

.checkout-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
}

.form-input {
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,200,83,.12);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.payment-option:has(input:checked) {
  border-color: var(--brand);
  background: #F0FDF4;
}

.payment-option input[type="radio"] { accent-color: var(--brand); }

.payment-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
}

.payment-icon { font-size: 1.2rem; }

.card-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.card-fields .form-group:first-child { grid-column: 1 / -1; }

.checkout-right {
  background: var(--light);
  border-left: 1px solid #E5E7EB;
  padding: 32px 24px;
}

.order-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.order-items { margin-bottom: 16px; }

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid #E5E7EB;
  gap: 8px;
}

.order-item-name { color: var(--mid); flex: 1; }
.order-item-price { font-weight: 600; }

.order-divider { height: 1px; background: #D1D5DB; margin: 16px 0; }

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .95rem;
}

.order-row.order-total {
  font-weight: 900;
  font-size: 1.2rem;
  padding-top: 12px;
}

.free-ship { color: var(--brand); font-weight: 700; }

.order-security {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: .78rem;
  color: var(--muted);
}

.btn-place-order {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   SUCCESS MODAL
════════════════════════════════════════════ */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-overlay.active { display: flex; }

.success-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

.success-icon { font-size: 4rem; margin-bottom: 16px; }

.success-modal h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-modal p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.success-detail {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 1300;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .combos-grid { grid-template-columns: 1fr; }
  .social-grid { gap: 20px; }
  .social-divider { display: none; }
  .social-item { padding: 8px 20px; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-right { border-left: none; border-top: 1px solid #E5E7EB; }
  .card-fields { grid-template-columns: 1fr 1fr; }
  .card-fields .form-group:first-child { grid-column: 1 / -1; }
  .sticky-buy-bar { display: block; }
  .hero-cta-group { flex-direction: column; }
  .btn-xl { width: 100%; }
  .trust-strip { flex-direction: column; gap: 8px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .nav-actions .btn-nav { display: none; }
  .includes-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-price-block { justify-content: flex-start; }
  .floating-badge, .floating-badge-2 { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 48px 16px 48px; }
  .hero-title { font-size: 1.8rem; }
  .products-section, .combos-section, .testimonials-section,
  .faq-section, .cta-final { padding: 56px 16px; }
  .mini-cart { width: 100%; }
  .checkout-modal { border-radius: 0; min-height: 100vh; }
  .checkout-overlay { padding: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: unset; }
}
