/* ============================================================
   INDEX.CSS — Khajurbhai Singtel Home Page
   Redesigned for: warmth, clarity, mobile-first, accessibility
   All original class names preserved for JS compatibility.
   Requires: variables.css loaded first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,500;1,700&family=Jost:wght@300;400;500;600&display=swap');

/* ── Eyebrow label (shared across sections) ───────────────── */
.products-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-red, #DA3F3F);
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════
   BANNER
════════════════════════════════════════════════════════════ */
.banner {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Slide crossfade */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slide-cycle 12s linear infinite;
  will-change: opacity, transform;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes slide-cycle {
  0%   { opacity: 0; transform: scale(1.04); }
  8%   { opacity: 1; transform: scale(1); }
  33%  { opacity: 1; transform: scale(1.02); }
  42%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

/* Dark gradient overlay */
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 2, 0.75) 0%,
    rgba(10, 6, 2, 0.45) 40%,
    rgba(10, 6, 2, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Banner content */
.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 60px;
  max-width: 580px;
  animation: bannerFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both 0.3s;
}
@keyframes bannerFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.banner-eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold-light, #e8b860);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(232, 184, 96, 0.4);
  border-radius: 100px;
  background: rgba(232, 184, 96, 0.1);
  backdrop-filter: blur(4px);
}

.banner h2 {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: clamp(1.75rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.banner p {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* CTA row */
.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--brand-gold, #C9973A);
  color: #fff;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm, 6px);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,151,58,0.4);
}
.banner-btn:hover {
  background: var(--brand-gold-light, #e8b860);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,151,58,0.45);
}
.banner-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.banner-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm, 6px);
  letter-spacing: 0.04em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.banner-btn-ghost:hover { background: rgba(255,255,255,0.2); }
.banner-btn-ghost:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Trust chips on banner */
.banner-trust {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.btrust-chip {
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity: 0; transform: translateY(-8px); }
  50%      { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════════════════ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border-color, #E8E0D4);
}
/* grid lines via gap+background trick */
.benefits {
  gap: 1px;
}

.benefit-item {
  background: var(--bg-surface, #fff);
  padding: 36px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--duration-base, 250ms);
}
.benefit-item:hover {
  background: var(--bg-surface-2, #F5F2EC);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--brand-cream, #FDF8F0);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--border-color, #E8E0D4);
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefit-text h2 {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #1A1208);
  margin-bottom: 5px;
  line-height: 1.35;
}
.benefit-text p {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted, #8C7D6B);
}

/* ════════════════════════════════════════════════════════════
   CATEGORY TILES
════════════════════════════════════════════════════════════ */
.cat-tiles-section {
  padding: 56px 40px;
}
.cat-tiles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 32px 20px 24px;
  border-radius: var(--radius-xl, 24px);
  text-decoration: none;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.cat-tile:focus-visible {
  outline: 2px solid var(--brand-red, #DA3F3F);
  outline-offset: 3px;
}

.ct-oil    { background: linear-gradient(145deg, #FFF8E1, #FDEBD0); border-color: #F5C89A; }
.ct-masala { background: linear-gradient(145deg, #FBE9E7, #FFCCBC); border-color: #FFAB91; }
.ct-tea    { background: linear-gradient(145deg, #E8F5E9, #C8E6C9); border-color: #A5D6A7; }
.ct-spice  { background: linear-gradient(145deg, #FFF3E0, #FFE0B2); border-color: #FFCC80; }

.ct-emoji {
  font-size: 52px;
  line-height: 1;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}
.cat-tile:hover .ct-emoji { transform: scale(1.1) rotate(-4deg); }

.ct-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary, #1A1208);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════════════════════ */
#products {
  padding: 64px 0 56px;
}

.products-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.products-header .section-title {
  font-family: var(--font-display, 'Playfair Display', serif);
}

/* .combines — populated by functionality.js */
.combines {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 40px;
}

/* ── Product Card ─────────────────────────────────────────── */
.product {
  background: var(--bg-card, #fff);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--border-color, #E8E0D4);
  transition: transform var(--duration-base, 250ms), box-shadow var(--duration-base, 250ms);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(26,18,8,0.14));
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Image */
.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-surface-2, #F5F2EC);
}
.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-surface-2, #F5F2EC);
}
.product-image img,
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow, 400ms);
  display: block;
}
.product:hover .product-image-wrap img,
.product:hover .product-image img {
  transform: scale(1.05);
}

/* Discount badge */
.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-red, #DA3F3F);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill, 999px);
  z-index: 3;
  letter-spacing: 0.04em;
}

/* Wishlist button */
.card-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-color, #E8E0D4);
  border-radius: var(--radius-pill, 999px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 150ms;
  color: var(--text-muted, #8C7D6B);
  backdrop-filter: blur(4px);
}
.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  background: #FEE2E2;
  border-color: var(--brand-red, #DA3F3F);
  color: var(--brand-red, #DA3F3F);
  transform: scale(1.1);
}
.card-wishlist-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.card-wishlist-btn.active svg { fill: var(--brand-red, #DA3F3F); }
.card-wishlist-btn:focus-visible {
  outline: 2px solid var(--brand-red, #DA3F3F);
  outline-offset: 2px;
}

/* Card body */
.product-info {
  padding: 12px 12px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name,
.product h3 {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1A1208);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.discounted-price {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary, #1A1208);
}
.original-price {
  font-size: 12px;
  color: var(--text-muted, #8C7D6B);
  text-decoration: line-through;
}
.savings-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--success, #2E7D32);
  background: #E8F5E9;
  padding: 2px 6px;
  border-radius: var(--radius-pill, 999px);
}

/* Add to cart button */
.card-add-btn {
  margin: 10px 12px 12px;
  width: calc(100% - 24px);
  padding: 10px;
  background: var(--btn-primary-bg, #1A1208);
  color: var(--btn-primary-text, #fff);
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--duration-base, 250ms), transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  touch-action: manipulation;
}
.card-add-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.card-add-btn:hover {
  background: var(--brand-red, #DA3F3F);
  transform: translateY(-1px);
}
.card-add-btn:active { transform: none; }
.card-add-btn.adding { opacity: 0.75; pointer-events: none; }
.card-add-btn:focus-visible {
  outline: 2px solid var(--brand-red, #DA3F3F);
  outline-offset: 2px;
}

/* See All */
.see-all-container {
  text-align: center;
  margin-top: 44px;
  padding-bottom: 8px;
}
#seeAllBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--text-primary, #1A1208);
  border: 2px solid var(--border-strong, #C8BDB0);
  border-radius: var(--radius-sm, 6px);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#seeAllBtn:hover {
  background: var(--text-primary, #1A1208);
  color: var(--bg-surface, #fff);
  border-color: var(--text-primary, #1A1208);
}
#seeAllBtn:focus-visible {
  outline: 2px solid var(--brand-red, #DA3F3F);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════ */
.whyus-section {
  background: var(--bg-body, #FAFAF8);
  padding: 72px 40px;
}
.whyus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.whyus-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-primary, #1A1208);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.whyus-desc {
  font-size: 15px;
  color: var(--text-secondary, #5A4E3C);
  line-height: 1.75;
  margin-bottom: 24px;
}
.whyus-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-red, #DA3F3F);
  text-decoration: none;
  border-bottom: 1.5px solid var(--brand-red, #DA3F3F);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}
.whyus-link:hover { opacity: 0.75; }

.whyus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.whyus-card {
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-color, #E8E0D4);
  border-radius: var(--radius-lg, 16px);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whyus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md, 0 4px 16px rgba(26,18,8,0.10));
}
.wc-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.whyus-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #1A1208);
}
.whyus-card p {
  font-size: 13px;
  color: var(--text-muted, #8C7D6B);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════ */
#reviews {
  padding: 72px 0;
  background: var(--bg-surface-2, #F5F2EC);
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

/* Scrolling marquee container */
.reviews-container {
  overflow: hidden;
  position: relative;
}
.reviews-container::before,
.reviews-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.reviews-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface-2, #F5F2EC), transparent);
}
.reviews-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface-2, #F5F2EC), transparent);
}

/* .reviews-wrapper — JS may read this for animation control */
.reviews-wrapper {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0 16px;
  animation: scroll-reviews 38s linear infinite;
}
@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reviews-container:hover .reviews-wrapper {
  animation-play-state: paused;
}

/* .review — card */
.review {
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-color, #E8E0D4);
  border-radius: var(--radius-lg, 16px);
  padding: 20px 22px;
  min-width: 300px;
  max-width: 360px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(26,18,8,0.08));
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md, 0 4px 16px rgba(26,18,8,0.10));
}
.review img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color, #E8E0D4);
}
.review-stars {
  color: var(--brand-gold, #C9973A);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.review-text p {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #5A4E3C);
}
.review-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted, #8C7D6B);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   PORTABLE PACK
════════════════════════════════════════════════════════════ */
#portable-pack {
  padding: 72px 40px;
}
/* .pack-wrap replaces old inline style */
.pack-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}

/* .pack-images — kept for CSS targeting */
.pack-images {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* .image-wrapper — kept for CSS targeting */
.image-wrapper {
  width: 220px;
  height: 340px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 4px 16px rgba(26,18,8,0.10));
  border: 1px solid var(--border-color, #E8E0D4);
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow, 400ms);
}
.image-wrapper:hover img { transform: scale(1.04); }

/* .pack-text — kept */
.pack-text {
  flex: 1;
  min-width: 260px;
}
.pack-text h2 {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text-primary, #1A1208);
  line-height: 1.35;
  margin-bottom: 14px;
}
.pack-text > p {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: 16px;
  color: var(--text-secondary, #5A4E3C);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pack-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Re-use existing .btn .btn-primary .btn-secondary from variables.css */
.pack-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pack-chips span {
  font-size: 12px;
  font-weight: 700;
  color: var(--success, #2E7D32);
  background: #E8F5E9;
  padding: 4px 12px;
  border-radius: var(--radius-pill, 999px);
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════
   PROMO BAND
════════════════════════════════════════════════════════════ */
.promo-band {
  background: linear-gradient(120deg, #1A1208 0%, #2E1A0A 50%, #1A1208 100%);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
/* Decorative background text */
.promo-band::before {
  content: '10%';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.promo-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.promo-band-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-gold-light, #e8b860);
  margin-bottom: 10px;
  padding: 3px 10px;
  border: 1px solid rgba(232,184,96,0.35);
  border-radius: 100px;
}
.promo-band-text h2 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.promo-band-text h2 em {
  font-style: italic;
  color: var(--brand-gold-light, #e8b860);
}
.promo-band-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
/* Coupon code pill */
.promo-band-text .promo-code {
  display: inline-block;
  background: rgba(232,184,96,0.15);
  border: 1.5px dashed var(--brand-gold-light, #e8b860);
  color: var(--brand-gold-light, #e8b860);
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 6px;
}
.promo-band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--brand-gold, #C9973A);
  color: #fff;
  border-radius: var(--radius-sm, 6px);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(201,151,58,0.35);
}
.promo-band-btn:hover {
  background: var(--brand-gold-light, #e8b860);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,0.45);
}
.promo-band-btn:focus-visible {
  outline: 2px solid var(--brand-gold-light, #e8b860);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════════════════════════ */
.section-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary, #1A1208);
  line-height: 1.2;
}
.section-subtitle {
  font-family: var(--font-gujarati, 'Anek Gujarati', sans-serif);
  font-size: 16px;
  color: var(--text-muted, #8C7D6B);
  margin-top: 6px;
}
.section-border {
  height: 1px;
  background: var(--border-color, #E8E0D4);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles-inner { grid-template-columns: repeat(4, 1fr); }
  .combines { padding: 0 24px; gap: 16px; }
  .whyus-inner { gap: 40px; }
  .whyus-section { padding: 56px 24px; }
  #portable-pack { padding: 56px 24px; }
  .cat-tiles-section { padding: 40px 24px; }
}

@media (max-width: 900px) {
  .whyus-inner { grid-template-columns: 1fr; }
  .whyus-text { text-align: center; }
  .whyus-link { margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Banner — tighter, not overwhelming */
  .banner { min-height: 85svh; }
  .banner-content { padding: 0 18px 44px; max-width: 100%; }
  .banner h2 { font-size: clamp(1.5rem, 6.5vw, 2.4rem); margin-bottom: 8px; }
  .banner p  { font-size: 13px; margin-bottom: 18px; }
  .banner-eyebrow { font-size: 10px; padding: 4px 10px; margin-bottom: 10px; }
  .banner-actions { gap: 8px; margin-bottom: 16px; }
  .banner-btn      { padding: 11px 20px; font-size: 13px; }
  .banner-btn-ghost { padding: 11px 16px; font-size: 13px; }
  .banner-trust { gap: 5px; }
  .btrust-chip  { font-size: 10px; padding: 3px 8px; }
  .scroll-hint { display: none; }

  /* Benefits */
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit-item { padding: 20px 16px; gap: 12px; }
  .benefit-icon { width: 36px; height: 36px; }
  .benefit-text h2 { font-size: 13px; }
  .benefit-text p  { font-size: 12px; }

  /* Category tiles */
  .cat-tiles-section { padding: 28px 12px; }
  .cat-tiles-inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-tile { min-height: 100px; padding: 18px 8px 14px; border-radius: 14px; }
  .ct-emoji { font-size: 28px; }
  .ct-label { font-size: 11px; }

  /* Products — always 2 columns, compact cards */
  #products { padding: 40px 0 32px; }
  .products-header { margin-bottom: 24px; }
  .combines { grid-template-columns: repeat(2, 1fr); padding: 0 12px; gap: 10px; }
  .product { border-radius: 12px; }
  .product-info { padding: 10px 10px 2px; gap: 4px; }
  .product-name, .product h3 { font-size: 12px; }
  .discounted-price { font-size: 15px; }
  .original-price { font-size: 11px; }
  .card-add-btn { margin: 8px 10px 10px; width: calc(100% - 20px); padding: 9px 8px; font-size: 12px; min-height: 36px; gap: 4px; }
  .card-add-btn svg { width: 12px; height: 12px; }
  .card-wishlist-btn { width: 26px; height: 26px; top: 6px; right: 6px; }
  .card-wishlist-btn svg { width: 12px; height: 12px; }
  .discount-badge { font-size: 9px; padding: 2px 6px; top: 6px; left: 6px; }
  #seeAllBtn { padding: 11px 28px; font-size: 13px; }

  /* Why us */
  .whyus-section { padding: 40px 16px; }
  .whyus-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .whyus-card { padding: 18px 16px; }
  .wc-icon { font-size: 22px; }
  .whyus-card strong { font-size: 13px; }
  .whyus-card p { font-size: 12px; }

  /* Pack */
  #portable-pack { padding: 40px 16px; }
  .pack-wrap { flex-direction: column; gap: 28px; }
  .pack-images { justify-content: center; }
  .image-wrapper { width: 140px; height: 210px; }

  /* Reviews */
  .review { padding: 16px; }

  /* Promo band — compact centered */
  .promo-band { padding: 32px 16px; }
  .promo-band-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .promo-band-text h2 { font-size: clamp(18px, 5vw, 26px); margin-bottom: 6px; }
  .promo-band-text p  { font-size: 13px; }
  .promo-band-btn { width: 100%; max-width: 280px; justify-content: center; padding: 13px 24px; font-size: 14px; }
}

@media (max-width: 480px) {
  /* Banner extra small */
  .banner { min-height: 80svh; }
  .banner-content { padding: 0 14px 36px; }
  .banner h2 { font-size: clamp(1.3rem, 7vw, 1.9rem); }
  .banner p  { font-size: 12px; margin-bottom: 16px; }
  .banner-actions { flex-direction: column; gap: 8px; }
  .banner-btn, .banner-btn-ghost { width: 100%; justify-content: center; }
  .banner-trust { justify-content: flex-start; flex-wrap: wrap; }
  .btrust-chip:last-child { display: none; } /* hide 3rd chip on tiny screens */

  /* Category tiles — 2x2 on small phones */
  .cat-tiles-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-tile { min-height: 90px; padding: 16px 8px 12px; }
  .ct-emoji { font-size: 26px; }

  /* Products — still 2 col, even tighter */
  .combines { padding: 0 10px; gap: 8px; }
  .product-info { padding: 8px 8px 2px; }
  .product-name, .product h3 { font-size: 11px; }
  .discounted-price { font-size: 14px; }
  .card-add-btn { margin: 6px 8px 8px; width: calc(100% - 16px); font-size: 11px; padding: 8px 6px; min-height: 34px; }

  /* Why us */
  .whyus-cards { grid-template-columns: 1fr; gap: 8px; }

  /* Pack */
  .pack-images { gap: 8px; }
  .image-wrapper { width: 120px; height: 185px; }
  .pack-text h2 { font-size: 20px; }
  .pack-chips { gap: 6px; }

  /* Reviews */
  .review { min-width: 250px; padding: 14px; }
  .review img { width: 38px; height: 38px; }

  /* Section headings */
  .section-title { font-size: clamp(22px, 6vw, 30px); }
}

/* ════════════════════════════════════════════════════════════
   DARK MODE
════════════════════════════════════════════════════════════ */
[data-theme="dark"] .benefit-item { background: var(--bg-surface); }
[data-theme="dark"] .benefit-item:hover { background: var(--bg-surface-2); }
[data-theme="dark"] .benefit-icon { background: var(--bg-surface-2); }
[data-theme="dark"] .cat-tile { border-color: var(--border-color); }
[data-theme="dark"] .ct-oil    { background: linear-gradient(145deg, #2A2010, #352815); }
[data-theme="dark"] .ct-masala { background: linear-gradient(145deg, #2A1510, #351A15); }
[data-theme="dark"] .ct-tea    { background: linear-gradient(145deg, #102010, #152A15); }
[data-theme="dark"] .ct-spice  { background: linear-gradient(145deg, #2A1E10, #352515); }
[data-theme="dark"] .ct-label  { color: var(--text-primary); }
[data-theme="dark"] .product   { background: var(--bg-card); }
[data-theme="dark"] .product:hover { box-shadow: var(--shadow-lg); }
[data-theme="dark"] .whyus-card { background: var(--bg-surface); }
[data-theme="dark"] .review   { background: var(--bg-surface); }
[data-theme="dark"] #reviews  { background: var(--bg-surface-2); }
[data-theme="dark"] .reviews-container::before { background: linear-gradient(to right, var(--bg-surface-2), transparent); }
[data-theme="dark"] .reviews-container::after  { background: linear-gradient(to left, var(--bg-surface-2), transparent); }

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .slide,
  .reviews-wrapper,
  .banner-content,
  .scroll-line {
    animation: none !important;
  }
  .slide { opacity: 1; }
  .reviews-wrapper { overflow-x: auto; }
}