/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #faf5f3;
  color: #442b1f;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
s { opacity: .55; }

/* ===== POPUP LEAD MAGNET ===== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.popup-overlay.visible { opacity: 1; pointer-events: all; }
.popup-box {
  background: #faf5f3;
  border-radius: 20px;
  padding: 36px 28px;
  max-width: 420px; width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 1rem;
  cursor: pointer; color: #947864;
}
.popup-badge {
  display: inline-block;
  background: #f2e9e0; color: #442b1f;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1px; padding: 5px 14px;
  border-radius: 999px; margin-bottom: 14px;
  text-transform: uppercase;
}
.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 10px; color: #442b1f;
}
.popup-title span { background: linear-gradient(90deg,#da98a5,#e68641); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.popup-desc { font-size: .88rem; color: #947864; margin-bottom: 20px; line-height: 1.6; }
.popup-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.popup-input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #d5c5bb; border-radius: 14px;
  font-size: .95rem; font-family: 'Inter', sans-serif;
  background: #fff; outline: none; color: #442b1f;
  transition: border-color .2s;
}
.popup-input:focus { border-color: #df907b; }
.popup-btn { width: 100%; max-width: 100%; font-size: .88rem; padding: 14px; }
.popup-privacy { font-size: .72rem; color: #bbb; margin-bottom: 12px; }
.popup-skip { background: none; border: none; font-size: .75rem; color: #bbb; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: underline; }

/* ===== BANNER ===== */
.flash-offer-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  background: #40291c;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  position: sticky; top: 0; z-index: 100;
}
.flash-offer-content {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; text-align: center;
}
.flash-offer-top {
  display: flex; align-items: center; gap: 8px;
}
.flash-offer-icon {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  animation: bounce-soft 1.8s infinite;
}
.flash-offer-icon img { width: 100%; height: 100%; }
.flash-offer-title {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
}
.flash-timer {
  background-color: rgba(151,115,89,0.75);
  color: #ffffff; font-size: 13px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: 1px; min-width: 56px; text-align: center;
}
.flash-offer-prices {
  font-size: 13px; font-weight: 400;
  text-transform: uppercase; line-height: 1.1; color: #fff;
}
.flash-offer-prices .price { color: #ffea96; font-weight: 700; text-decoration: underline; }
@keyframes bounce-soft {
  0% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
  60% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* ===== HERO IMAGE ===== */
.hero-img-section { background: #f2e9e0; }
.hero-img { width: 100%; display: block; }

/* ===== HERO TITLE ===== */
.hero-title-section { background: #f2e9e0; padding: 0; text-align: center; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 650; font-size: 40px;
  line-height: 1; letter-spacing: -1.4px; margin: 0;
}
.title-brown { display: block; color: #442b1f; }
.title-gradient {
  display: block; font-weight: 800;
  background: linear-gradient(90deg,#da98a5,#e68641);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .hero-title { font-size: 72px; letter-spacing: -2px; }
}

/* ===== INFO TEXT ===== */
.info-text-banner {
  background: #f2e9e0; color: #442b1f;
  font-family: 'Inter', sans-serif; font-size: 15px;
  letter-spacing: -0.4px; text-align: center;
  padding: 12px 18px; line-height: 1.4;
}
.medium { font-weight: 600; }

/* ===== FEATURES BAR ===== */
.features-bar {
  background: #f2e9e0;
  display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 12px 14px;
  overflow-x: auto; scrollbar-width: none;
}
.features-bar::-webkit-scrollbar { display: none; }
.feature-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: #442b1f; font-size: 9px; letter-spacing: -0.25px;
  white-space: nowrap; flex-shrink: 0;
}
.check-circle {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid #df907b;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 3px rgba(223,144,123,0.35);
}
.check-circle img { width: 8px; height: 8px; }
.feature-sep { color: #947864; font-size: 12px; opacity: .5; flex-shrink: 0; }

/* ===== CTA BUTTON (principal) ===== */
.glowup-cta-container {
  display: flex; justify-content: flex-start;
  margin: 8px 0; padding: 6px 16px;
  background: #f2e9e0;
}
.glowup-cta-button {
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: #442b1f; color: #ffffff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.7px;
  padding: 14px 26px; border-radius: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  animation: pulse-soft 2.4s ease-in-out infinite;
  border: none; cursor: pointer;
}
.glowup-cta-button span { font-size: 17px; }
.glowup-cta-button::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.glowup-cta-button::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 120%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.08) 65%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); animation: shine 4s linear infinite;
}
@keyframes shine {
  0% { transform: skewX(-18deg) translateX(-120%); }
  100% { transform: skewX(-18deg) translateX(220%); }
}
@keyframes pulse-soft {
  0% { transform: scale(1); } 50% { transform: scale(1.035); } 100% { transform: scale(1); }
}

/* CTA secundario (recetario) */
.recetario-cta-container {
  display: flex; justify-content: flex-start;
  margin: 8px 0; padding: 6px 16px;
  background: #f9f5f1;
}
.recetario-cta-button {
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: #442b1f; color: #ffffff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.7px;
  padding: 14px 26px; border-radius: 14px;
  text-decoration: none; display: inline-flex; align-items: center;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
.recetario-cta-button::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.recetario-cta-button::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 120%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); animation: shine-recetario 4s linear infinite;
}
@keyframes shine-recetario {
  0% { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(220%) skewX(-18deg); }
}

/* ===== PRODUCT PREVIEW ===== */
.product-preview { background: #f9f5f1; }
.preview-img { width: 100%; display: block; }

/* ===== HEADLINE ===== */
.headline-section {
  background: #f9f5f1; padding: 24px 20px; text-align: center;
}
.headline-text {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 27px; line-height: 1.15; letter-spacing: -0.5px; margin: 0;
}
.text-normal { display: block; color: #442b1f; }
.text-gradient {
  display: block; font-weight: 600; font-style: italic;
  background: linear-gradient(90deg,#da98a5,#e68641);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .headline-text { font-size: 42px; letter-spacing: -1px; }
}

/* ===== PAIN LIST ===== */
.pain-list-wrapper {
  background-color: #f9f5f1; padding: 10px 12px;
  display: flex; flex-direction: column; align-items: center;
}
.pain-item {
  display: flex; align-items: center; gap: 10px;
  background-color: #ffffff; border-radius: 18px;
  padding: 12px 16px; margin-bottom: 10px; width: 92%;
  box-shadow: 0 4px 6px rgba(218,152,165,0.12);
  border: 2px solid transparent;
  transition: border .18s ease;
}
.pain-item:hover, .pain-item:active { border: 2px solid #da98a5; }
.pain-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 3px solid #da98a5; color: #da98a5;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.pain-text {
  font-family: 'Poppins', sans-serif; font-size: 12.5px;
  font-weight: 600; color: #333330; line-height: 1.3; letter-spacing: -0.1px;
}

/* ===== FOOD CAROUSEL (auto-scroll) ===== */
.food-carousel-section {
  background: #f9f5f1; padding: 18px 0; overflow: hidden;
}
.food-carousel {
  display: flex; gap: 16px;
  width: max-content;
  animation: scrollCarousel 22s linear infinite;
  padding: 0 16px;
}
.food-item {
  flex: 0 0 auto; width: 120px; height: 120px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.food-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== OPPORTUNITY LIST ===== */
.opportunity-list-wrapper {
  background-color: #f9f5f1; padding: 10px 12px;
  display: flex; flex-direction: column; align-items: center;
}
.opportunity-item {
  display: flex; align-items: flex-start; gap: 10px;
  background-color: #f6fdf6; border-radius: 16px;
  padding: 12px 14px; margin-bottom: 8px; width: 92%;
  border: 1px solid #e3fcec;
  box-shadow: 0 3px 8px rgba(39,170,89,0.05);
  transition: border .18s ease;
}
.opportunity-item:hover, .opportunity-item:active { border: 2px solid #28aa5b; }
.opportunity-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #27aa59; color: #27aa59;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}
.opportunity-text { line-height: 1.25; }
.opportunity-text .highlight {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600; color: #27aa59; letter-spacing: -0.4px;
}

/* ===== SIMPLE CAROUSEL (testimonios) ===== */
.simple-carousel-section { background: #f9f5f1; padding: 20px 0; }
.simple-carousel-wrapper {
  width: 100%; max-width: 300px;
  margin: 0 auto 10px;
  background: #fff; border-radius: 22px;
  padding: 12px; position: relative;
}
.simple-carousel-frame {
  background: #ffffff; border-radius: 18px; padding: 1px;
}
.simple-carousel-image {
  width: 100%; height: auto; border-radius: 14px;
  display: none; animation: soft-bounce .35s ease-out;
}
.simple-carousel-image.active { display: block; }
.simple-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #ffffff; border: none;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; line-height: 1;
  color: #442b1f; cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.22);
}
.simple-carousel-btn.left { left: 6px; padding-right: 1px; }
.simple-carousel-btn.right { right: 6px; padding-left: 1px; }
@keyframes soft-bounce {
  0% { transform: scale(.98); opacity: 0; }
  60% { transform: scale(1.01); opacity: 1; }
  100% { transform: scale(1); }
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  background: #442b1f; padding: 20px 20px 40px;
  text-align: center;
}
.bonus-text-top {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.6px; color: #fff; margin-bottom: 6px;
}
.bonus-text-middle {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: 23px; letter-spacing: -0.8px; color: #fff; margin-bottom: -10px;
}
.bonus-text-bottom {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: -0.7px;
  background: linear-gradient(90deg,#fdb706,#ffdfba);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.bonus-text-sub {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 15px; letter-spacing: -0.8px; line-height: 1.15;
  color: #f2e9e0; max-width: 520px; margin: 0 auto;
}
@media (min-width: 768px) {
  .bonus-text-top { font-size: 40px; }
  .bonus-text-middle { font-size: 56px; }
  .bonus-text-bottom { font-size: 48px; }
}

/* ===== BONUS CARDS ===== */
.bonus-card {
  background: #442b1f; padding: 38px 22px;
  text-align: center; font-family: 'Inter', sans-serif;
  max-width: 320px; margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(255,223,186,0.18);
  box-shadow: 0 0 0 1px rgba(253,183,6,0.08) inset;
}
.bonus-badge {
  display: inline-block;
  background: linear-gradient(90deg,#f6d44b,#e0b72e);
  color: #000; font-weight: 700; font-size: 10px;
  padding: 8px 18px; border-radius: 999px; letter-spacing: 2px;
  margin-bottom: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.55), 0 0 40px rgba(255,200,60,0.35), inset 0 2px 4px rgba(255,255,255,0.45);
}
.bonus-book { display: flex; justify-content: center; margin-bottom: 0; }
.bonus-book img {
  width: 260px; max-width: 90%; cursor: pointer;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), filter .25s ease;
}
.bonus-book img:hover { transform: scale(1.05) translateY(-6px); }
.bonus-book img:active { transform: scale(0.97) translateY(2px); }
.bonus-description {
  color: #fff; font-weight: 300; font-size: 13px;
  line-height: 1.45; letter-spacing: -0.2px;
  max-width: 420px; margin: auto; margin-bottom: 26px;
}
.bonus-price {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  padding: 14px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,223,186,0.18); backdrop-filter: blur(6px);
}
.old-price { font-size: 15px; color: #fff; text-decoration: line-through; opacity: .9; }
.free-price {
  font-size: 20px; font-weight: 700;
  background: linear-gradient(90deg,#fdb706,#ffdfba);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== WHAT YOU GET ===== */
.what-you-get {
  color: #fff; font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 27px; letter-spacing: -0.8px;
  text-align: center; padding: 5px 10px;
}
@media (min-width: 768px) { .what-you-get { font-size: 46px; letter-spacing: -1px; } }

/* ===== BUNDLE SECTION ===== */
.bundle-section { background: #f9f5f1; padding: 24px 16px; }
.bundle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; margin: 0 auto; }
.bundle-card {
  background: #fff; border: 1.5px solid #e8e0d8;
  border-radius: 18px; padding: 20px 14px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.bundle-featured { border-color: #df907b; box-shadow: 0 4px 20px rgba(223,144,123,0.18); }
.bundle-best-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #442b1f; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: .5px;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.bundle-tag-label {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: 1px;
  color: #947864; text-transform: uppercase;
}
.bundle-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #442b1f; }
.bundle-includes { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bundle-includes li { font-size: .76rem; color: #947864; line-height: 1.35; }
.bundle-price-old { font-size: .82rem; color: #bbb; }
.bundle-price-main { font-size: 1.6rem; font-weight: 900; color: #442b1f; line-height: 1; }
.bundle-price-main span { font-size: .8rem; font-weight: 600; color: #947864; vertical-align: middle; }
.bundle-saving-badge {
  display: inline-block; background: #27aa59; color: #fff;
  font-size: .65rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}
.bundle-btn-outline {
  display: block; text-align: center;
  border: 1.5px solid #442b1f; border-radius: 12px;
  padding: 10px 12px; font-family: 'Poppins', sans-serif;
  font-size: .78rem; font-weight: 700; color: #442b1f;
  transition: background .2s;
}
.bundle-btn-outline:hover { background: #f2e9e0; }
.cta-button {
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background: #442b1f; color: #fff;
  font-size: .82rem; font-weight: 700; letter-spacing: .5px;
  padding: 12px 16px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  animation: pulse-soft 2.2s ease-in-out infinite;
}

/* ===== OFFER CARD / SUMMARY ===== */
.offer-card {
  background: #442b1f; max-width: 340px;
  margin: 0 auto; padding: 0 22px;
  border-radius: 22px;
}
.offer-list { margin-bottom: 22px; }
.offer-item {
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: #fff; letter-spacing: -0.6px;
  display: flex; align-items: center; margin-bottom: 8px;
}
.check {
  width: 16px; height: 16px; border-radius: 50%; margin-right: 10px;
  background: #fff; flex-shrink: 0; position: relative;
  box-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 12px rgba(255,255,255,0.25);
}
.check::after {
  content: ""; position: absolute; left: 5px; top: 2px;
  width: 4px; height: 8px;
  border: 2px solid #442b1f; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.offer-old {
  display: flex; align-items: center; gap: 8px; margin-bottom: -10px;
}
.value-text { font-family: 'Inter', sans-serif; color: #fff; font-size: 12px; opacity: .8; }
.offer-new { display: flex; align-items: center; margin-bottom: 10px; }
.new-price {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 45px; letter-spacing: -0.6px;
  background: linear-gradient(90deg,#be8963,#e4b898);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.offer-button-wrapper { display: flex; justify-content: flex-start; margin-top: 10px; }
.offer-button {
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.3px;
  background: linear-gradient(135deg,#be8963,#cda58f);
  color: #fff; border: none;
  padding: 14px 18px; border-radius: 12px; font-size: 13px;
  cursor: pointer; box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  animation: pulse-soft 2.2s ease-in-out infinite;
}
.offer-button::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 80%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); filter: blur(2px); animation: shine 5s infinite;
}
@keyframes shine { 0% { left: -80%; } 100% { left: 140%; } }
.offer-secure {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: #bfbfbf; opacity: .75; margin-top: 10px;
  letter-spacing: -0.5px; padding-bottom: 20px;
}

/* ===== FAQ ===== */
.faq-section { background: #f9f5f1; padding: 20px 16px; }
.faq-inner { max-width: 480px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8ddd5; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 16px 0; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 10px; color: #442b1f; letter-spacing: -0.3px;
}
.faq-arrow { font-size: 1.2rem; color: #947864; font-weight: 400; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 16px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 13px; color: #816D5D; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer {
  background: #40291c; color: rgba(255,255,255,0.4);
  padding: 24px 16px; text-align: center;
  font-family: 'Inter', sans-serif; font-size: .78rem;
}
.footer p { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-featured { margin-top: 16px; }
  .glowup-cta-button { font-size: 13px; padding: 12px 20px; }
}
