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

:root {
  --green:       #24A518;
  --green-dark:  #1a7a11;
  --green-btn:   #2db81f;
  --green-light: #e8fbe6;
  --green-mid:   #d0f0cc;
  --white: #fff;
  --black: #111;
  --gray:  #f4f4f4;
  --gray2: #e8e8e8;
  --text:  #222;
  --muted: #666;
  --font: 'Roboto', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-green: 0 6px 28px rgba(36,165,24,0.35);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

img, video, iframe { display: block; max-width: 100%; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* =============================================
   GREEN BAR
   ============================================= */
.green-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: clamp(13px, 3vw, 20px);
  font-weight: 700;
  padding: 14px 16px;
  letter-spacing: 0.4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: #fff;
  padding: 40px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* === Carousel === */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 460px;   /* ← matches the 450px native image size */
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show full image, no crop */
  background: #fff;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 17px;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.car-btn.prev { left: 10px; }
.car-btn.next { right: 10px; }
.car-btn:hover { background: #fff; }

.car-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.dot.active { background: var(--green); transform: scale(1.3); }

.badge-sale {
  position: absolute;
  top: 14px; left: 14px;
  background: #e30000;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(227,0,0,0.4);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* Thumbnails */
.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }

.thumb {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.thumb.active,
.thumb:hover { border-color: var(--green); }

/* === Hero Info === */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.product-name {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}

.hero-headline-lg {
  font-size: clamp(32px, 7vw, 54px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -1px;
}

.product-tagline {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--green);
  font-weight: 700;
  margin-top: -8px;
}

.hero-subheadline-lg {
  font-size: clamp(18px, 3.5vw, 26px);
  color: var(--green);
  font-weight: 800;
  margin-top: -6px;
}

/* Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars { color: #f5a623; font-size: 20px; }
.rating-count { font-size: 14px; color: var(--muted); }

/* Price */
.price-box {
  background: var(--green-light);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-was {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}
.price-main {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
  line-height: 1;
}
.price-inst { font-size: 15px; color: #444; }
.price-inst strong { color: var(--green); }

/* Delivery */
.delivery-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

/* BUY BUTTON */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2db81f 0%, #24A518 50%, #1a7a11 100%);
  color: #fff;
  font-family: var(--font);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 900;
  padding: 18px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-green), 0 3px 0 var(--green-dark);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  width: 100%;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(36,165,24,0.55), 0 3px 0 var(--green-dark);
  filter: brightness(1.05);
}
.btn-buy:active { transform: translateY(0); }

.btn-buy--large {
  font-size: clamp(18px, 4vw, 26px);
  padding: 22px 40px;
}

.btn-buy--sm {
  font-size: clamp(14px, 2.5vw, 17px);
  padding: 12px 24px;
  width: auto;
}

/* Featured CTA with Payment Badge */
.btn-buy--featured {
  padding: 14px 20px;
}

.btn-buy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.btn-buy-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.btn-buy-badge {
  display: inline-block;
  background: #ffeb3b;
  color: #111;
  font-size: clamp(11px, 2.3vw, 13px);
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: pulse-badge 2s infinite;
}

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

.animate-pulse {
  animation: pulse-btn 2.5s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%,100% { box-shadow: var(--shadow-green), 0 3px 0 var(--green-dark); }
  50%      { box-shadow: 0 0 0 10px rgba(36,165,24,0.15), var(--shadow-green), 0 3px 0 var(--green-dark); }
}

.secure-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Quick features */
.features-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.fq-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
}
.fq-icon { font-size: 20px; }

/* =============================================
   BENEFITS
   ============================================= */
.section-benefits {
  background: var(--gray);
  padding: 64px 0;
}

.sec-title {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
.sec-title.left { text-align: left; }
.sec-title span { color: var(--green); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.bc-icon { font-size: 36px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =============================================
   FEATURES LIST SECTION
   ============================================= */
.section-features {
  background: #fff;
  padding: 64px 0;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .features-inner { grid-template-columns: 1fr; }
  .features-img { order: -1; }
}

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

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.check-list li {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

/* =============================================
   VIDEOS
   ============================================= */
.section-videos {
  background: linear-gradient(180deg, #f4fdf3 0%, #eafaea 100%);
  padding: 64px 0;
  border-top: 1px solid var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
}

.section-videos .sec-title {
  color: var(--black);
}

.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  background: #fff;
  margin-bottom: 28px;
}

/* Influencer: full width, natural height with green border */
.video-influencer {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 28px;
  border: 4px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(36, 165, 24, 0.25), 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
}
.video-influencer video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  object-fit: contain;
  background: #fff;
}

/* Stories pair */
.stories-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .stories-row { grid-template-columns: 1fr; } }

.video-story {
  aspect-ratio: 9/16;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.video-story video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =============================================
   OFFER SECTION
   ============================================= */
.section-offer {
  background: linear-gradient(180deg, #f0fff0 0%, #e4ffe2 100%);
  padding: 72px 0;
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}

.offer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.offer-badge-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.offer-badge {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.offer-badge.red { background: #e30000; }

.offer-title {
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
}

.offer-desc {
  font-size: clamp(16px, 3vw, 20px);
  color: #333;
  line-height: 1.7;
  max-width: 560px;
}

.offer-price-box {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: 100%;
}
.op-was { font-size: 16px; color: #999; text-decoration: line-through; font-weight: 600; }
.op-now { font-size: clamp(40px, 10vw, 64px); font-weight: 900; color: var(--green); letter-spacing: -2px; line-height: 1; }
.op-inst { font-size: 18px; color: #444; margin-top: 6px; }
.op-inst strong { color: var(--green); }

/* Payment steps */
.payment-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.ps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
}
.ps-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 18px;
}
.ps-arrow { font-size: 24px; color: var(--green); font-weight: 900; }

@media (max-width: 540px) { .ps-arrow { display: none; } }

.offer-note {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

/* =============================================
   PROVAS SOCIAIS (VÍDEOS)
   ============================================= */
.section-social-proof {
  background: #f8f9fa;
  padding: 64px 0;
  border-top: 1px solid var(--gray2);
}

.sec-subtitle {
  text-align: center;
  font-size: clamp(15px, 3vw, 19px);
  color: var(--muted);
  margin-top: -30px;
  margin-bottom: 40px;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .proof-videos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.proof-video-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-video-card .video-wrap {
  margin-bottom: 12px;
}

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

.proof-info .stars {
  font-size: 18px;
}

.proof-info p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
  font-style: italic;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.section-testimonials {
  background: #fff;
  padding: 64px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.testi-stars { color: #f5a623; font-size: 20px; margin-bottom: 12px; }
.testi-card p { font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 14px; font-style: italic; }
.testi-author { font-size: 13px; color: var(--muted); font-weight: 700; }

/* =============================================
   CONTACT
   ============================================= */
.section-contact {
  background: var(--green);
  padding: 56px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-text h2 {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.contact-text p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, filter 0.2s;
}
.btn-whatsapp:hover { transform: scale(1.04); filter: brightness(1.08); }

.contact-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cb-item {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 28px;
  color: #fff;
}
.cb-item span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* =============================================
   FLOATING BAR
   ============================================= */
.floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.floating-bar.visible { transform: translateY(0); }
.fb-price {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 900;
  color: var(--green);
}
.fb-price small { font-size: 12px; color: var(--muted); font-weight: 500; display: block; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* =============================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }
  
  .hero {
    padding: 20px 0 28px;
  }
  
  .section-benefits,
  .section-features,
  .section-videos,
  .section-social-proof,
  .section-offer,
  .section-testimonials,
  .section-contact {
    padding: 32px 0;
  }

  .sec-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .sec-subtitle {
    font-size: 14px;
    margin-top: -14px;
    margin-bottom: 20px;
  }

  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-info {
    gap: 12px;
  }

  .hero-headline-lg {
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-subheadline-lg {
    font-size: 15px;
    margin-top: -2px;
  }

  .carousel {
    max-width: 100%;
    border-radius: 12px;
  }

  .thumbs {
    max-width: 100%;
    gap: 6px;
  }

  .thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }

  /* Quick Features on Mobile */
  .features-quick {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Price box on mobile */
  .price-box {
    padding: 12px 14px;
  }

  .price-main {
    font-size: 34px;
  }

  .price-inst {
    font-size: 14px;
  }

  /* Buttons on Mobile */
  .btn-buy {
    padding: 14px 16px !important;
    border-radius: 40px;
  }

  .btn-buy--featured {
    padding: 12px 14px !important;
  }

  .btn-buy-title {
    font-size: 15px !important;
    line-height: 1.2;
    text-align: center;
  }

  .btn-buy-badge {
    font-size: 10px !important;
    padding: 2px 8px !important;
    margin-top: 2px;
  }

  .btn-buy--large {
    padding: 14px 16px !important;
  }

  /* Features Grid on Mobile */
  .features-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .check-list {
    gap: 10px;
    margin-bottom: 18px;
  }

  .check-list li {
    font-size: 14px;
  }

  /* Influencer Video on Mobile */
  .video-influencer {
    border-width: 3px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .video-influencer video {
    max-height: 60vh;
  }

  /* Payment Steps on Mobile */
  .payment-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .ps-item {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 14px;
    gap: 12px;
    text-align: left;
  }

  .ps-num {
    width: 30px;
    height: 30px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .ps-item p {
    margin: 0;
    font-size: 13px;
  }

  .ps-arrow {
    display: none !important;
  }

  /* Provas Sociais on Mobile */
  .proof-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
  }

  .proof-video-card .video-wrap {
    max-width: 240px;
    margin: 0 auto 10px;
  }

  /* Offer Section on Mobile */
  .offer-inner {
    gap: 14px;
    padding: 0 4px;
  }

  .offer-title {
    font-size: 22px;
  }

  .offer-desc {
    font-size: 14px;
  }

  .op-now {
    font-size: 36px;
  }

  .offer-price-box {
    padding: 14px;
  }

  /* Contact Section on Mobile */
  .contact-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 22px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .contact-badges {
    width: 100%;
    gap: 8px;
  }

  .cb-item {
    padding: 10px 6px;
    font-size: 20px;
  }

  .cb-item span {
    font-size: 11px;
  }

  /* Floating Bar on Mobile */
  .floating-bar {
    padding: 8px 12px;
    gap: 8px;
  }

  .fb-price {
    font-size: 14px;
    line-height: 1.1;
    flex-shrink: 0;
  }

  .fb-price small {
    font-size: 10px;
  }

  .floating-bar .btn-buy--sm {
    padding: 8px 12px !important;
    border-radius: 30px;
  }

  .floating-bar .btn-buy-title {
    font-size: 13px !important;
    white-space: nowrap;
  }

  .floating-bar .btn-buy-badge {
    display: none !important;
  }
}
