/* ═══════════════════════════════════════════════════════════
   24By7Snacks — Home Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Carousel ─────────────────────────────────────── */
#hero-carousel-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.carousel-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.carousel-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  height: 100%;
}

.carousel-product-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  /* Replaced multiply with contrast and shadow for premium quality */
  filter: contrast(1.1) drop-shadow(0px 15px 25px rgba(0,0,0,0.35));
  transform: translateY(60px) scale(0.9);
  opacity: 0;
  transition: transform 1.2s var(--ease-spring), opacity 1s ease;
}

.carousel-slide.active .carousel-product-img {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Staggered text animations */
.carousel-content > * {
  transform: translateY(30px);
  opacity: 0;
}

.carousel-slide.active .hero-badge {
  transition: transform 0.6s var(--ease-spring) 0.3s, opacity 0.6s ease 0.3s;
  transform: translateY(0) rotate(-2deg);
  opacity: 1;
}

.carousel-slide.active .hero-title-line1 {
  transition: transform 0.6s var(--ease-spring) 0.4s, opacity 0.6s ease 0.4s;
  transform: translateY(0);
  opacity: 1;
}

.carousel-slide.active .hero-title-line2 {
  transition: transform 0.6s var(--ease-spring) 0.5s, opacity 0.6s ease 0.5s;
  transform: translateY(0);
  opacity: 1;
}

.carousel-slide.active .hero-subtitle {
  transition: transform 0.6s var(--ease-spring) 0.6s, opacity 0.6s ease 0.6s;
  transform: translateY(0);
  opacity: 1;
}

.carousel-slide.active .hero-ctas {
  transition: transform 0.6s var(--ease-spring) 0.7s, opacity 0.6s ease 0.7s;
  transform: translateY(0);
  opacity: 1;
}

/* Text Stylings */
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: #0A0A0A;
  font-family: var(--font-hand);
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px rgba(0,0,0,1);
  margin-bottom: 24px;
}

/* ── Premium Flavor Typography (Fredoka One bubbly style) ─── */
.hero-title-line1 {
  font-family: 'Fredoka One', 'Fredoka', cursive, sans-serif;
  font-size: clamp(68px, 11vw, 138px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* Soft layered shadow — offset dark behind solid letters */
  text-shadow:
    3px 5px 0px rgba(0,0,0,0.22),
    6px 10px 20px rgba(0,0,0,0.28);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title-line2 {
  font-family: 'Fredoka One', 'Fredoka', cursive, sans-serif;
  font-size: clamp(68px, 11vw, 138px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 5px #FFFFFF;
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* Drop-shadow works on the rendered outline pixels */
  filter: drop-shadow(3px 5px 0px rgba(0,0,0,0.22)) drop-shadow(0px 8px 16px rgba(0,0,0,0.28));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-top: 16px;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1%;
  z-index: 10;
  pointer-events: none; /* Let clicks pass through the empty center */
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
  backdrop-filter: blur(8px);
  pointer-events: auto; /* Enable clicks on the buttons */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
  transform: scale(1.15);
  background: var(--yellow);
  color: #0A0A0A;
  border-color: var(--yellow);
}

.carousel-indicators {
  display: none; /* Hide the dots completely as requested */
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dot.active {
  background: var(--white);
  transform: scale(1.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .carousel-slide {
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .carousel-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .carousel-image-box {
    align-items: flex-start;
  }
  .carousel-product-img {
    max-height: 45vh;
  }
}

/* ── Marquee ───────────────────────────────────────────── */
#marquee-bar {
  background: #1a1a1a;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  animation: slide-up 0.5s ease 0.2s both;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

#marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marquee-dot {
  display: none;
}



/* ── Brand Feature Section (Oatful / Peri Peri) ─────────── */
#oatful-section {
  background: #4AAEC9;
  padding: 60px clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Subtle radial glow */
.oatful-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 50%, rgba(0,0,0,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.oatful-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Text Column ──────────────────────────────────────────── */
.oatful-text-col {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.oatful-brand-name {
  font-family: 'Fredoka One', var(--font-hand), cursive;
  font-size: clamp(34px, 5vw, 56px);
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.18);
}

.oatful-feature-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.1;
  font-weight: 700;
}

.oatful-subtext {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-weight: 500;
}

.oatful-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oatful-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #ffffff;
  font-weight: 500;
}

.oatful-feature-list svg {
  flex-shrink: 0;
  color: #ffffff;
}

/* ── Image Column ─────────────────────────────────────────── */
.oatful-image-col {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 360px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Decorative burst lines — top-right */
.oatful-deco-lines {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 3;
}

.oatful-deco-lines span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  transform-origin: left center;
}
.oatful-deco-lines span:nth-child(1) { transform: rotate(-45deg) translateX(6px) translateY(-50%); }
.oatful-deco-lines span:nth-child(2) { transform: rotate(0deg)   translateX(6px) translateY(-50%); width: 20px; }
.oatful-deco-lines span:nth-child(3) { transform: rotate(45deg)  translateX(6px) translateY(-50%); }
.oatful-deco-lines span:nth-child(4) { transform: rotate(90deg)  translateX(6px) translateY(-50%); width: 20px; }
.oatful-deco-lines span:nth-child(5) { transform: rotate(135deg) translateX(6px) translateY(-50%); }

/* Product wrapper */
.oatful-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Product image — hero-sized, impactful */
.oatful-product-img {
  width: 100%;
  max-width: 300px;
  max-height: 320px;
  object-fit: contain;
  /* Deep layered 3D shadow */
  filter:
    drop-shadow(0px 4px 6px  rgba(0,0,0,0.30))
    drop-shadow(0px 12px 20px rgba(0,0,0,0.22))
    drop-shadow(0px 28px 40px rgba(0,0,0,0.12));
  animation: oatfulFloat 5s ease-in-out infinite;
  transform-origin: center bottom;
  transform: rotate(-6deg);
  position: relative;
  z-index: 2;
}

/* Elliptical ground shadow */
.oatful-shadow-floor {
  width: 65%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.30) 0%, transparent 75%);
  margin-top: -14px;
  border-radius: 50%;
  animation: oatfulShadowPulse 5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes oatfulFloat {
  0%   { transform: translateY(0px)   rotate(-6deg) scale(1);    }
  50%  { transform: translateY(-16px) rotate(-4deg) scale(1.02); }
  100% { transform: translateY(0px)   rotate(-6deg) scale(1);    }
}

@keyframes oatfulShadowPulse {
  0%   { transform: scaleX(1);    opacity: 0.30; }
  50%  { transform: scaleX(0.78); opacity: 0.15; }
  100% { transform: scaleX(1);    opacity: 0.30; }
}

@media (max-width: 900px) {
  #oatful-section { padding: 40px clamp(20px, 5vw, 60px); }
  .oatful-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .oatful-feature-list {
    align-items: center;
  }
  .oatful-image-col { width: 200px; }
  .oatful-product-img { max-width: 200px; max-height: 220px; }
  .oatful-deco-lines  { display: none; }
}

/* ── Smart Snacking Comparison ────────────────────────── */
#compare-section {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
  padding: 80px clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.compare-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  color: #1a1a2e;
  margin-bottom: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.compare-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.compare-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  /* Premium multi-layer 3D shadow */
  box-shadow:
    0px 4px 8px rgba(0, 0, 0, 0.12),
    0px 16px 32px rgba(0, 0, 0, 0.10),
    0px 32px 64px rgba(0, 0, 0, 0.08);
  /* Anti-aliasing & performance */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  /* Subtle float animation */
  animation: compareFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.compare-shadow-floor {
  width: 75%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.20) 0%, transparent 75%);
  margin-top: -18px;
  border-radius: 50%;
  animation: compareShadowPulse 6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes compareFloat {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-12px) scale(1.01); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes compareShadowPulse {
  0%   { transform: scaleX(1);    opacity: 0.20; }
  50%  { transform: scaleX(0.82); opacity: 0.10; }
  100% { transform: scaleX(1);    opacity: 0.20; }
}

@media (max-width: 768px) {
  #compare-section { padding: 50px clamp(16px, 4vw, 40px); }
  .compare-heading { margin-bottom: 32px; }
  .compare-img { border-radius: 14px; }
}

/* ── Ingredients Transparency ──────────────────────────── */
#ingredients-transparency-section {
  background: #46a6cd;
  padding: 80px clamp(20px, 5vw, 80px);
  color: var(--white);
}

.transparency-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.transparency-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  text-align: center;
  margin-bottom: 5vw;
  color: var(--white);
  letter-spacing: 0.5px;
}

.transparency-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.transparency-image-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.transparency-product-img {
  width: 100%;
  max-width: 480px;
  max-height: 520px;
  object-fit: contain;
  border-radius: 20px;
  /* Premium multi-layer 3D shadow */
  box-shadow: 
    0px 4px 8px rgba(0, 0, 0, 0.15),
    0px 16px 32px rgba(0, 0, 0, 0.12),
    0px 32px 64px rgba(0, 0, 0, 0.10);
  /* Crisp glowing edge */
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  /* Anti-aliasing & performance */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.transparency-list-col {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transparency-item {
  background: var(--white);
  color: #444;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.transparency-item:hover {
  transform: translateX(10px);
  box-shadow: 4px 8px 15px rgba(0,0,0,0.15);
}

.transparency-item strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
  margin-bottom: 4px;
}

.transparency-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
  color: #555;
}

.transparency-icon {
  background: #256133;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .transparency-content {
    gap: 30px;
  }
}

/* ── Brand Story Strip ─────────────────────────────────── */
#story-strip {
  background: var(--cream);
  color: #0A0A0A;
  padding: 90px clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.story-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--orange);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: #0A0A0A;
  line-height: 1.1;
  margin-bottom: 20px;
}

.story-body {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: var(--font-body);
}

/* Photo Collage */
.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.collage-cell {
  background: #E0D8CC;
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.collage-cell:nth-child(1) { transform: rotate(-3deg); }
.collage-cell:nth-child(2) { transform: rotate(2deg); }
.collage-cell:nth-child(3) { transform: rotate(1deg); }
.collage-cell:nth-child(4) { transform: rotate(-2deg); background: var(--yellow); }

.collage-cell:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.collage-cell-label {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 0.85rem;
  color: #0A0A0A;
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Gifting Section ───────────────────────────────────── */
#gifting-section {
  background: var(--bg-primary);
  padding: 90px clamp(20px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#gifting-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,43,0.1), transparent 70%);
  pointer-events: none;
}

.gift-icon-big {
  font-size: 80px;
  display: block;
  margin: 0 auto 24px;
  animation: gift-float 2s ease-in-out infinite;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0;
}

.occasion-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.occasion-tag:hover {
  background: rgba(255,214,0,0.15);
  border-color: var(--yellow);
  color: var(--yellow);
}

.gift-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.gift-combos-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gift-combo-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.gift-combo-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255,107,43,0.15);
  transform: translateY(-4px);
}

.gift-combo-emoji {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.gift-combo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.gift-combo-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 16px;
}

.gift-combo-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--yellow);
}
.gift-combo-mrp {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ── Different Flavours Showcase ───────────────────────── */
#flavours-showcase-section {
  background: #d4eab0;
  padding: 70px clamp(20px, 5vw, 80px) 0;
  overflow: hidden;
}

.flavours-showcase-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.flavours-showcase-heading {
  font-family: 'Permanent Marker', var(--font-hand), cursive;
  font-size: clamp(26px, 3.5vw, 40px);
  color: #1a4731;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.flavours-showcase-products {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
}

.flavours-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 340px;
  /* Fixed base position */
  transform: rotate(var(--tilt, 0deg)) translateY(var(--rise, 0px));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
  transition-delay: var(--delay, 0s);
}

.flavours-product-item:hover {
  transform: rotate(0deg) translateY(calc(var(--rise, 0px) - 10px));
  z-index: 2;
}

.flavours-img-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.flavours-product-img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  /* Strong realistic lighting shadow */
  filter: 
    drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.28))
    drop-shadow(0px 18px 28px rgba(0, 0, 0, 0.20))
    drop-shadow(0px 38px 58px rgba(0, 0, 0, 0.14));
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  /* Separate float animation for true 3D depth against the shadow */
  animation: flavoursImgFloat 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  position: relative;
  z-index: 2;
}

.flavours-shadow-floor {
  width: 65%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 75%);
  margin-top: -16px;
  border-radius: 50%;
  animation: flavoursShadowPulse 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  flex-shrink: 0;
}

@keyframes flavoursImgFloat {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-16px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes flavoursShadowPulse {
  0%   { transform: scaleX(1);    opacity: 0.35; }
  50%  { transform: scaleX(0.75); opacity: 0.15; }
  100% { transform: scaleX(1);    opacity: 0.35; }
}

.flavours-product-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a4731;
  margin-top: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .flavours-showcase-products {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
  }
  .flavours-product-item {
    max-width: 45%;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .flavours-product-item { max-width: 80%; }
}

/* ── Testimonials ──────────────────────────────────────── */
#reviews-section {
  background: #234B36;
  padding: 100px 0;
  overflow: hidden;
  color: #FFFFFF;
}

#reviews-section .section-tag {
  color: #D9CBB6;
}

#reviews-section .section-title {
  color: #F8F4EC;
}

.reviews-header {
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: 48px;
}

#reviews-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px clamp(20px, 5vw, 80px) 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

#reviews-scroll::-webkit-scrollbar { display: none; }
#reviews-scroll:active { cursor: grabbing; }

.review-card {
  width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: none;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #D4AF37;
}

.review-text {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F0F0F0;
  padding-top: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF !important;
  background: #234B36 !important;
  flex-shrink: 0;
}

.review-author-info {}
.review-name { font-weight: 700; font-size: 0.95rem; color: #234B36; }
.review-city { font-size: 0.8rem; color: rgba(51,51,51,0.6); margin-top: 4px; }
.review-product-tag {
  display: inline-block;
  font-size: 0.75rem;
  background: #F5E8C7;
  color: #234B36;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
  font-weight: 700;
}

/* ── Live Order Ticker ─────────────────────────────────── */
#order-ticker-bar {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  text-align: center;
}

#live-order-ticker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: #D9CBB6;
  display: inline-block;
}

/* ── Social Media ──────────────────────────────────────── */
#social-media-section {
  background: var(--cream);
  color: #0A0A0A;
  padding: 70px clamp(20px, 5vw, 80px);
}

.social-media-heading {
  font-family: 'Permanent Marker', var(--font-hand), cursive;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1a4731;
  letter-spacing: 1px;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-media-card {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #ddd;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.social-media-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.social-media-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.social-media-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px;
  pointer-events: none;
}

.social-media-overlay-text {
  font-family: 'Permanent Marker', var(--font-hand), cursive;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: #1a1a1a;
  line-height: 1.25;
  text-shadow: 0 1px 6px rgba(255,255,255,0.4);
}

.social-media-cta {
  text-align: center;
  margin-top: 32px;
}

.social-media-cta a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #0A0A0A;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.social-media-cta a:hover { color: var(--orange); }

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

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

/* ── Newsletter ────────────────────────────────────────── */
#newsletter-section {
  background: var(--yellow);
  padding: 90px clamp(20px, 5vw, 80px);
  text-align: center;
}

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  color: #0A0A0A;
  margin-bottom: 8px;
}

.newsletter-sub {
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  font-size: 1rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0A0A0A;
  min-width: 0;
}

.newsletter-input::placeholder { color: rgba(0,0,0,0.35); }
.newsletter-input:focus { outline: none; }

.newsletter-btn {
  background: #0A0A0A;
  color: white;
  padding: 16px 28px;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn:hover { background: #333; }

.newsletter-fine {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
  margin-top: 14px;
}

/* Stats Row ─────────────────────────────────────────────── */
#stats-section {
  background: #d4eab0;
  padding: 60px clamp(20px, 5vw, 80px);
  border-top: none;
  border-bottom: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.stat-item { /* styled via children */ }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #1a4731;
}

.stat-label {
  font-size: 0.85rem;
  color: #556b4e;
  font-weight: 900;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}
