/* =============================================================
   style-new-sections.css
   বিশুদ্ধ প্রকৃতি — MVP Landing Page New Sections
   Append this file or copy into the bottom of style.css
   ============================================================= */

/* =========================
   GLOBAL SHARED UTILITIES
   ========================= */
.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green, #4a7c2f);
  background: rgba(74, 124, 47, 0.1);
  border: 1px solid rgba(74, 124, 47, 0.2);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--green, #4a7c2f);
  color: var(--green, #4a7c2f);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  align-self: center;
}

.view-all-btn:hover {
  background: var(--green, #4a7c2f);
  color: #fff;
}

/* fade-in-up animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   WHY CHOOSE US
   ========================= */
.why-choose-bg {
  padding: 72px 0;
  background: #f9fbf6;
}

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

.why-card-premium {
  background: #fff;
  border: 1px solid rgba(74, 124, 47, 0.12);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green, #4a7c2f), #7ab648);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74, 124, 47, 0.14);
  border-color: rgba(74, 124, 47, 0.3);
}

.why-card-premium:hover::before {
  transform: scaleX(1);
}

.why-card-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.why-card-premium:hover .why-card-icon-wrap {
  transform: scale(1.12);
}

.why-natural  { background: rgba(74, 124, 47, 0.1); color: #4a7c2f; }
.why-chemical { background: rgba(52, 152, 219, 0.1); color: #2980b9; }
.why-source   { background: rgba(230, 126, 34, 0.1); color: #e67e22; }
.why-quality  { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
  margin: 0 0 10px;
}

.why-card-desc {
  font-size: 13.5px;
  color: var(--text-muted, #666);
  line-height: 1.65;
  margin: 0 0 16px;
}

.why-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(74, 124, 47, 0.08);
  color: var(--green, #4a7c2f);
  padding: 4px 12px;
  border-radius: 20px;
}


/* =========================
   FEATURED PRODUCTS
   ========================= */
.featured-products-bg {
  padding: 72px 0;
  background: #fff;
}

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

.fp-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted, #888);
}

.fp-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(74, 124, 47, 0.15);
  border-top-color: var(--green, #4a7c2f);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Product Card */
.fp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.fp-card-img-wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: #f5f5f5;
}

.fp-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fp-card:hover .fp-card-img-wrap img {
  transform: scale(1.06);
}

.fp-card-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 1;
}

.fp-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fp-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fp-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.fp-card-stars { color: #f39c12; }
.fp-card-rating-count { color: var(--text-muted, #888); }

.fp-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.fp-card-sale-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--green, #4a7c2f);
}

.fp-card-original-price {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}

.fp-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.fp-add-cart-btn {
  flex: 1;
  padding: 10px;
  background: var(--green, #4a7c2f);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  font-family: inherit;
}

.fp-add-cart-btn:hover {
  background: #3a6222;
}

.fp-view-btn {
  padding: 10px 12px;
  background: #f5f5f5;
  color: var(--text-dark, #222);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  font-family: inherit;
  white-space: nowrap;
}

.fp-view-btn:hover {
  background: #e0e0e0;
}


/* =========================
   BEST SELLER
   ========================= */
.best-seller-bg {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a0f 0%, #2d5a1b 60%, #4a7c2f 100%);
  position: relative;
  overflow: hidden;
}

.best-seller-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bs-image-side {
  position: relative;
}

.bs-badge-float {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #f39c12;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(243,156,18,0.4);
}

.bs-product-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.15);
}

.bs-rating-float {
  position: absolute;
  bottom: 16px;
  right: -10px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bs-stars { color: #f39c12; font-size: 14px; }

/* Content */
.bs-content-side {
  color: #fff;
}

.bs-content-side .section-eyebrow {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

.bs-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 8px;
  font-family: 'Tiro Bangla', serif;
}

.bs-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.bs-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.bs-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
}

.bs-benefit-icon { font-size: 18px; }

.bs-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.bs-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.bs-feature-item span {
  width: 22px;
  height: 22px;
  background: rgba(122, 182, 72, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.bs-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bs-sale-price {
  font-size: 32px;
  font-weight: 700;
}

.bs-original-price {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.bs-discount-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.bs-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bs-cart-btn {
  padding: 14px 28px;
  background: #fff;
  color: var(--green, #4a7c2f);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.bs-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.bs-details-btn {
  padding: 14px 24px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  display: inline-flex;
  align-items: center;
}

.bs-details-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.bs-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}


/* =========================
   TESTIMONIALS (existing override — auto-slider enhancements)
   ========================= */
/* No override needed — existing review slider used */


/* =========================
   AFFILIATE
   ========================= */
.affiliate-bg {
  padding: 80px 0;
  background: linear-gradient(135deg, #fefdf8 0%, #f0f9e8 100%);
  position: relative;
  overflow: hidden;
}

.affiliate-bg::after {
  content: '💰';
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 180px;
  opacity: 0.04;
  pointer-events: none;
}

.affiliate-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.affiliate-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.affiliate-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
  line-height: 1.25;
  margin: 0 0 14px;
}

.affiliate-desc {
  font-size: 15px;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.affiliate-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(74, 124, 47, 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.affiliate-benefit:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(74, 124, 47, 0.1);
}

.ab-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ab-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
}

.ab-info span {
  font-size: 13px;
  color: var(--text-muted, #666);
  line-height: 1.5;
}

.affiliate-cta-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--green, #4a7c2f);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(74, 124, 47, 0.3);
}

.affiliate-cta-btn:hover {
  background: #3a6222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 124, 47, 0.35);
}

/* Visual side cards */
.affiliate-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliate-card-float {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}

.aff-card {
  background: #fff;
  border: 1.5px solid rgba(74, 124, 47, 0.14);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.aff-card:hover {
  transform: translateY(-4px);
}

.aff-card-icon { font-size: 28px; margin-bottom: 6px; }
.aff-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }
.aff-card-value { font-size: 18px; font-weight: 700; color: var(--green, #4a7c2f); margin: 4px 0; }
.aff-card-sub { font-size: 12px; color: #888; }


/* =========================
   DEALER
   ========================= */
.dealer-bg {
  padding: 80px 0;
  background: #fff;
}

.dealer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.dealer-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.dealer-icon-big {
  font-size: 80px;
  background: linear-gradient(135deg, #f0f9e8, #dcefd0);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(74, 124, 47, 0.15);
}

.dealer-stat-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.dealer-stat {
  background: #f9fbf6;
  border: 1px solid rgba(74, 124, 47, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  min-width: 90px;
}

.dealer-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--green, #4a7c2f);
  margin-bottom: 4px;
}

.dealer-stat span {
  font-size: 12px;
  color: #888;
}

.dealer-eyebrow { display: inline-block; margin-bottom: 14px; }

.dealer-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}

.dealer-desc {
  font-size: 15px;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dealer-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.dealer-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dp-check {
  width: 28px;
  height: 28px;
  background: var(--green, #4a7c2f);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.dealer-perk > div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark, #1a2e0a);
  margin-bottom: 4px;
}

.dealer-perk > div p {
  font-size: 13.5px;
  color: var(--text-muted, #666);
  margin: 0;
  line-height: 1.5;
}

.dealer-cta-btn {
  display: inline-block;
  padding: 15px 36px;
  background: linear-gradient(135deg, #1e3a0f, #4a7c2f);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(30, 58, 15, 0.3);
}

.dealer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 15, 0.35);
}


/* =========================
   TRUST COUNTER
   ========================= */
.counter-bg {
  padding: 72px 0;
  background: var(--green, #4a7c2f);
  position: relative;
  overflow: hidden;
}

.counter-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.counter-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.counter-title {
  color: #fff !important;
}

.counter-header .section-sub {
  color: rgba(255,255,255,0.75) !important;
}

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

.counter-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.15);
}

.counter-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.counter-number {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}


/* =========================
   FAQ ACCORDION
   ========================= */
.mvp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvp-faq-item {
  background: #fff;
  border: 1px solid rgba(74, 124, 47, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.mvp-faq-item:has(.mvp-faq-question[aria-expanded="true"]) {
  border-color: var(--green, #4a7c2f);
  box-shadow: 0 4px 20px rgba(74, 124, 47, 0.1);
}

.mvp-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark, #1a2e0a);
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.mvp-faq-question:hover {
  background: rgba(74, 124, 47, 0.03);
}

.mvp-faq-question[aria-expanded="true"] {
  color: var(--green, #4a7c2f);
}

.faq-arrow {
  font-size: 12px;
  color: var(--green, #4a7c2f);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mvp-faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(-180deg);
}

.mvp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mvp-faq-answer.open {
  max-height: 200px;
  padding-bottom: 6px;
}

.mvp-faq-answer p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted, #555);
  line-height: 1.7;
}


/* =========================
   FINAL CTA
   ========================= */
.final-cta-bg {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e1f07 0%, #1e3a0f 50%, #2d5a1b 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,182,72,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-deco {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.final-cta-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
  font-family: 'Tiro Bangla', serif;
}

.final-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta-primary {
  padding: 16px 40px;
  background: #fff;
  color: var(--green, #4a7c2f);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.final-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.final-cta-outline {
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.final-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.final-cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}


/* =========================
   RESPONSIVE — Mobile First
   ========================= */

/* 1024px — Tablet */
@media (max-width: 1024px) {
  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bs-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bs-image-side {
    text-align: center;
  }
  .bs-product-img {
    max-width: 320px;
  }
  .bs-rating-float {
    right: 20%;
  }
  .affiliate-wrapper,
  .dealer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .affiliate-card-float {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
  .aff-card {
    min-width: 160px;
    flex: 1;
  }
  .dealer-visual {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px — Tablet portrait */
@media (max-width: 768px) {
  .why-choose-bg,
  .featured-products-bg,
  .best-seller-bg,
  .affiliate-bg,
  .dealer-bg,
  .counter-bg,
  .final-cta-bg {
    padding: 52px 0;
  }

  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bs-benefits-grid {
    grid-template-columns: 1fr;
  }

  .bs-cta-row {
    flex-direction: column;
  }

  .bs-cart-btn,
  .bs-details-btn {
    width: 100%;
    justify-content: center;
  }

  .dealer-visual {
    flex-direction: column;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .final-cta-trust {
    gap: 12px;
    font-size: 12px;
  }
}

/* 480px — Mobile landscape */
@media (max-width: 480px) {
  .why-grid-4 {
    grid-template-columns: 1fr;
  }

  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .fp-card-body { padding: 10px 12px 12px; }
  .fp-card-name { font-size: 13px; }

  .bs-benefits-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-card-float {
    flex-direction: column;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .counter-card {
    padding: 22px 12px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-primary,
  .final-cta-outline {
    width: 100%;
    text-align: center;
  }

  .final-cta-trust {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* 320px — Tiny mobile */
@media (max-width: 320px) {
  .fp-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }
}

/* Overflow protection */
* { box-sizing: border-box; }
section, .container { max-width: 100%; overflow-x: hidden; }
