:root {
  --mango: #f6c431;
  --mango-dark: #c98d09;
  --green: #1f7a3a;
  --green-dark: #0f4f25;
  --cream: #fff8e8;
  --cream-soft: #fffdf6;
  --white: #ffffff;
  --brown: #7a4d1d;
  --text: #231f20;
  --muted: #6e6258;
  --border: rgba(201, 141, 9, 0.18);
  --shadow: 0 24px 70px rgba(108, 69, 12, 0.12);
  --shadow-soft: 0 14px 40px rgba(108, 69, 12, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Anek Bangla", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.bangla,
[lang="bn"] {
  font-family: "Anek Bangla", "Inter", sans-serif;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mango-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 122, 58, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 34px rgba(31, 122, 58, 0.28);
}

.btn-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 122, 58, 0.18);
}

.btn-secondary:hover {
  background: #f2fff5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(246, 196, 49, 0.25);
  background: rgba(255, 248, 232, 0.9);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #ffdf62, #f4bd27);
  box-shadow: 0 10px 24px rgba(201, 141, 9, 0.18);
}

.brand-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
}

.brand-text span {
  display: block;
  color: var(--mango-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-links a {
  color: #4f453d;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(246, 196, 49, 0.25);
  background: var(--cream);
}

.mobile-menu-inner {
  display: grid;
  gap: 6px;
  padding: 18px 0 24px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #4f453d;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(246, 196, 49, 0.16);
  color: var(--green-dark);
}

.hero {
  position: relative;
  padding: 142px 0 86px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.7;
}

.hero::before {
  width: 320px;
  height: 320px;
  left: -130px;
  top: 150px;
  background: rgba(246, 196, 49, 0.44);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 180px;
  background: rgba(134, 204, 113, 0.38);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  letter-spacing: -0.04em;
}

.tagline {
  margin-top: 20px;
  color: var(--mango-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.hero-desc {
  max-width: 650px;
  margin-top: 22px;
  color: #594f45;
  font-family: "Anek Bangla", sans-serif;
  font-size: 21px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.trust-badge {
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid rgba(246, 196, 49, 0.2);
  border-radius: 22px;
  text-align: center;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 900;
}

.trust-badge svg {
  color: var(--mango-dark);
}

.hero-card-wrap {
  position: relative;
}

.hero-card-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(246, 196, 49, 0.36), rgba(31, 122, 58, 0.22));
  filter: blur(10px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-slider {
  position: relative;
  min-height: 568px;
}

.hero-slide {
  position: absolute;
  inset: 14px;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 32px;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-slider-btn:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
  left: 28px;
}

.hero-slider-next {
  right: 28px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 170px;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider-dot.active {
  width: 28px;
  background: var(--mango);
}

.hero-slider .floating-note {
  z-index: 5;
}

@media (max-width: 720px) {
  .hero-slider {
    min-height: 458px;
  }

  .hero-slide {
    inset: 10px;
  }

  .hero-slide img {
    height: 430px;
    border-radius: 26px;
  }

  .hero-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .hero-slider-prev {
    left: 18px;
  }

  .hero-slider-next {
    right: 18px;
  }

  .hero-slider-dots {
    bottom: 142px;
  }
}

.floating-note {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.floating-note strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.floating-note p {
  margin-top: 6px;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.about-copy {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.about-copy p {
  color: #564c43;
  font-size: 18px;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 20px;
  font-family: "Anek Bangla", sans-serif;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-card,
.why-card,
.order-step,
.review-card,
.contact-item,
.faq-item {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-card svg {
  color: var(--green);
  margin-bottom: 14px;
}

.feature-card h3 {
  color: var(--text);
  font-family: "Anek Bangla", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.feature-card p {
  margin-top: 6px;
  color: var(--muted);
}

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

.mango-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 49, 37, 0.08);
  box-shadow: 0 16px 34px rgba(37, 50, 24, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mango-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(37, 50, 24, 0.13);
}

.mango-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--cream-soft);
}

.mango-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(18, 26, 14, 0.42));
  pointer-events: none;
}

.mango-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mango-card:hover .mango-image img {
  transform: scale(1.06);
}

.status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  font-family: "Anek Bangla", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.mango-content {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.mango-content h3 {
  margin: 0;
  color: var(--text);
  font-family: "Anek Bangla", sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.mango-description,
.mango-content > p {
  margin: 0;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.mango-details {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 2px 0 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.detail-item::before {
  content: "•";
  color: var(--green);
  font-weight: 900;
  line-height: 1.5;
}

.detail-label {
  color: var(--text);
  min-width: 68px;
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.detail-value {
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(246, 196, 49, 0.16);
  border: 1px solid rgba(246, 196, 49, 0.22);
}

.price-label {
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.price-section .price-note {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--mango-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
  text-align: right;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.card-actions .btn {
  flex: 1;
  min-width: 150px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

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

.why-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  background: #fff3cf;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #ffdf62, #f2bc21);
}

.why-card h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
}

.why-card p {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 17px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.order-step {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.step-number {
  display: block;
  color: rgba(246, 196, 49, 0.86);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.order-step h3 {
  margin-top: 18px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.order-step p {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.quality-image {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.quality-image img {
  height: 520px;
  object-fit: cover;
}

.quality-collage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
}

.quality-collage img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quality-content h2 {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.quality-content p {
  margin-top: 18px;
  color: #564c43;
  font-size: 18px;
  line-height: 1.85;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.quality-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 17px;
  color: #4f453d;
  background: var(--cream);
  font-weight: 800;
}

.quality-point svg {
  flex: 0 0 auto;
  color: var(--green);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.gallery-filter-btn {
  padding: 10px 17px;
  border: 1px solid rgba(31, 122, 58, 0.16);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(108, 69, 12, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 122, 58, 0.2);
  transform: translateY(-2px);
}

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

.gallery-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  outline: none;
}

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

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
}

.gallery-card h3 {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  margin: 0;
  color: var(--white);
  font-family: "Anek Bangla", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .gallery-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }

  .gallery-filter::-webkit-scrollbar {
    height: 4px;
  }

  .gallery-filter::-webkit-scrollbar-thumb {
    background: rgba(31, 122, 58, 0.22);
    border-radius: 999px;
  }

  .gallery-filter-btn {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 9px 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card {
    height: 260px;
    border-radius: 24px;
  }

  .gallery-card h3 {
    font-size: 20px;
  }
}

.reviews-slider {
  position: relative;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--mango-dark);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  color: #3f3832;
  font-family: "Anek Bangla", sans-serif;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 800;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.reviewer-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 12px 24px rgba(108, 69, 12, 0.1);
}

.reviewer-avatar.male {
  color: var(--green-dark);
  background: linear-gradient(135deg, #ffdf62, #f2bc21);
}

.reviewer-avatar.female {
  color: #8a2f5b;
  background: linear-gradient(135deg, #ffe1ef, #f7abc9);
}

.reviewer-avatar svg {
  width: 30px;
  height: 30px;
  display: block;
}

.reviewer-info strong {
  display: block;
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.reviewer-info span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.review-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 122, 58, 0.14);
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.review-nav:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-50%) scale(1.05);
}

.review-prev {
  left: -22px;
}

.review-next {
  right: -22px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(201, 141, 9, 0.35);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.review-dot.active {
  width: 28px;
  background: var(--green);
}

@media (max-width: 1080px) {
  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .review-prev {
    left: -12px;
  }

  .review-next {
    right: -12px;
  }
}

@media (max-width: 720px) {
  .reviews-track {
    gap: 0;
  }

  .review-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .review-card blockquote {
    font-size: 19px;
  }

  .review-nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .review-prev {
    left: 8px;
  }

  .review-next {
    right: 8px;
  }

  .review-dots {
    margin-top: 24px;
  }
}

.faq-wrap {
  max-width: 880px;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-family: "Anek Bangla", sans-serif;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq-question svg {
  flex: 0 0 auto;
  color: var(--green-dark);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  border-top: 1px solid rgba(246, 196, 49, 0.15);
  color: var(--muted);
  font-family: "Anek Bangla", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 18px;
}

.contact-panel {
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 42px;
  background: radial-gradient(circle at top left, rgba(246, 196, 49, 0.34), transparent 34%),
    radial-gradient(circle at bottom right, rgba(31, 122, 58, 0.22), transparent 38%),
    linear-gradient(135deg, #fff4cb, #fffdf6 48%, #eaf8df);
  box-shadow: var(--shadow);
}

.contact-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.contact-section-card {
  min-width: 0;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  max-width: 620px;
  color: var(--text);
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: #574d43;
  font-family: "Anek Bangla", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-subheading,
.contact-card-heading {
  margin-bottom: 20px;
}

.contact-subheading h3,
.contact-card-heading h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 950;
}

.contact-subheading p {
  margin-top: 10px;
  color: #574d43;
  font-family: "Anek Bangla", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.field label span {
  color: #c94f32;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(31, 122, 58, 0.15);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: var(--white);
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: 15px;
}

.field input,
.field select {
  min-height: 50px;
  padding: 12px 15px;
}

.field textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 122, 58, 0.48);
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.08);
}

.facebook-live-frame {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.facebook-live-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.facebook-page-button {
  width: 100%;
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: var(--cream-soft);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--green-dark);
  background: var(--mango);
}

.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.contact-item strong {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
  word-break: break-word;
}

.contact-row-heading {
  margin: 80px auto 40px;
}

#order-request {
  scroll-margin-top: 110px;
}

#contact-details {
  scroll-margin-top: 120px;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.form-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.order-submit-button {
  flex: 0 0 auto;
  min-width: 215px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(31, 122, 58, 0.14);
  border-radius: 15px;
  color: var(--green-dark);
  background: rgba(31, 122, 58, 0.09);
  font-family: "Anek Bangla", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .contact-panel {
    padding: 42px;
  }

  .contact-sections-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-content: flex-start;
  }

  .facebook-live-frame,
  .facebook-live-frame iframe {
    height: 420px;
  }

  .facebook-live-box {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 720px;
    font-size: clamp(38px, 8vw, 56px);
  }

  .contact-copy p {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .contact-panel {
    padding: 26px;
    border-radius: 30px;
  }

  .contact-sections-grid {
    gap: 20px;
  }

  .contact-section-card {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-copy h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .contact-copy p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.75;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
  }

  .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .facebook-live-box {
    margin-top: 26px;
    padding: 16px;
    border-radius: 24px;
    gap: 18px;
  }

  .form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .contact-subheading {
    margin-bottom: 17px;
  }

  .contact-subheading h3 {
    font-size: 28px;
  }

  .contact-subheading p {
    font-size: 15px;
  }

  .facebook-live-frame,
  .facebook-live-frame iframe {
    height: 360px;
    border-radius: 18px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .form-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .form-note {
    max-width: none;
  }

  .order-submit-button {
    width: 100%;
    min-width: 0;
  }

  .contact-card {
    padding: 16px;
    border-radius: 26px;
  }

  .contact-item {
    padding: 14px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .contact-item strong {
    font-size: 15px;
  }
}

.site-footer {
  padding: 54px 0 24px;
  color: var(--white);
  background: #0b3f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 46px;
}

.footer-brand h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 950;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 14px;
  color: rgba(255,255,255,0.76);
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--mango);
  font-size: 16px;
  font-weight: 950;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-col a {
  color: rgba(255,255,255,0.78);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--mango);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(31, 122, 58, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-links,
  .desktop-cta {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img,
  .quality-image img {
    height: 460px;
  }

  .trust-badges,
  .variety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1080px) {
  .variety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .variety-grid {
    grid-template-columns: 1fr;
  }

  .mango-image {
    height: 260px;
  }

  .mango-content {
    padding: 20px;
  }

  .price-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-section .price-note {
    text-align: left;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 14px;
  }

  .hero {
    padding: 116px 0 64px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 64px);
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .trust-badges,
  .variety-grid,
  .why-grid,
  .order-grid,
  .quality-points,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    min-height: auto;
  }

  .hero-card,
  .contact-panel {
    border-radius: 30px;
  }

  .hero-card img,
  .quality-image img {
    height: 370px;
    border-radius: 22px;
  }

  .floating-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
  }

  .about-copy,
  .contact-panel {
    padding: 26px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .mango-content p {
    min-height: unset;
  }

  .order-step {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .quality-grid {
    gap: 34px;
  }

  .quality-collage {
    border-radius: 30px;
    padding: 0;
    max-width: 100%;
  }

  .quality-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
  }

  .quality-content {
    margin-top: 0;
  }

  .quality-content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .quality-content p {
    font-size: 17px;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-card img,
  .quality-image img {
    height: 330px;
  }

  .floating-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
/* Dynamic interaction enhancements */
.site-header.is-scrolled {
  border-bottom-color: rgba(201, 141, 9, 0.22);
  background: rgba(255, 248, 232, 0.97);
  box-shadow: 0 10px 30px rgba(80, 55, 18, 0.08);
}

.nav-links a.active,
.mobile-menu a.active {
  color: var(--green);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--mango-dark);
}

.mobile-menu a.active {
  background: rgba(246, 196, 49, 0.14);
}

.hero-slider,
.reviews-viewport {
  touch-action: pan-y;
}

.gallery-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.18), var(--shadow);
}

.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(14, 18, 12, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.gallery-lightbox.open .gallery-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: #11160f;
}

.gallery-lightbox-caption {
  padding: 16px 22px 18px;
  color: var(--green-dark);
  font-family: "Anek Bangla", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:focus-visible,
.mobile-toggle:focus-visible,
.faq-question:focus-visible,
.hero-slider-btn:focus-visible,
.review-nav:focus-visible,
.gallery-filter-btn:focus-visible,
.back-to-top:focus-visible,
.gallery-lightbox-close:focus-visible {
  outline: 3px solid rgba(31, 122, 58, 0.3);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-dialog {
    border-radius: 22px;
  }

  .gallery-lightbox-caption {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}


/* Facebook Page preview */
.facebook-live-frame {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 420px;
}

.facebook-live-frame .fb-page,
.facebook-live-frame .fb-page > span,
.facebook-live-frame .fb-page iframe {
  max-width: 100% !important;
}

.facebook-preview-status,
.facebook-preview-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background: var(--white);
  font-family: "Anek Bangla", "Inter", sans-serif;
}

.facebook-preview-status {
  z-index: 1;
  color: var(--muted);
}

.facebook-preview-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(31, 122, 58, 0.16);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: facebook-preview-spin 0.85s linear infinite;
}

.facebook-live-frame.facebook-preview-ready .facebook-preview-status {
  display: none;
}

.facebook-preview-fallback {
  z-index: 2;
  color: var(--text);
}

.facebook-preview-fallback[hidden] {
  display: none;
}

.facebook-preview-fallback strong {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.facebook-preview-fallback p {
  max-width: 360px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.facebook-preview-fallback .btn {
  margin-top: 4px;
}

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

@media (max-width: 720px) {
  .facebook-live-frame {
    min-height: 360px;
  }

  .facebook-preview-status,
  .facebook-preview-fallback {
    padding: 22px;
  }
}
