/* ==========================================
   JAGDISH FOODS — PREMIUM BRAND ENHANCEMENT
   ========================================== */

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Brand Tagline */
.brand-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.brand-tagline::before,
.brand-tagline::after {
  content: '\2014';
  margin: 0 8px;
  color: var(--premium-gold);
  font-weight: 400;
}

/* ==========================================
   VIDEO HERO — Glass Panel Overlay
   ========================================== */
.hero-video {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2e10;
}

.hero-slide-video {
  background: #1a2e10;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide-video.active .hero-video-bg {
  transform: scale(1);
}

.hero-video .hero-slide::after {
  background: linear-gradient(180deg,
      rgba(20, 35, 12, 0.55) 0%,
      rgba(20, 35, 12, 0.4) 50%,
      rgba(20, 35, 12, 0.65) 100%);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(101, 182, 41, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(197, 160, 89, 0.08), transparent 60%);
}

.hero-video-wrap {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 100px 20px 80px;
  width: 100%;
}

.hero-glass-panel {
  width: 100%;
  max-width: 760px;
  padding: 2.5rem 2.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-glass-panel .hero-heritage-badge {
  margin-bottom: 1rem;
}

.hero-glass-panel .brand-tagline {
  display: block;
  margin-bottom: 0.75rem;
}

.hero-video .hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--heritage-green);
}

.hero-video .hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d5c2a;
  max-width: 580px;
  margin: 0 auto 1.75rem;
  opacity: 1;
}

.hero-video .hero-btns {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-video .hero-trust-list {
  justify-content: center;
}

.hero-stats--bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 760px;
}

.hero-stats--bar .hero-stat {
  text-align: center;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-stats--bar .hero-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero-stats--bar .hero-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heritage-green);
}

.hero-video .hero-dots {
  bottom: 28px;
  z-index: 5;
}

.hero-video .hero-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-video .hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.hero-heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(101, 182, 41, 0.1);
  border: 1px solid rgba(101, 182, 41, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heritage-green);
  letter-spacing: 0.3px;
}

.hero-heritage-badge i {
  color: var(--premium-gold);
  font-size: 0.95rem;
}

.hero-heritage-badge strong {
  color: var(--primary-color);
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
}

.hero-btn-outline {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border-width: 2px;
}

.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(101, 182, 41, 0.08);
  border: 1px solid rgba(101, 182, 41, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heritage-green);
}

.hero-trust-list i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-glass-panel {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
  }

  .hero-video-wrap {
    padding: 90px 16px 70px;
  }

  .hero-stats--bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-stats--bar .hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 16px;
  }

  .hero-stats--bar .hero-stat strong {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }

  .hero-slide-video {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
  }
}

/* ==========================================
   TRUST SECTION — Why Customers Trust
   ========================================== */
.premium-trust-section {
  padding: 40px 0;
  background: var(--warm-cream);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(101, 182, 41, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(101, 182, 41, 0.25);
}

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

.trust-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(101, 182, 41, 0.12), rgba(101, 182, 41, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.trust-card:hover .trust-card-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
}

.trust-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================
   HERITAGE TIMELINE
   ========================================== */
.heritage-timeline-section {
  padding: 45px 0;
  background: var(--warm-cream);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.heritage-timeline-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(101, 182, 41, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.heritage-timeline-section .section-title .subtitle {
  color: var(--secondary-color);
}

.heritage-timeline-section .brand-tagline {
  color: var(--primary-color);
}

.heritage-timeline-section .main-title {
  color: var(--primary-color);
}

.heritage-timeline-section .heading-divider .line {
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.heritage-timeline-section .heading-divider i {
  color: var(--secondary-color);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--premium-gold));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--warm-cream);
  box-shadow: 0 0 0 3px var(--primary-color);
  z-index: 2;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: 0.4rem;
}

.timeline-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   CELEBRATIONS / EMOTIONAL STORY
   ========================================== */
.celebrations-section {
  padding: 90px 0;
  background: var(--warm-cream);
}

.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.celebration-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  box-shadow: var(--shadow-md);
}

.celebration-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--heritage-green) 0%, var(--primary-color) 100%);
  transition: transform 0.6s ease;
}

.celebration-card:nth-child(2) .celebration-card-bg {
  background: linear-gradient(135deg, #3d6b1e 0%, #65B629 100%);
}

.celebration-card:nth-child(3) .celebration-card-bg {
  background: linear-gradient(135deg, var(--premium-gold) 0%, var(--light-saffron) 100%);
}

.celebration-card:nth-child(4) .celebration-card-bg {
  background: linear-gradient(135deg, #2d5016 0%, #4a8f1e 100%);
}

.celebration-card:nth-child(5) .celebration-card-bg {
  background: linear-gradient(135deg, #65B629 0%, #7bc043 100%);
}

.celebration-card:nth-child(6) .celebration-card-bg {
  background: linear-gradient(135deg, var(--warm-tone) 0%, var(--premium-gold) 100%);
}

.celebration-card:hover .celebration-card-bg {
  transform: scale(1.05);
}

.celebration-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.65) 100%);
  color: #fff;
}

.celebration-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--light-saffron);
}

.celebration-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.celebration-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   AUTHENTICITY SECTION
   ========================================== */
.authenticity-section {
  padding: 30px 0;
  background: var(--warm-cream);
}

.authenticity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.authenticity-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.authenticity-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.authenticity-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--soft-ivory);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.authenticity-value:hover {
  background: var(--accent-light);
  transform: translateX(5px);
}

.authenticity-value i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.authenticity-value strong {
  display: block;
  color: var(--heritage-green);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.authenticity-value span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.authenticity-content .accent-title {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.75rem;
}

.authenticity-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.authenticity-visual img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}

/* ==========================================
   OUR PROMISE SECTION
   ========================================== */
.our-promise-section {
  width: 100%;
  background: #fcf8ed;
  padding: 56px 0 64px;
}

.our-promise-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.our-promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.our-promise-eyebrow {
  display: block;
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin: 0 0 18px;
}

.our-promise-heading {
  font-family: 'Noto Sans Gujarati', 'Nirmala UI', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #65b629;
  margin: 0 0 22px;
}

.our-promise-text {
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  color: #5a5a5a;
  margin: 0;
  max-width: 54ch;
}

.our-promise-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-promise-logo {
  display: block;
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
}

/* ==========================================
   QUALITY PROMISE
   ========================================== */
.quality-promise-section {
  padding: 45px 0;
  background: var(--warm-cream);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.quality-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.quality-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(101, 182, 41, 0.2);
}

.quality-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.quality-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.4rem;
}

.quality-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.quality-certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heritage-green);
}

.cert-badge i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ==========================================
   WHY CHOOSE JAGDISH
   ========================================== */
.why-choose-section {
  padding: 45px 0;
  background: var(--warm-cream);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--bg-white);
  transition: var(--transition);
}

.why-choose-item:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-choose-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.why-choose-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.3rem;
}

.why-choose-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   PREMIUM PRODUCT CARDS
   ========================================== */
.premium-product-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.premium-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.premium-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--soft-ivory);
}

.premium-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.premium-product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-bestseller {
  background: var(--premium-gold);
  color: #fff;
}

.badge-new {
  background: var(--primary-color);
  color: #fff;
}

.premium-product-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 2;
}

.premium-product-card:hover .premium-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-add-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.quick-add-btn:hover {
  background: var(--primary-color-dark);
  transform: scale(1.1);
}

.premium-product-body {
  padding: 1.25rem;
}

.premium-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.premium-product-rating .stars {
  color: var(--premium-gold);
  font-size: 0.8rem;
}

.premium-product-rating .rating-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

.premium-product-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.premium-product-weight {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.premium-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.premium-product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
}

.premium-product-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--heritage-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.premium-product-link:hover {
  color: var(--primary-color);
}

/* ==========================================
   BEST SELLING PRODUCTS — Reference Match
   ========================================== */
.best-selling-section {
  width: 100%;
  padding: 50px 0;
  background: #fcf8ed;
}

.best-selling-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1460px) {
  .best-selling-container {
    max-width: min(96vw, 2200px);
    padding: 0 clamp(28px, 2.5vw, 72px);
  }

  .best-selling-grid {
    gap: clamp(20px, 1.6vw, 32px);
  }
}

@media (min-width: 2100px) {
  .best-selling-container {
    max-width: min(94vw, 2600px);
  }
}

.best-selling-header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 8px;
}

.best-selling-eyebrow {
  display: block;
  font-family: 'Caveat', var(--font-accent, cursive);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0072bc;
  margin: 0 0 10px;
  line-height: 1;
}

.best-selling-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px;
  font-weight: 700;
  font-optical-sizing: auto;
  color: #285a38;
  line-height: 0.82;
  letter-spacing: -3px;
  margin: 0;
  text-align: center;
  text-transform: none;
}

.best-selling-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.best-selling-card {
  --card-theme: #285a38;
  --card-theme-hover: #1f4a2d;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(40, 90, 56, 0.1);
  box-shadow: 0 4px 18px rgba(40, 90, 56, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.best-selling-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(40, 90, 56, 0.1);
}

.best-selling-card__image-link {
  display: block;
  flex: 0 0 auto;
}

.best-selling-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  box-sizing: border-box;
  padding: 8px 8px 10px;
  background: #fff;
  overflow: hidden;
  display: block;
  border-radius: 12px 12px 0 0;
}

.best-selling-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  margin: 0;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.best-selling-card__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.best-selling-card__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.best-selling-card__image-link--has-hover:hover .best-selling-card__image-hover {
  opacity: 1;
}

.best-selling-card__image-link--has-hover:hover .best-selling-card__image-primary {
  opacity: 0;
}

.best-selling-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 18px 0 13px;
  background: var(--card-theme);
  color: #fff;
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0 0 14px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.best-selling-card__badge::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 7px;
  height: 5px;
  background: var(--card-theme);
  opacity: 0.55;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.best-selling-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 8px 16px 12px;
  gap: 10px;
  background: #fff;
}

.best-selling-card__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.best-selling-card__name a {
  color: inherit;
  text-decoration: none;
}

.best-selling-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.best-selling-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #c9a227;
  font-size: 10px;
}

.best-selling-card__star--muted {
  color: #e5e7eb;
}

.best-selling-card__rating-value {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

.best-selling-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.best-selling-card__price {
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0;
  display: inline-flex;
  align-items: baseline;
}

.best-selling-card__rupee-icon {
  font-size: 15px;
  font-weight: 700;
  margin-right: 1px;
  line-height: 1;
}

.best-selling-card__old-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.best-selling-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.best-selling-card__variant {
  border: 1.5px solid var(--card-theme);
  background: #fff;
  color: var(--card-theme);
  border-radius: 8px;
  padding: 6px 16px;
  min-height: 28px;
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}

.best-selling-card__variant.is-active {
  background: var(--card-theme);
  border-color: var(--card-theme);
  color: #fff;
}

.best-selling-card__variant:hover:not(.is-active) {
  background: #fff;
  border-color: var(--card-theme);
  color: var(--card-theme);
}

.best-selling-card__cart-btn {
  width: 100%;
  height: 35px;
  margin-top: 0;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--card-theme);
  color: #fdf8eb;
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  transition: background 0.25s ease, transform 0.2s ease, filter 0.25s ease;
}

.best-selling-card__cart-btn i {
  font-size: 14px;
  color: inherit;
}

.best-selling-card__cart-btn:hover {
  background: var(--card-theme-hover);
  filter: brightness(0.95);
}

.best-selling-card__cart-btn:active {
  transform: scale(0.98);
}

.best-selling-footer {
  margin-top: 44px;
  text-align: center;
}

.best-selling-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 40px;
  background: #fdf8eb;
  border: 2px solid #285a38;
  border-radius: 10px;
  color: #285a38;
  font-family: var(--font-main, 'DM Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.best-selling-view-all i {
  font-size: 16px;
  color: inherit;
}

.best-selling-view-all:hover {
  background: #285a38;
  color: #fff;
}

@media (max-width: 1199px) {
  .best-selling-title {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .best-selling-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .best-selling-section {
    padding: 72px 0;
  }

  .fmcg-stats-bar+.best-selling-section {
    padding-top: 16px;
  }

  .best-selling-container {
    padding: 0 16px;
  }

  .best-selling-header {
    margin-bottom: 32px;
  }

  .best-selling-eyebrow {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .best-selling-title {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .best-selling-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .best-selling-card {
    border-radius: 14px;
  }

  .best-selling-card__body {
    padding: 8px 12px 10px;
    gap: 10px;
  }

  .best-selling-card__image {
    padding: 6px 6px 8px;
  }

  .best-selling-card__image-media {
    border-radius: 8px;
  }

  .best-selling-card__badge {
    min-height: 24px;
    padding: 0 14px 0 11px;
    font-size: 8px;
    letter-spacing: 0.1em;
    border-radius: 0 0 11px 0;
  }

  .best-selling-card__cart-btn {
    height: 35px;
    font-size: 11px;
    border-radius: 8px;
    gap: 8px;
  }

  .best-selling-card__cart-btn i {
    font-size: 13px;
  }

  .best-selling-view-all {
    width: 100%;
    max-width: 340px;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-radius: 12px;
  }
}

/* ==========================================
   RECENTLY VIEWED
   ========================================== */
.recently-viewed-section {
  padding: 60px 0;
  background: var(--soft-ivory);
}

.recently-viewed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.recently-viewed-card {
  background: var(--bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

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

.recently-viewed-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.recently-viewed-card .rv-info {
  padding: 0.75rem;
}

.recently-viewed-card .rv-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recently-viewed-card .rv-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* ==========================================
   SECURE CHECKOUT BADGES
   ========================================== */
.trust-strip {
  padding: 20px 0;
  background: var(--warm-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-strip-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* ==========================================
   ABOUT PAGE — PREMIUM SECTIONS
   ========================================== */
.about-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.mission-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
  transition: var(--transition);
}

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

.mission-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mission-card h3 {
  font-size: 1.3rem;
  color: var(--heritage-green);
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.value-pill {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--soft-ivory);
  border-radius: 14px;
  transition: var(--transition);
}

.value-pill:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

.value-pill i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: block;
}

.value-pill h4 {
  font-size: 0.95rem;
  color: var(--heritage-green);
  margin: 0;
}

.about-founder-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin: 4rem 0;
}

.founder-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}

.founder-since-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary-color);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
}

.founder-content h3 {
  font-size: 1.6rem;
  color: var(--heritage-green);
  margin-bottom: 0.5rem;
}

.founder-content .founder-title {
  font-size: 0.9rem;
  color: var(--premium-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.founder-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.about-stat-card {
  background: var(--bg-white);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 160px;
  border-bottom: 3px solid var(--primary-color);
}

.about-stat-card h3 {
  color: var(--primary-color);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.about-stat-card p {
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

.aboutpage-body .section-padding {
  padding: 45px 0;
}

.about-timeline-light {
  background: var(--warm-cream);
  padding: 45px 0;
}

.about-timeline-light .timeline::before {
  background: linear-gradient(180deg, var(--primary-color), var(--premium-gold));
}

.about-timeline-light .timeline-dot {
  background: var(--primary-color);
  border-color: var(--warm-cream);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.about-timeline-light .timeline-year {
  color: var(--primary-color);
}

.about-timeline-light .timeline-item h4 {
  color: var(--heritage-green);
}

.about-timeline-light .timeline-item p {
  color: var(--text-light);
}

.founder-message-box {
  background: linear-gradient(135deg, var(--heritage-green), var(--primary-color-dark));
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.founder-message-box::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.founder-message-box blockquote {
  font-size: 1.15rem;
  line-height: 1.85;
  font-style: italic;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.founder-message-box cite {
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--light-saffron);
}

/* FAQ Section */
.faq-section {
  padding: 45px 0;
  background: var(--warm-cream);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heritage-green);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary-color);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .authenticity-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .authenticity-visual {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

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

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

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

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

  .about-founder-section {
    grid-template-columns: 1fr;
  }

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

  .trust-strip-inner {
    gap: 1.25rem;
  }

  .premium-trust-section,
  .heritage-timeline-section,
  .celebrations-section,
  .authenticity-section,
  .quality-promise-section,
  .why-choose-section,
  .about-timeline-light,
  .faq-section,
  .aboutpage-body .section-padding {
    padding: 30px 0;
  }
}

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

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

/* ==========================================
   NAV USER & PRODUCT SEARCH
   ========================================== */
.nav-user-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-user-name {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-logout-form {
  margin: 0;
}

.nav-logout-form button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

#searchToggleBtn,
#authToggleBtn {
  border: none;
  background: none;
  padding: 0;
}

.search-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 48, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(45, 80, 22, 0.2);
  border: 1px solid rgba(101, 182, 41, 0.15);
  overflow: hidden;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(101, 182, 41, 0.1);
  background: var(--soft-ivory);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid rgba(101, 182, 41, 0.2);
  border-radius: 50px;
  padding: 0 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input-wrap:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(101, 182, 41, 0.12);
}

.search-input-icon {
  color: var(--primary-color);
  font-size: 1rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 14px 0;
  color: var(--text-dark);
  background: transparent;
}

.search-input::placeholder {
  color: #aaa;
}

.search-clear-btn,
.search-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(101, 182, 41, 0.1);
  color: var(--heritage-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-clear-btn:hover,
.search-close-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.search-modal-body {
  max-height: 420px;
  overflow-y: auto;
  padding: 12px;
}

.search-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  color: var(--text-light);
  text-align: center;
  gap: 0.75rem;
}

.search-hint i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 2rem;
  color: var(--primary-color);
  font-weight: 500;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}

.search-result-item:hover {
  background: var(--accent-light);
}

.search-result-item img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  display: block;
  font-weight: 600;
  color: var(--heritage-green);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.search-result-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.search-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-light);
}

.search-empty i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  margin: 8px 4px 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
}

.search-view-all:hover {
  box-shadow: 0 6px 20px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
}

/* Menu page search bar */
.menu-search-bar {
  max-width: 520px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid rgba(101, 182, 41, 0.15);
  border-radius: 50px;
  padding: 0 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-search-bar:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(101, 182, 41, 0.1);
}

.menu-search-bar i {
  color: var(--primary-color);
}

.menu-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 14px 0;
  background: transparent;
}

.menu-no-results {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

.menu-no-results i {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

/* ==========================================
   AUTH / PROFILE MODAL (matches search modal)
   ========================================== */
.auth-modal {
  max-width: 480px;
}

.auth-modal-header {
  justify-content: space-between;
}

.auth-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 8px 4px;
}

.auth-modal-title-icon {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.auth-modal-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heritage-green);
}

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

.auth-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0.5rem 0 1.25rem;
  color: var(--text-light);
}

.auth-hint i {
  font-size: 1.75rem;
  color: var(--primary-color);
  opacity: 0.6;
}

.auth-hint p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 4px;
  background: var(--soft-ivory);
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab.active {
  background: #fff;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.auth-form-view {
  display: none;
}

.auth-form-view.active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.4rem;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft-ivory);
  border: 2px solid rgba(101, 182, 41, 0.12);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-input-wrap:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(101, 182, 41, 0.1);
  background: #fff;
}

.auth-input-wrap i {
  color: var(--primary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.auth-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 12px 0;
  color: var(--text-dark);
}

.auth-password-toggle {
  border: none;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  cursor: pointer;
}

.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.25rem;
}

.auth-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
}

.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.auth-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

/* Profile view (logged in) */
.auth-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--soft-ivory);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(101, 182, 41, 0.1);
}

.auth-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.auth-profile-info h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: var(--heritage-green);
}

.auth-profile-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.auth-profile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.auth-profile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--heritage-green);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.25s;
}

.auth-profile-link:hover {
  background: var(--accent-light);
  color: var(--primary-color);
}

.auth-profile-link i:first-child {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.auth-profile-link span {
  flex: 1;
}

.auth-profile-link .fa-chevron-right {
  font-size: 0.75rem;
  color: var(--text-light);
}

.auth-logout-form {
  margin: 0;
}

.auth-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid rgba(101, 182, 41, 0.2);
  border-radius: 50px;
  background: #fff;
  color: var(--heritage-green);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.auth-logout-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: var(--accent-light);
}

/* ==========================================
   SHOPPING CART — PREMIUM UI
   ========================================== */
.cart-drawer-overlay {
  background: rgba(29, 48, 18, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
}

.cart-drawer {
  right: -440px;
  width: 440px;
  max-width: 100%;
  background: #fff;
  border-left: 1px solid rgba(101, 182, 41, 0.12);
  box-shadow: -16px 0 48px rgba(45, 80, 22, 0.15);
  z-index: 10001;
}

.cart-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(101, 182, 41, 0.1);
  background: var(--soft-ivory);
}

.cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-drawer-title-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(101, 182, 41, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cart-drawer-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heritage-green);
  line-height: 1.2;
}

.cart-drawer-count {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  padding: 0;
}

.cart-drawer-close:hover {
  background: var(--primary-color);
  color: #fff;
  transform: none;
}

.cart-drawer-free-shipping {
  padding: 14px 20px;
  background: rgba(101, 182, 41, 0.06);
  border-bottom: 1px solid rgba(101, 182, 41, 0.1);
}

.cart-drawer-free-shipping-text {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--heritage-green);
  font-weight: 500;
}

.cart-drawer-free-shipping-text strong {
  color: var(--primary-color);
}

.cart-free-shipping-track {
  height: 6px;
  background: rgba(101, 182, 41, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

.cart-free-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50px;
  width: 0%;
  transition: width 0.4s ease;
}

.cart-drawer-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 0.75rem;
}

.cart-drawer-empty i {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.35;
}

.cart-drawer-empty h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--heritage-green);
}

.cart-drawer-empty p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cart-drawer-empty a {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.cart-drawer-empty a:hover {
  box-shadow: 0 6px 20px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
}

.cart-drawer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(101, 182, 41, 0.12);
  border-radius: 14px;
  position: relative;
  transition: box-shadow 0.25s;
}

.cart-drawer-item:hover {
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
}

.cart-drawer-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.cart-drawer-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-drawer-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heritage-green);
  line-height: 1.3;
}

.cart-drawer-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-drawer-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-drawer-item-line-total {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.cart-drawer-qty-container {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(101, 182, 41, 0.2);
  border-radius: 50px;
  overflow: hidden;
  background: var(--soft-ivory);
  width: fit-content;
}

.cart-drawer-qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--heritage-green);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-qty-btn:hover {
  background: rgba(101, 182, 41, 0.12);
}

.cart-drawer-qty-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heritage-green);
}

.cart-drawer-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.cart-drawer-remove-btn:hover {
  background: rgba(220, 53, 69, 0.15);
  transform: scale(1.05);
}

.cart-drawer-footer {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(101, 182, 41, 0.1);
  background: var(--soft-ivory);
  box-shadow: 0 -8px 24px rgba(45, 80, 22, 0.06);
}

.cart-drawer-totals {
  gap: 8px;
  margin-bottom: 16px;
}

.cart-drawer-total-row {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.cart-drawer-total-row.total-grand {
  font-size: 1.15rem;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed rgba(101, 182, 41, 0.25);
}

.cart-drawer-actions {
  gap: 8px;
}

.cart-drawer-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}

.cart-drawer-checkout-btn:hover {
  box-shadow: 0 8px 24px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.cart-drawer-checkout-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.cart-drawer-view-btn,
.cart-drawer-continue-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.cart-drawer-view-btn {
  color: var(--heritage-green);
  background: #fff;
  border: 1.5px solid rgba(101, 182, 41, 0.25);
  text-decoration: none;
}

.cart-drawer-view-btn:hover {
  background: rgba(101, 182, 41, 0.08);
  color: var(--primary-color);
}

.cart-drawer-continue-btn {
  color: var(--text-light);
  background: none;
  border: none;
}

.cart-drawer-continue-btn:hover {
  color: var(--primary-color);
}

/* Full cart page */
.page-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.cart-page-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cart-page-main-header h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--heritage-green);
}

.cart-page-item-count {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cart-free-shipping-banner {
  margin-bottom: 1.25rem;
  padding: 14px 18px;
  background: rgba(101, 182, 41, 0.06);
  border: 1px solid rgba(101, 182, 41, 0.12);
  border-radius: 14px;
}

.cart-free-shipping-banner p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--heritage-green);
  font-weight: 500;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(101, 182, 41, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}

.cart-item-card:hover {
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.08);
}

.cart-item-card-img {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-card-info h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--heritage-green);
}

.cart-item-card-unit-price {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.cart-item-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(101, 182, 41, 0.2);
  border-radius: 50px;
  overflow: hidden;
  background: var(--soft-ivory);
}

.cart-qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--heritage-green);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-qty-btn:hover {
  background: rgba(101, 182, 41, 0.12);
}

.cart-qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heritage-green);
}

.cart-item-card-total {
  text-align: right;
  min-width: 90px;
}

.cart-item-card-total .line-total {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cart-remove-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  cursor: pointer;
  transition: var(--transition);
}

.cart-remove-btn:hover {
  background: rgba(220, 53, 69, 0.15);
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border: 1px dashed rgba(101, 182, 41, 0.25);
  border-radius: 20px;
}

.cart-empty-state i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}

.cart-empty-state h3 {
  margin: 0 0 0.5rem;
  color: var(--heritage-green);
}

.cart-empty-state p {
  margin: 0 0 1.5rem;
  color: var(--text-light);
}

.cart-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cart-empty-cta:hover {
  box-shadow: 0 8px 24px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.cart-summary-card {
  background: #fff;
  border: 1px solid rgba(101, 182, 41, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.cart-summary-card h3 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(101, 182, 41, 0.1);
  font-size: 1.15rem;
  color: var(--heritage-green);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cart-summary-total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(101, 182, 41, 0.25);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-summary-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 1.25rem;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.cart-summary-checkout-btn:hover {
  box-shadow: 0 8px 24px rgba(101, 182, 41, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.cart-summary-checkout-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cart-summary-continue {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.cart-summary-continue:hover {
  color: var(--primary-color);
}

.cart-trust-strip {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(101, 182, 41, 0.06);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--heritage-green);
  font-weight: 500;
}

.cart-trust-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .search-modal-overlay {
    padding: 80px 12px 20px;
  }

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

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  .cart-item-card {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .cart-item-card-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-top: 8px;
    border-top: 1px solid rgba(101, 182, 41, 0.1);
  }

  .cart-item-card-total .line-total {
    margin-bottom: 0;
  }
}

/* ==========================================
   FMCG PREMIUM HERO — Full-Width Slider
   ========================================== */
@keyframes fmcgFloatY {

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

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

@keyframes fmcgFloatRotate {

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

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

@keyframes fmcgPulseGlow {

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

  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.fmcg-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--warm-cream);
}

.fmcg-hero-swiper {
  width: 100%;
  padding-top: 118px;
  position: relative;
}

.fmcg-hero-swiper .swiper-slide {
  height: auto;
}

.fmcg-hero-slide {
  position: relative;
  min-height: clamp(520px, 72vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fmcg-hero-slide--fullscreen {
  min-height: clamp(360px, 48vh, 500px);
  height: 100%;
}

.fmcg-hero-slide-bg--image {
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.fmcg-hero-slide--fullscreen .fmcg-hero-slide-bg--image {
  background-size: cover;
  background-position: center center;
}

.fmcg-hero-slide--image-only {
  min-height: 0;
  height: auto;
  display: block;
  overflow: visible;
  background: #f9f7f2;
}

.fmcg-hero-slide--image-only.fmcg-hero-slide--fullscreen {
  min-height: 0;
  height: auto;
}

.fmcg-hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
}

.fmcg-hero-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(249, 247, 242, 0.97) 0%,
      rgba(249, 247, 242, 0.88) 38%,
      rgba(249, 247, 242, 0.35) 62%,
      transparent 78%);
  pointer-events: none;
}

.fmcg-hero-fullscreen-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 48vh, 500px);
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem) 20px clamp(3.5rem, 5vw, 4.5rem);
}

.fmcg-hero-content--heritage {
  max-width: 560px;
  width: 100%;
}

.fmcg-heritage-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #4a5f78;
}

.fmcg-diamond-rule {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8a9bb0 40%, #8a9bb0 60%, transparent);
  position: relative;
}

.fmcg-diamond-rule::before,
.fmcg-diamond-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #8a9bb0;
  transform: translateY(-50%) rotate(45deg);
}

.fmcg-diamond-rule::before {
  left: 0;
}

.fmcg-diamond-rule::after {
  right: 0;
}

.fmcg-diamond-rule--short {
  max-width: 42px;
}

.fmcg-diamond-rule--gold {
  background: linear-gradient(90deg, transparent, #c9a227 40%, #c9a227 60%, transparent);
}

.fmcg-diamond-rule--gold::before,
.fmcg-diamond-rule--gold::after {
  background: #c9a227;
}

.fmcg-hero-headline--heritage {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0 0 0.85rem;
  text-shadow: none;
  line-height: 1.05;
}

.fmcg-headline-navy {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: #1a3c5e;
  letter-spacing: -0.02em;
}

.fmcg-headline-green {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: #2d5a27;
  letter-spacing: -0.02em;
}

.fmcg-hero-loved {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 600;
  color: #8b4a32;
}

.fmcg-hero-subtext--heritage {
  color: #4a5568;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.fmcg-hero-feature-icons {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fmcg-hero-feature-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.fmcg-hero-feature-icons span:last-child {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2d5a27;
}

.fmcg-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 90, 39, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d5a27;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.55);
}

.fmcg-btn--shop {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.82rem;
  padding: 14px 22px 14px 26px;
  gap: 14px;
}

.fmcg-btn-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #2d5a27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.fmcg-btn--outline-green {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.78rem;
  color: #2d5a27 !important;
  border-color: #2d5a27 !important;
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fmcg-btn--outline-green:hover {
  background: rgba(45, 90, 39, 0.08) !important;
}

.fmcg-hero-slide--fullscreen .fmcg-hero-slide--heritage .fmcg-btn--primary,
.fmcg-hero-slide--heritage.fmcg-hero-slide--fullscreen .fmcg-btn--primary {
  background: #2d5a27;
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.28);
}

.fmcg-hero-slide--heritage.fmcg-hero-slide--fullscreen .fmcg-btn--primary:hover {
  background: #3a7332;
}

.fmcg-hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fmcg-hero-slide--heritage .fmcg-hero-slide-bg {
  background:
    radial-gradient(ellipse 65% 75% at 88% 45%, rgba(197, 160, 89, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 75%, rgba(101, 182, 41, 0.08), transparent 50%),
    linear-gradient(160deg, #faf6ee 0%, #f5efe0 45%, #ede4d0 100%);
}

.fmcg-hero-slide--bestseller .fmcg-hero-slide-bg {
  background:
    radial-gradient(ellipse 60% 70% at 85% 35%, rgba(255, 215, 0, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(255, 180, 80, 0.15), transparent 50%),
    linear-gradient(135deg, #6b0f0f 0%, #9b1c1c 35%, #c42b2b 70%, #8b1a1a 100%);
}

.fmcg-hero-slide--gift .fmcg-hero-slide-bg {
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(232, 196, 92, 0.25), transparent 55%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(255, 220, 160, 0.1), transparent 50%),
    linear-gradient(135deg, #2d1810 0%, #4a2e1a 35%, #6b4428 70%, #5c3d24 100%);
}

.fmcg-hero-slide--healthy .fmcg-hero-slide-bg {
  background:
    radial-gradient(ellipse 65% 75% at 82% 40%, rgba(144, 238, 144, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 60% at 12% 75%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(135deg, #1a3d12 0%, #2d5a1e 40%, #3d7a28 75%, #2a5520 100%);
}

.fmcg-hero-pattern--gujarati {
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(45deg, #8b6914 0, #8b6914 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, #8b6914 0, #8b6914 1px, transparent 1px, transparent 12px),
    radial-gradient(circle at 25% 25%, #c9a227 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, #c9a227 2px, transparent 2px);
  background-size: 24px 24px, 24px 24px, 48px 48px, 48px 48px;
}

.fmcg-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
}

.fmcg-hero-ingredient {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: fmcgPulseGlow 5s ease-in-out infinite;
}

.fmcg-hero-ingredient--1 {
  width: 180px;
  height: 180px;
  background: rgba(201, 162, 39, 0.25);
  top: 15%;
  right: 8%;
}

.fmcg-hero-ingredient--2 {
  width: 120px;
  height: 120px;
  background: rgba(101, 182, 41, 0.2);
  bottom: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

.fmcg-hero-ingredient--3 {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.4);
  top: 10%;
  right: 12%;
}

.fmcg-hero-ingredient--4 {
  width: 140px;
  height: 140px;
  background: rgba(232, 196, 92, 0.35);
  bottom: 15%;
  right: 10%;
}

.fmcg-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 20px clamp(4rem, 6vw, 5rem);
}

.fmcg-hero-content {
  max-width: 560px;
}

.fmcg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fmcg-hero-slide--heritage .fmcg-hero-eyebrow {
  background: rgba(61, 34, 20, 0.08);
  border-color: rgba(139, 105, 20, 0.25);
  color: #5c3d24;
}

.fmcg-hero-slide--bestseller .fmcg-hero-eyebrow,
.fmcg-hero-slide--gift .fmcg-hero-eyebrow,
.fmcg-hero-slide--healthy .fmcg-hero-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.fmcg-hero-slide--heritage .fmcg-hero-headline {
  color: #2d1a0a;
  text-shadow: none;
}

.fmcg-hero-slide--heritage .fmcg-hero-headline span {
  background: linear-gradient(135deg, #8b6914, #c9a227);
  -webkit-background-clip: text;
  background-clip: text;
}

.fmcg-hero-slide--bestseller .fmcg-hero-headline span {
  background: linear-gradient(135deg, #ffe566, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
}

.fmcg-hero-slide--gift .fmcg-hero-headline span {
  background: linear-gradient(135deg, #e8c45c, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
}

.fmcg-hero-slide--healthy .fmcg-hero-headline span {
  background: linear-gradient(135deg, #a8e063, #7ec850);
  -webkit-background-clip: text;
  background-clip: text;
}

.fmcg-hero-subtext {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.fmcg-hero-slide--heritage .fmcg-hero-subtext {
  color: rgba(45, 26, 10, 0.82);
}

.fmcg-hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 8px;
}

.fmcg-hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(45, 26, 10, 0.88);
}

.fmcg-hero-trust-list i {
  color: var(--primary-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.fmcg-hero-packages {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fmcg-hero-packages li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 90px;
}

.fmcg-package-packs {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.fmcg-package-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffd700;
  font-family: 'Playfair Display', Georgia, serif;
}

.fmcg-hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.fmcg-hero-headline span {
  display: inline-block;
  background: linear-gradient(135deg, #ffe566, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}


.fmcg-hero-offers {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}

.fmcg-hero-offers li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(45, 26, 10, 0.9);
  margin-bottom: 8px;
}

.fmcg-hero-offers i {
  color: #c42b2b;
  font-size: 0.85rem;
}

.fmcg-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fmcg-hero-slide--heritage .fmcg-hero-cta {
  position: relative;
  z-index: 6;
  margin-bottom: -26px;
}

.fmcg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.fmcg-hero-slide--heritage .fmcg-btn--primary {
  background: var(--heritage-green);
  color: #fff;
  box-shadow: 0 8px 28px rgba(45, 80, 22, 0.25);
}

.fmcg-hero-slide--heritage .fmcg-btn--primary:hover {
  background: #4a9a22;
  box-shadow: 0 12px 36px rgba(101, 182, 41, 0.4);
}

.fmcg-hero-slide--heritage .fmcg-btn--ghost {
  color: #3d2214;
  border-color: rgba(61, 34, 20, 0.35);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fmcg-hero-slide--heritage .fmcg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: #3d2214;
}

.fmcg-btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--heritage-green);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fmcg-btn--primary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(101, 182, 41, 0.4);
}

.fmcg-hero-slide--bestseller .fmcg-btn--primary {
  background: linear-gradient(135deg, #ffd700, #e8c45c);
  color: #5c1010;
}

.fmcg-hero-slide--bestseller .fmcg-btn--primary:hover {
  background: #fff;
  color: #8b1a1a;
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.45);
}

.fmcg-hero-slide--gift .fmcg-btn--primary {
  background: linear-gradient(135deg, #e8c45c, #ffd700);
  color: #3d2214;
}

.fmcg-hero-slide--gift .fmcg-btn--primary:hover {
  background: #fff;
  box-shadow: 0 12px 36px rgba(232, 196, 92, 0.45);
}

.fmcg-hero-slide--healthy .fmcg-btn--primary:hover {
  background: #fff;
  color: var(--heritage-green);
}

.fmcg-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fmcg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

.fmcg-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fmcg-product-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(300px, 42vw, 420px);
  margin: 0 auto;
}

.fmcg-spotlight {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  z-index: 0;
  animation: fmcgPulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.fmcg-float-product {
  position: absolute;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.fmcg-product-showcase:hover .fmcg-float-product--main {
  transform: scale(1.03) translateY(-6px);
}

.fmcg-float-product--main {
  width: 72%;
  left: 14%;
  top: 8%;
  z-index: 3;
  animation: fmcgFloatY 4.5s ease-in-out infinite;
}

.fmcg-float-product--s1 {
  width: 26%;
  left: 0;
  bottom: 8%;
  z-index: 4;
  animation: fmcgFloatRotate 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.fmcg-float-product--s2 {
  width: 24%;
  right: 0;
  top: 12%;
  z-index: 4;
  animation: fmcgFloatRotate 4.8s ease-in-out infinite reverse;
  animation-delay: 1s;
}

.fmcg-float-product--s3 {
  width: 22%;
  right: 5%;
  bottom: 5%;
  z-index: 2;
  animation: fmcgFloatY 5.2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.fmcg-product-showcase--fan {
  height: clamp(320px, 44vw, 440px);
}

.fmcg-float-product--fan1 {
  width: 32%;
  left: 5%;
  top: 25%;
  transform: rotate(-12deg);
  animation: fmcgFloatRotate 5s ease-in-out infinite;
}

.fmcg-float-product--fan2 {
  width: 34%;
  left: 28%;
  top: 5%;
  z-index: 4;
  animation: fmcgFloatY 4.5s ease-in-out infinite;
}

.fmcg-float-product--fan3 {
  width: 32%;
  right: 8%;
  top: 20%;
  transform: rotate(10deg);
  animation: fmcgFloatRotate 5.5s ease-in-out infinite reverse;
}

.fmcg-float-product--fan4 {
  width: 28%;
  left: 35%;
  bottom: 5%;
  z-index: 5;
  animation: fmcgFloatY 4.8s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* 6-Product Gallery Showcase */
.fmcg-product-showcase--gallery {
  height: clamp(340px, 46vw, 460px);
  max-width: 560px;
}

.fmcg-float-product--g1 {
  width: 22%;
  left: 2%;
  top: 18%;
  transform: rotate(-8deg);
  animation: fmcgFloatRotate 5.2s ease-in-out infinite;
  z-index: 4;
}

.fmcg-float-product--g2 {
  width: 20%;
  left: 18%;
  bottom: 12%;
  transform: rotate(6deg);
  animation: fmcgFloatY 4.8s ease-in-out infinite;
  animation-delay: 0.4s;
  z-index: 3;
}

.fmcg-float-product--g3 {
  width: 38%;
  left: 30%;
  top: 5%;
  z-index: 5;
  animation: fmcgFloatY 4.5s ease-in-out infinite;
  animation-delay: 0.2s;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.fmcg-float-product--g4 {
  width: 20%;
  right: 18%;
  top: 15%;
  transform: rotate(10deg);
  animation: fmcgFloatRotate 5s ease-in-out infinite reverse;
  animation-delay: 0.6s;
  z-index: 4;
}

.fmcg-float-product--g5 {
  width: 19%;
  right: 2%;
  bottom: 18%;
  transform: rotate(-5deg);
  animation: fmcgFloatY 5.4s ease-in-out infinite;
  animation-delay: 0.8s;
  z-index: 3;
}

.fmcg-float-product--g6 {
  width: 22%;
  right: 8%;
  top: 42%;
  transform: rotate(4deg);
  animation: fmcgFloatRotate 4.6s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 6;
}

.fmcg-product-tag {
  position: absolute;
  z-index: 10;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.88);
  color: #3d2214;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  pointer-events: none;
}

.fmcg-product-tag--g1 {
  left: 0;
  top: 8%;
}

.fmcg-product-tag--g2 {
  left: 14%;
  bottom: 4%;
}

.fmcg-product-tag--g3 {
  left: 42%;
  top: 0;
}

.fmcg-product-tag--g4 {
  right: 14%;
  top: 8%;
}

.fmcg-product-tag--g5 {
  right: 0;
  bottom: 10%;
}

.fmcg-product-tag--g6 {
  right: 4%;
  top: 36%;
}

.fmcg-hero-slide--heritage .fmcg-spotlight {
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.fmcg-hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fmcg-hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.fmcg-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
  transform: scale(1.08);
}

.fmcg-hero-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  gap: 8px;
}

.fmcg-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.fmcg-hero-pagination .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 999px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.fmcg-hero-swiper:has(.swiper-slide-active.fmcg-hero-slide--fullscreen) .fmcg-hero-arrow {
  border-color: rgba(45, 90, 39, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: #2d5a27;
}

.fmcg-hero-swiper:has(.swiper-slide-active.fmcg-hero-slide--fullscreen) .fmcg-hero-pagination .swiper-pagination-bullet {
  background: rgba(45, 90, 39, 0.25);
  border-color: rgba(45, 90, 39, 0.2);
}

.fmcg-hero-swiper:has(.swiper-slide-active.fmcg-hero-slide--fullscreen) .fmcg-hero-pagination .swiper-pagination-bullet-active {
  background: #2d5a27;
  border-color: #2d5a27;
}

.fmcg-hero-wave {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: var(--warm-cream);
  line-height: 0;
}

.fmcg-hero-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* Heritage Trust Section — responsive design images */
.trust-section {
  position: relative;
  width: 100%;
  background: #146b2e;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.trust-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.trust-section__frame {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
}

.trust-section__frame picture {
  display: block;
  width: 100%;
}

.trust-section__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* Legacy aliases — keep for cached references */
.fmcg-hero-trust {
  --fmcg-trust-green: #1f5b2c;
  --fmcg-trust-cream: #fffdf8;
  position: relative;
  background: var(--fmcg-trust-green);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.fmcg-trust-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, #c5a059 0, #c5a059 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(-45deg, #c5a059 0, #c5a059 1px, transparent 1px, transparent 14px);
  background-size: 28px 28px;
}

.fmcg-hero-trust .container {
  position: relative;
  z-index: 1;
}

.fmcg-trust-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fmcg-trust-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.75rem);
  margin: 0;
}

.fmcg-trust-title-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.68rem, 1.35vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}

.fmcg-trust-title-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--premium-gold) 35%, var(--premium-gold) 65%, transparent);
}

.fmcg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: stretch;
}

.fmcg-trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background: var(--fmcg-trust-cream);
  border-radius: 20px;
  padding: 32px 28px 44px;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow:
    0 4px 24px rgba(15, 40, 20, 0.1),
    0 1px 3px rgba(15, 40, 20, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.fmcg-trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
  opacity: 0.7;
  transition: opacity 0.4s ease, width 0.4s ease;
}

.fmcg-trust-card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 160, 89, 0.55);
  box-shadow:
    0 20px 48px rgba(15, 40, 20, 0.16),
    0 8px 20px rgba(15, 40, 20, 0.08);
}

.fmcg-trust-card:hover::before {
  opacity: 1;
  width: 72%;
}

.fmcg-trust-card-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(45deg, #1f5b2c 0, #1f5b2c 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, #c5a059 0, #c5a059 1px, transparent 1px, transparent 10px),
    radial-gradient(circle at 30% 30%, #c5a059 1.5px, transparent 1.5px);
  background-size: 20px 20px, 20px 20px, 40px 40px;
}

.fmcg-trust-card-corner--tl {
  top: 0;
  left: 0;
  border-radius: 20px 0 0 0;
}

.fmcg-trust-card-corner--br {
  bottom: 0;
  right: 0;
  border-radius: 0 0 20px 0;
  transform: rotate(180deg);
}

.fmcg-trust-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fmcg-trust-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fmcg-trust-green);
  color: #fff;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(31, 91, 44, 0.28);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.fmcg-trust-card:hover .fmcg-trust-card-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(31, 91, 44, 0.35);
}

.fmcg-trust-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.72rem, 1.1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fmcg-trust-green);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.fmcg-trust-card p {
  font-size: clamp(0.84rem, 1vw, 0.9rem);
  line-height: 1.65;
  color: #5a6472;
  margin: 0;
  max-width: 22ch;
}

.fmcg-trust-card-snacks {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--fmcg-trust-green);
  opacity: 0.14;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fmcg-trust-card:hover .fmcg-trust-card-snacks {
  opacity: 0.22;
}

/* Premium Brand Story — full-width banner between New Arrivals & Best Sellers */
.premium-brand-story {
  position: relative;
  width: 100%;
  background: var(--warm-cream);
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.premium-brand-story__frame {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.premium-brand-story__link {
  display: block;
  line-height: 0;
}

.premium-brand-story__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 767px) {
  .best-selling-section:has(+ .premium-brand-story) {
    padding-bottom: 16px;
  }

  .premium-brand-story+.best-selling-section {
    padding-top: 16px;
  }

  .premium-brand-story {
    margin: 0;
    padding: 0;
  }

  .premium-brand-story__frame,
  .premium-brand-story__link {
    margin: 0;
    padding: 0;
  }

  .best-selling-section.new-arrivals-section:has(+ .our-promise-section) {
    padding-bottom: 16px;
  }

  .our-promise-section {
    padding: 24px 0 32px;
  }

  .our-promise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .our-promise-text {
    max-width: none;
    margin: 0 auto;
  }

  .our-promise-logo {
    max-width: 190px;
  }
}

/* Heritage Stats Bar — design image */
.fmcg-stats-bar {
  position: relative;
  width: 100%;
  background: var(--warm-cream);
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.fmcg-stats-bar__frame {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.fmcg-stats-bar__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* Legacy grid styles — kept for reference */
.fmcg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.fmcg-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(45, 90, 39, 0.15);
}

.fmcg-stat-item:last-child {
  border-right: none;
}

.fmcg-stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.fmcg-stat-copy strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a3c5e;
  line-height: 1.25;
}

.fmcg-stat-copy span {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  color: #5a6472;
  line-height: 1.3;
}

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

  .fmcg-trust-title-line {
    max-width: 80px;
  }

  .fmcg-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fmcg-stat-item {
    border-right: none;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 991px) {
  .fmcg-hero {
    min-height: auto;
  }

  .fmcg-hero-swiper {
    padding-top: 100px;
    flex: none;
  }

  .homepage-body .fmcg-hero-swiper {
    padding-top: 0;
  }

  .fmcg-hero-slide--fullscreen:not(.fmcg-hero-slide--image-only),
  .fmcg-hero-fullscreen-wrap {
    min-height: clamp(340px, 52vh, 460px);
    height: auto;
  }

  .fmcg-hero-slide--image-only.fmcg-hero-slide--fullscreen {
    min-height: 0;
    height: auto;
  }

  .fmcg-hero-slide-shade {
    background: linear-gradient(180deg,
        rgba(249, 247, 242, 0.95) 0%,
        rgba(249, 247, 242, 0.82) 55%,
        rgba(249, 247, 242, 0.45) 100%);
  }

  .fmcg-hero-fullscreen-wrap {
    align-items: flex-end;
    padding-bottom: 5.5rem;
  }

  .fmcg-hero-content--heritage {
    max-width: 100%;
    text-align: center;
  }

  .fmcg-heritage-eyebrow,
  .fmcg-hero-loved {
    justify-content: center;
  }

  .fmcg-hero-subtext--heritage {
    margin-left: auto;
    margin-right: auto;
  }

  .fmcg-hero-feature-icons {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .fmcg-hero-slide-bg--image {
    background-position: center 30%;
  }

  .fmcg-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 5rem;
  }

  .fmcg-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .fmcg-hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .fmcg-hero-cta {
    justify-content: center;
  }

  .fmcg-hero-offers,
  .fmcg-hero-trust-list {
    display: inline-block;
    text-align: left;
  }

  .fmcg-hero-packages {
    justify-content: center;
  }

  .fmcg-product-showcase--gallery {
    max-width: 380px;
    height: 300px;
  }

  .fmcg-hero-arrow {
    display: none;
  }

  .fmcg-product-showcase {
    max-width: 400px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  .fmcg-hero-slide:not(.fmcg-hero-slide--fullscreen) {
    min-height: auto;
  }

  .fmcg-trust-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .fmcg-trust-title {
    flex-direction: column;
    gap: 0.75rem;
  }

  .fmcg-trust-title-line {
    max-width: 120px;
    width: 50%;
  }

  .fmcg-trust-title-text {
    letter-spacing: 0.14em;
  }

  .fmcg-trust-card {
    padding: 28px 24px 40px;
  }

  .fmcg-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .fmcg-stat-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
    padding: 0.85rem 1rem;
  }

  .fmcg-hero-feature-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fmcg-product-showcase {
    height: 240px;
  }

  .fmcg-product-showcase--gallery {
    height: 260px;
    max-width: 320px;
  }

  .fmcg-product-tag {
    font-size: 0.55rem;
    padding: 3px 7px;
  }

  .fmcg-float-product--g1,
  .fmcg-float-product--g2,
  .fmcg-float-product--g4,
  .fmcg-float-product--g5,
  .fmcg-float-product--g6 {
    width: 18%;
  }

  .fmcg-float-product--g3 {
    width: 34%;
  }

  .fmcg-float-product--s1,
  .fmcg-float-product--s2,
  .fmcg-float-product--s3 {
    width: 22%;
  }
}

.homepage-body .header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.homepage-body .fmcg-hero:has(.fmcg-hero-slide--image-only) {
  background: transparent;
  line-height: 0;
}

.homepage-body .fmcg-hero-swiper:has(.fmcg-hero-slide--image-only) {
  padding-top: 0;
  min-height: 0;
  height: auto;
}

.homepage-body .fmcg-hero-swiper:has(.fmcg-hero-slide--image-only) .swiper-wrapper,
.homepage-body .fmcg-hero-swiper:has(.fmcg-hero-slide--image-only) .swiper-slide,
.homepage-body .fmcg-hero-swiper:has(.fmcg-hero-slide--image-only) .fmcg-hero-slide--image-only {
  min-height: 0 !important;
}

.homepage-body .fmcg-hero-slide--image-only.fmcg-hero-slide--fullscreen {
  aspect-ratio: 1983 / 793;
  width: 100%;
  background: transparent;
}

.homepage-body .fmcg-hero-slide--image-only .fmcg-hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.homepage-body .fmcg-hero-swiper:has(.fmcg-hero-slide--image-only) .fmcg-hero-controls {
  bottom: 18px;
}

.homepage-body .fmcg-hero+#trust-section-root,
#trust-section-root {
  margin-top: 0;
  padding-top: 0;
}

/* ==========================================
   NAV DROPDOWN (Shop / Products)
   ========================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-icon {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-icon,
.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
  border: 1px solid rgba(101, 182, 41, 0.12);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--heritage-green);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
  background: rgba(101, 182, 41, 0.1);
  color: var(--primary-color);
}

/* Mega Menu Style (Horizontal category dropdowns with images) */
@media (min-width: 993px) {
  .nav-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-dropdown-mega {
    position: static !important;
  }

  .nav-dropdown-menu.mega-menu {
    width: 95vw;
    max-width: 1000px;
    position: absolute !important;
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%) translateY(15px) !important;

    /* Premium Glassmorphism */
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow:
      0 24px 60px rgba(45, 80, 22, 0.15),
      inset 0 1px 1px rgba(255, 255, 255, 0.7) !important;

    padding: 1.25rem 1.75rem;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem 0.5rem;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s;
    z-index: 1000;
  }

  .nav-dropdown-menu.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
  }

  .nav-dropdown:hover .nav-dropdown-menu.mega-menu,
  .nav-dropdown.open .nav-dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
  }

  .nav-dropdown-menu.mega-menu.gifting-menu {
    max-width: 720px;
    grid-template-columns: repeat(5, 1fr);
  }

  .mega-menu-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0.75rem 0.5rem !important;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  }

  .mega-menu-item:hover {
    background: rgba(101, 182, 41, 0.08) !important;
    transform: translateY(-4px);
  }

  .mega-menu-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.65rem;
    border: 2px solid rgba(101, 182, 41, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }

  .mega-menu-item:hover .mega-menu-img-wrap {
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(101, 182, 41, 0.25);
  }

  .mega-menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .mega-menu-item:hover .mega-menu-img-wrap img {
    transform: scale(1.08);
  }

  .mega-menu-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--heritage-green);
    transition: color 0.3s ease;
    line-height: 1.2;
    word-break: break-word;
    display: block;
    margin-top: auto;
  }

  .mega-menu-item:hover .mega-menu-title {
    color: var(--primary-color);
  }
}

/* Mega Menu Responsive Style */
@media (max-width: 992px) {
  .nav-dropdown-menu.mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0.75rem 0.5rem;
    display: none;
    background: transparent;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .nav-dropdown.open .nav-dropdown-menu.mega-menu {
    display: grid;
  }

  .mega-menu-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0.5rem 0.25rem !important;
    text-decoration: none;
    border-radius: 10px;
    background: rgba(101, 182, 41, 0.03);
    border: 1px solid rgba(101, 182, 41, 0.08);
  }

  .mega-menu-img-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(101, 182, 41, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mega-menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mega-menu-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--heritage-green);
    line-height: 1.2;
    display: block;
  }
}

@media (max-width: 480px) {
  .nav-dropdown-menu.mega-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   GALLERIA / GALLERY PAGE
   ========================================== */
.galleria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.galleria-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.galleria-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.galleria-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galleria-item:hover .galleria-image-wrap img {
  transform: scale(1.06);
}

.galleria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 50, 15, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.galleria-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.galleria-overlay h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-content h3 {
  color: var(--heritage-green);
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-content h4 {
  color: var(--heritage-green);
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary-color);
}

/* ==========================================
   ABOUT US SUB-PAGES (cards on About page)
   ========================================== */
.about-subpages-section {
  background: var(--warm-cream);
}

.about-subpages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-subpage-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(101, 182, 41, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-subpage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(101, 182, 41, 0.25);
}

.about-subpage-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(101, 182, 41, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.about-subpage-card h3 {
  font-size: 1.15rem;
  color: var(--heritage-green);
  margin: 0 0 0.75rem;
}

.about-subpage-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  flex: 1;
}

.about-subpage-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-subpage-card:hover .about-subpage-link i {
  transform: translateX(4px);
}

.about-subpage-link i {
  transition: transform 0.2s ease;
}

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

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

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
    background: transparent;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-item {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }

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

/* Infinite Marquee Announcement Bar */
.marquee-announcement-bar {
  background: var(--secondary-color);
  /* Deep Olive Green */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2.5px solid var(--premium-gold);
  /* Gold Accent Line */
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.marquee-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-icon {
  color: var(--premium-gold);
  /* Brand Gold */
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* Align Best Sellers & New Arrivals headings with Explore Our Products heading style */
.best-selling-section .best-selling-header {
  max-width: 1320px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  text-align: left;
  box-sizing: border-box;
}

.best-selling-section .best-selling-eyebrow {
  display: none !important;
}

.best-selling-section .best-selling-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  font-weight: 700 !important;
  color: var(--sf-green-deep, #2d5016) !important;
  line-height: 1.2 !important;
  letter-spacing: normal !important;
  margin: 0 !important;
  text-align: left !important;
  text-transform: none !important;
}

@media (max-width: 767px) {
  .best-selling-section .best-selling-header {
    padding: 0 16px;
    margin-bottom: 20px;
  }
}

/* Card UI and Grid overrides for Best Sellers Section ONLY */
@media (min-width: 1200px) {
  .best-sellers-section .best-selling-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.best-sellers-section .best-selling-card {
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.best-sellers-section .best-selling-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: none !important;
}

.best-sellers-section .best-selling-card__image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
  display: block !important;
  border-radius: 12px !important;
}

.best-sellers-section .best-selling-card__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: opacity 0.3s ease, transform 0.5s ease !important;
}

.best-sellers-section .best-selling-card__image-media {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: transparent !important;
}

.best-sellers-section .best-selling-card:hover .best-selling-card__image img {
  transform: scale(1.05) !important;
}

.best-sellers-section .best-selling-card__body {
  background: transparent !important;
  padding: 12px 0 0 !important;
}

.best-sellers-section .best-selling-card__media-wrapper {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

.best-sellers-section .best-selling-card__hover-buttons {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.best-sellers-section .best-selling-card:hover .best-selling-card__hover-buttons {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers-section .best-selling-btn-quickview,
.best-sellers-section .best-selling-btn-quickshop {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 50px !important;
  padding: 8px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.best-sellers-section .best-selling-btn-quickview:hover,
.best-sellers-section .best-selling-btn-quickshop:hover {
  background: var(--sf-green-deep, #2d5016) !important;
  color: #ffffff !important;
  border-color: var(--sf-green-deep, #2d5016) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(45, 80, 22, 0.15) !important;
}

/* Quick View Modal Styles */
.quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quickview-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.quickview-modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
  animation: qvModalIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes qvModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quickview-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 12;
}

.quickview-modal-close:hover {
  background: #e5e7eb;
  color: #111111;
}

.quickview-modal-body {
  padding: 32px;
}

.quickview-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.quickview-modal-image-col {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-modal-image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quickview-modal-details-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quickview-modal-details-col h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.quickview-modal-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.quickview-modal-pricing .qv-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #e11d48;
}

.quickview-modal-pricing .qv-old-price {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

#qvProductDesc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qv-variants-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.qv-variant-btn {
  border: 1.5px solid var(--card-theme, #285a38);
  background: #fff;
  color: var(--card-theme, #285a38);
  border-radius: 8px;
  padding: 6px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.qv-variant-btn.is-active {
  background: var(--card-theme, #285a38);
  color: #fff;
}

.qv-add-to-cart-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 30px;
  background: var(--card-theme, #285a38);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.25s ease;
}

.qv-add-to-cart-btn:hover {
  filter: brightness(0.9);
}

@media (max-width: 767px) {
  .quickview-modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quickview-modal-body {
    padding: 24px;
  }
}

/* Remove weight variants selector and center align title and price for Best Sellers */
.best-sellers-section .best-selling-card__variants {
  display: none !important;
}

.best-sellers-section .best-selling-card__body {
  align-items: center !important;
  text-align: center !important;
}

.best-sellers-section .best-selling-card__name {
  text-align: center !important;
}

.best-sellers-section .best-selling-card__pricing {
  justify-content: center !important;
}