/* ═══════════════════════════════════════════════
   HoneyBee Learning — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --green: #3d6b24;
  --green-light: #5a9435;
  --green-pale: #e8f5d8;
  --brown: #6b3a1f;
  --brown-light: #8b5a3a;
  --orange: #f4a227;
  --honey: #ffb300;
  --honey-pale: #fff8e1;
  --sky: #c8eaf8;
  --sky-dark: #a0d4f0;
  --cream: #fffdf5;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-soft: #666;
  --shadow: 0 8px 32px rgba(61, 107, 36, 0.12);
  --shadow-deep: 0 20px 60px rgba(61, 107, 36, 0.18);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--green-pale);
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  border-radius: 10px;
}

.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brown-light);
  display: block;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-pale);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(244, 162, 39, 0.4);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 39, 0.55);
}

/* ─── HERO ─── */
.hero {
  min-height: 60vh;
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-dark) 35%, var(--green-pale) 65%, #c8e6a0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 8% 50px;
  gap: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #ffe06699 60%, transparent 100%);
  border-radius: 50%;
  animation: sunPulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, #7ec850);
  border-radius: 50% 50% 0 0/30px 30px 0 0;
}

@keyframes sunPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.9;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud1 {
  width: 130px;
  height: 44px;
  top: 14%;
  right: 12%;
  animation: cloudFloat 9s ease-in-out infinite;
}

.cloud1::before {
  width: 65px;
  height: 65px;
  top: -34px;
  left: 18px;
}

.cloud1::after {
  width: 44px;
  height: 44px;
  top: -24px;
  left: 60px;
}

.cloud2 {
  width: 90px;
  height: 30px;
  top: 22%;
  right: 38%;
  animation: cloudFloat 13s ease-in-out infinite reverse;
}

.cloud2::before {
  width: 48px;
  height: 48px;
  top: -26px;
  left: 12px;
}

.cloud2::after {
  width: 32px;
  height: 32px;
  top: -18px;
  left: 44px;
}

@keyframes cloudFloat {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(18px)
  }
}

.hero-left {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--brown);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--green);
  text-shadow: 2px 3px 0 rgba(61, 107, 36, 0.12);
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 span {
  color: var(--brown);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(61, 107, 36, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(61, 107, 36, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--green);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem;
  color: var(--green);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-right {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  display: none;
}

@media(min-width:900px) {
  .hero-right {
    display: block;
  }
}

.hero-banner-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(61, 107, 36, 0.25);
  animation: fadeUp 0.6s 0.2s ease both;
  object-fit: contain;
  max-height: 420px;
  background: #ffffff;
}

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

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-pale);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.banner-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─── BANNER STRIP ─── */
.banner-strip {
  background: var(--honey);
  padding: 10px 5%;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brown);
  overflow: hidden;
  white-space: nowrap;
}

.banner-strip span {
  margin: 0 16px;
}

/* ─── SECTIONS ─── */
section {
  padding: 68px 5%;
}

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.6;
}

/* ─── STREAM TABS ─── */
.streams-section {
  background: white;
  padding-bottom: 0;
}

.stream-tabs {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--green-pale);
  flex-wrap: wrap;
}

.stream-tab {
  padding: 14px 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.2s;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stream-tab:hover {
  color: var(--green);
  background: var(--green-pale);
}

.stream-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: var(--green-pale);
}

.stream-content {
  display: none;
  padding: 44px 0 68px;
}

.stream-content.active {
  display: block;
}

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.how-card {
  text-align: center;
  padding: 34px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px solid var(--green-pale);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

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

.how-num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.how-icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.how-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 7px;
}

.how-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ─── FILTER ─── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 2px solid var(--green-pale);
  background: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-soft);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* ─── RETURN GIFT CARDS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: var(--green-pale);
}

.product-card.hidden {
  display: none;
}

.card-header {
  padding: 24px 20px 16px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4edb0 100%);
  position: relative;
  text-align: center;
}

.card-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 8px;
}

.card-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--green);
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brown);
  color: white;
  padding: 5px 11px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-mrp {
  font-size: 0.6rem;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-actual {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
}

.card-body {
  padding: 16px 20px 20px;
}

.card-items {
  list-style: none;
  margin-bottom: 16px;
}

.card-items li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-soft);
  font-weight: 600;
  padding: 3px 0;
  border-bottom: 1px dashed var(--green-pale);
}

.card-items li:last-child {
  border: none;
}

.card-items .check {
  color: var(--green);
  flex-shrink: 0;
}

.card-btn {
  width: 100%;
  padding: 11px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(244, 162, 39, 0.35);
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 39, 0.5);
}

/* ─── LEARNING CARDS ─── */
.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 26px;
}

.learning-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.learning-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: #ffe08280;
}

.lcard-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 2px solid var(--green-pale);
}

.lcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
  padding: 8px;
}

.learning-card:hover .lcard-img-wrap img {
  transform: scale(1.04);
}

.lcard-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.badge-hot {
  background: #ff6b35;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--honey);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lcard-price {
  background: white;
  color: var(--green);
  padding: 4px 11px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lcard-mrp {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-soft);
  text-decoration: line-through;
  font-family: 'Nunito', sans-serif;
}

.lcard-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lcard-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 9px;
  line-height: 1.3;
}

.lcard-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 13px;
  flex: 1;
}

.lcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.lcard-tag {
  background: var(--honey-pale);
  color: var(--brown);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

.lcard-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.lcard-off {
  background: var(--green-pale);
  color: var(--green);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.lcard-btn {
  flex: 1;
  padding: 11px 14px;
  background: var(--honey);
  color: var(--brown);
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(255, 179, 0, 0.3);
  text-decoration: none;
  text-align: center;
  display: block;
}

.lcard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.45);
}

/* ─── DELIVERY BOX ─── */
.delivery-box {
  background: var(--honey-pale);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 2px solid #ffe08250;
}

/* ─── DETAIL MODAL ─── */
.dmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.dmodal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.dmodal {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.3s;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.dmodal-overlay.open .dmodal {
  transform: translateY(0) scale(1);
}

.dmodal-img {
  position: relative;
}

.dmodal-img img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 28px 28px 0 0;
  display: block;
  background: #ffffff;
  padding: 8px;
}

.dmodal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.dmodal-close:hover {
  background: white;
}

.dmodal-body {
  padding: 22px 26px 26px;
}

.dmodal-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dmodal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.dmodal-price {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--green);
}

.dmodal-mrp {
  font-size: 0.95rem;
  color: var(--text-soft);
  text-decoration: line-through;
  font-weight: 700;
}

.dmodal-off {
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.83rem;
}

.dmodal-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 18px;
  white-space: pre-line;
}

.dmodal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.dmodal-tag {
  background: var(--honey-pale);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.dmodal-btn {
  width: 100%;
  padding: 15px;
  background: var(--honey);
  color: var(--brown);
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.35);
  transition: transform 0.2s;
  margin-bottom: 8px;
}

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

.dmodal-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 600;
}

/* ─── ORDER MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.3s;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--green-pale), #d4edb0);
  padding: 24px 24px 16px;
  border-radius: 28px 28px 0 0;
  position: relative;
}

.modal-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.65rem;
  color: var(--green);
}

.modal-header p {
  color: var(--brown-light);
  font-weight: 600;
  font-size: 0.87rem;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-soft);
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--green);
}

.modal-body {
  padding: 20px 24px 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--brown);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 68px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.candy-choice {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.candy-btn {
  flex: 1;
  min-width: 76px;
  padding: 8px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  text-align: center;
  transition: all 0.2s;
  color: var(--text-soft);
}

.candy-btn.selected,
.candy-btn:hover {
  border-color: var(--orange);
  background: #fff8ee;
  color: var(--brown);
}

.order-summary-box {
  background: var(--green-pale);
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.osum-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--green);
}

.osum-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--brown);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(61, 107, 36, 0.35);
  transition: transform 0.2s;
}

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

.success-screen {
  text-align: center;
  padding: 14px 0 8px;
  display: none;
}

.success-screen.show {
  display: block;
}

.success-bee {
  font-size: 4rem;
  animation: beeBob 2s ease-in-out infinite;
  display: block;
}

@keyframes beeBob {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg)
  }

  50% {
    transform: translateY(-10px) rotate(4deg)
  }
}

.success-screen h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.85rem;
  color: var(--green);
  margin: 12px 0 7px;
}

.success-screen p {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.7;
}

.order-id-box {
  background: var(--green-pale);
  border-radius: 12px;
  padding: 11px 16px;
  margin: 16px 0;
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: 2px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: white;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 7px;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.04);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: white;
}

/* testi-grid is now the carousel track — layout handled by .carousel-track */
.testi-grid {
  display: contents;
}

.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--green-pale);
}

.testi-quote {
  font-size: 2.6rem;
  color: var(--green-pale);
  font-family: serif;
  line-height: 1;
  margin-bottom: 5px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 800;
  font-size: 0.87rem;
}

.testi-loc {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.stars {
  color: var(--orange);
  font-size: 0.87rem;
  margin-bottom: 4px;
}

/* ─── CONTACT ─── */
.contact-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: white;
  text-align: center;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-sub {
  color: rgba(255, 255, 255, 0.82);
  max-width: none;
}

.contact-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  color: white;
  text-align: center;
  min-width: 165px;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 7px;
  display: block;
}

.contact-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-value {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  margin-top: 4px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 24px 5%;
  font-size: 0.87rem;
  font-weight: 600;
}

footer strong {
  color: white;
}

footer a {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media(max-width:768px) {
  nav {
    padding: 8px 4%;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 82px 5% 88px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  section {
    padding: 50px 5%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stream-tab {
    padding: 10px 14px;
    font-size: 0.86rem;
  }
}

/* ─── HOME PAGE REVIEW TABS ─── */
#homeReviewTabs {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--green-pale);
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.review-tab {
  padding: 11px 24px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.2s;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-tab:hover {
  color: var(--green);
  background: var(--green-pale);
}

.review-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: var(--green-pale);
}

.review-content {
  display: none;
}

.review-content.active {
  display: block;
}

/* ─── HOME VIDEO GRID ─── */
/* home-video-grid is now inside .carousel-track — layout handled there */
.home-video-grid {
  display: contents;
}

.home-video-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

/* Shared video lazy wrapper styles (also used in product.css) */
.video-lazy-wrap {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-size: cover;
  background-position: center;
  background-color: #111;
  transition: filter 0.2s;
}

.video-play-overlay:hover {
  filter: brightness(1.08);
}

.video-thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.video-play-circle {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 179, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brown);
  padding-left: 4px;
  box-shadow: 0 0 0 8px rgba(255, 179, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-play-overlay:hover .video-play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(255, 179, 0, 0.25), 0 12px 36px rgba(0, 0, 0, 0.6);
}

.video-play-meta {
  position: relative;
  z-index: 1;
  text-align: center;
}

.video-play-name {
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  margin-bottom: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.video-play-loc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.home-video-caption {
  padding: 14px 16px 16px;
}

/* Responsive: 2-col on mobile, up to 5-col on wide screens */
@media(max-width: 480px) {
  .home-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #homeReviewTabs .review-tab {
    padding: 9px 14px;
    font-size: 0.84rem;
  }
}

@media(min-width: 769px) and (max-width: 1024px) {
  .home-video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1280px) {
  .home-video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ═══════════════════════════════════════════════
   REVIEW CAROUSELS
   ═══════════════════════════════════════════════ */

/* Wrapper holds track + both arrow buttons */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Scrollable row */
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
  align-items: stretch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Every direct child snaps into place */
.carousel-track>* {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ── Text review cards in carousel ── */
.carousel-track .testi-card {
  width: 300px;
  min-height: 180px;
  margin: 0;
  /* remove any old grid gaps */
}

/* ── Video cards in carousel ── */
.carousel-track .home-video-card {
  width: 220px;
}

/* ── Arrow buttons ── */
.carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--green-pale);
  background: white;
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  z-index: 2;
  padding: 0;
}

.carousel-btn:hover {
  background: var(--green);
  color: white;
  transform: scale(1.08);
  box-shadow: var(--shadow);
}

.carousel-btn:active {
  transform: scale(0.96);
}

/* On very small screens the arrows can overlap — hide them and rely on swipe */
@media (max-width: 480px) {
  .carousel-btn {
    display: none;
  }

  .carousel-wrap {
    gap: 0;
  }

  .carousel-track .testi-card {
    width: 80vw;
  }

  .carousel-track .home-video-card {
    width: 52vw;
  }
}

/* ─── LEARNING PRODUCT SUB-TABS ─── */
.learning-subtabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.learning-subtab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--green-pale);
  background: white;
  color: var(--text-soft);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.learning-subtab:hover {
  border-color: var(--green-light);
  color: var(--green);
  background: var(--green-pale);
}

.learning-subtab.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(61, 107, 36, 0.3);
}

/* ─── PRODUCT PAGE REVIEW CAROUSEL CARD WIDTHS ─── */
.carousel-track .review-card {
  width: 280px;
  min-height: 160px;
}

.carousel-track .photo-review {
  width: 240px;
}

.carousel-track .video-review {
  width: 240px;
}

/* ─── STICKY WHATSAPP FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 14px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s, padding 0.25s;
  animation: waBounce 2.5s ease-in-out infinite;
  overflow: hidden;
  max-width: 52px;
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-fab-label {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

.wa-fab:hover {
  max-width: 200px;
  padding: 12px 20px;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  animation: none;
}

.wa-fab:hover .wa-fab-label {
  max-width: 140px;
  opacity: 1;
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ─── ABOUT US SECTION ─── */
.about-section {
  background: linear-gradient(135deg, var(--honey-pale) 0%, #fff3d0 100%);
  border-top: 3px solid #ffe08280;
  border-bottom: 3px solid #ffe08280;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.about-emoji {
  font-size: 5rem;
  flex-shrink: 0;
  animation: sunPulse 4s ease-in-out infinite;
  line-height: 1;
  margin-top: 8px;
}

.about-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brown);
  margin: 10px 0 16px;
  line-height: 1.2;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 20px 0 24px;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
}

.about-trust-item span {
  color: var(--text);
}

.about-wa-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 600px) {
  .about-inner {
    flex-direction: column;
    gap: 16px;
  }

  .about-emoji {
    font-size: 3.5rem;
  }

  .about-trust-row {
    grid-template-columns: 1fr;
  }
}

/* ─── INITIALS AVATAR ─── */
.testi-avatar-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
  font-style: normal;
}

.review-avatar.testi-avatar-initials {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

/* ─── REVIEW DATE BADGE ─── */
.review-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  opacity: 0.75;
}