:root {
  --bg-color: #f6f3e6;
  /* Soft cream/beige background from images */
  --header-green: #3f4e3a;
  /* Dark olive for top bar */
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --primary-green: #67c18c;
  /* Button green */
  --primary-green-hover: #52a573;
  --card-border: #8fa385;
  /* Muted green border */
  --bonus-green: #44553f;
  /* Dark green for bonus cards */
  --gold: #f4c430;
  /* Badge/Stars color */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 30px;
  --spacing-lg: 50px;
  --container-width: 600px;
  /* Mobile-first column focus as requested */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.text-center {
  text-align: center;
}

.highlight-green {
  color: #3a5a40;
}

/* Buttons */
.btn {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: var(--primary-green);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  /* Slightly rounded */
  box-shadow: 0 4px 0 #3e8e63;
  /* Hard shadow for button depth */
  margin: 20px 0;
  transition: transform 0.1s, box-shadow 0.1s;
  border: none;
  cursor: pointer;
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #3e8e63;
}

/* Sections */
.section {
  padding: var(--spacing-md) 0;
}

/* Top Bar */
.top-bar {
  background-color: var(--header-green);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Hero Section */
.hero-section {
  padding-top: var(--spacing-sm);
}

.hero-headline {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.hero-headline span {
  color: var(--header-green);
}

.img-placeholder {
  width: 100%;
  height: 300px;
  /* Adjust based on content */
  background-color: #e0e0e0;
  border: 2px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: bold;
  margin: 10px auto;
  border-radius: 8px;
}

/* Transformation Section */
.transformation-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.trust-icons {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

/* Checklist Section */
.checklist-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}

.check-icon {
  color: #27ae60;
  font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Quality Section */
.quality-section {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eee;
}

/* Bonuses Section */
.bonus-header-pill {
  background-color: var(--gold);
  display: inline-block;
  padding: 5px 20px;
  font-weight: 800;
  border-radius: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.bonus-card {
  background-color: var(--bonus-green);
  color: white;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  text-align: center;
}

.bonus-img-container {
  background-color: #f4f4f4;
  padding: 20px;
}

.bonus-content {
  padding: 15px;
}

.bonus-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #000;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 4px;
}

.bonus-price {
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
}

.strike {
  text-decoration: line-through;
  color: #ff6b6b;
  margin-right: 5px;
}

/* Timer */
.timer-section {
  background-color: var(--bonus-green);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.timer-digits {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 1.5rem;
  font-family: monospace;
}

.timer-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff5555;
  font-weight: bold;
}

/* Pricing Plans */
.plan-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.plan-card.premium {
  border: 2px solid var(--header-green);
}

.plan-header {
  background: #f9f9f9;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.popular-badge {
  background-color: var(--header-green);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px;
}

.plan-price {
  text-align: center;
  padding: 20px;
}

.price-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00a862;
}

.plan-features {
  padding: 0 20px;
  font-size: 0.9rem;
  color: #333;
}

.plan-features li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.downsell-box {
  background-color: #e0e0e0;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 10px 15px -20px 15px;
  border-radius: 5px 5px 0 0;
  color: #333;
}

/* Guarantee, Bio, FAQ, Testimonials */
.guarantee-box {
  text-align: center;
  padding: 40px 20px;
}

.bio-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 15px 15px 15px;
  color: #555;
  font-size: 0.9rem;
}

/* Utils */
.mb-20 {
  margin-bottom: 20px;
}

/* Responsive */
@media (min-width: 600px) {
  .benefits-grid {
    flex-direction: row;
  }

  .pricing-container {
    display: flex;
    gap: 20px;
  }
}

/* CSS Updates for New Layouts */

/* Hero Image Adjustment */
.hero-image {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Product Split Layout (Text Left, Image Right) */
.product-split-container {
  display: flex;
  flex-direction: column-reverse;
  /* Mobile: Image Top, Text Bottom */
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
}

.product-text {
  flex: 1;
  text-align: left;
}

.product-image-container {
  flex: 1;
  text-align: center;
}

.product-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  /* transition: transform 0.3s ease; */
}

/* Bonus Images */
.bonus-img-real {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

/* Checklist Styling Override */
.checklist-item {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* Desktop Query */
@media (min-width: 768px) {
  .product-split-container {
    flex-direction: row;
    /* Desktop: Text Left, Image Right (if HTML order is Text, Image) */
    text-align: left;
  }

  .hero-headline {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  position: relative;
  /* Mask effect on sides */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.testimonial-item {
  min-width: 250px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* OR cover if preferred, but for prints/text contain is safer slightly */
  background: #f4f4f4;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Ensure track is duplicated for seamless loop */
}

/* Social Proof Notification Toast Styles */
.social-proof-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* Or left based on preference */
  background: #fff;
  border-left: 5px solid var(--primary-green);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 300px;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.toast-content {
  font-size: 0.85rem;
  color: #333;
}

.toast-name {
  font-weight: bold;
  color: var(--header-green);
  display: block;
  margin-bottom: 2px;
}

.toast-time {
  font-size: 0.75rem;
  color: #999;
  display: block;
  margin-top: 3px;
}

/* Updated Section Ordering Styles */
.guarantee-box {
  margin-bottom: 40px;
  /* Ensure space before bio */
}

.bio-card,
.testimonials-section {
  margin-top: 40px;
}

/* Upsell Modal Styles */
.upsell-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.upsell-modal-overlay.active {
  display: flex;
}

.upsell-modal-content {
  background: white;
  width: 100%;
  max-width: 450px;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.3s ease-out;
  border: 3px solid #f1c40f;
  /* Gold border for "Promotion" feel */
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.upsell-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.upsell-title {
  font-size: 1.4rem;
  color: var(--header-green);
  margin-bottom: 10px;
  line-height: 1.2;
}

.upsell-offer {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}

.upsell-price-highlight {
  color: #27ae60;
  font-weight: 800;
  font-size: 1.3rem;
}

.upsell-warning {
  background: #fff3cd;
  color: #856404;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.upsell-btn-primary {
  width: 100%;
  padding: 15px;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  box-shadow: 0 4px 0 #1e8449;
  transition: transform 0.1s;
}

.upsell-btn-primary:active {
  transform: translateY(3px);
  box-shadow: none;
}

.upsell-btn-secondary {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #777;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.upsell-btn-secondary:hover {
  background: #f9f9f9;
  color: #555;
}/* Testimonial Carousel Styles */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    position: relative;
    /* Mask effect on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.testimonial-item {
    min-width: 250px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* OR cover if preferred, but for prints/text contain is safer slightly */
    background: #f4f4f4;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Ensure track is duplicated for seamless loop */
}

/* Social Proof Notification Toast Styles */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Or left based on preference */
    background: #fff;
    border-left: 5px solid var(--primary-green);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 300px;
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.toast-content {
    font-size: 0.85rem;
    color: #333;
}

.toast-name {
    font-weight: bold;
    color: var(--header-green);
    display: block;
    margin-bottom: 2px;
}

.toast-time {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 3px;
}

/* Updated Section Ordering Styles */
.guarantee-box {
    margin-bottom: 40px;
    /* Ensure space before bio */
}

.bio-card,
.testimonials-section {
    margin-top: 40px;
}
/* Mobile Carousel Fixes */
@media (max-width: 768px) {
    .testimonial-item {
        /* Ensure items don't shrink and have consistent width */
        min-width: 80vw !important;
        /* Take 80% of screen width */
        max-width: 320px;
        flex-shrink: 0 !important;
        margin-right: 15px;
        /* Add visual gap */
    }

    .testimonial-track {
        gap: 0;
        /* Let margin handle gap for consistency */
    }
}

/* Ensure images load and fit */
.testimonial-item img {
    background-color: transparent !important;
    /* Remove grey placeholder if possible */
}
/* Static Testimonials Styles */
.static-testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.static-testimonial-item {
    width: 300px;
    /* Default for desktop */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.2s;
}

.static-testimonial-item:hover {
    transform: translateY(-5px);
}

.static-testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .static-testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .static-testimonial-item {
        width: 90%;
        /* Ideal mobile size, close to full width but with breathing room */
        max-width: 350px;
        /* Don't get too huge on tablets */
        margin-bottom: 20px;
    }

    .static-testimonial-item:last-child {
        margin-bottom: 0;
    }
}
