/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #0a3a42; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== BRAND COLOUR VARIABLES ===== */
:root {
  /* TEAL — from logo chef hat & "B" */
  --teal:         #16A8C0;
  --teal-dark:    #0D8FA6;
  --teal-darker:  #0A6E80;
  --teal-deep:    #084E5C;

  /* GOLD — from logo wheat & "Route" */
  --gold:         #D4920A;
  --gold-dark:    #B87C08;
  --gold-light:   #E8AE3A;
  --gold-pale:    #FEF6E4;

  /* BACKGROUNDS */
  --cream:        #EEF9FB;
  --cream-dark:   #D8F0F5;
  --white:        #ffffff;

  /* TEXT */
  --text:         #0A3A42;
  --text-light:   #1F6878;
  --text-muted:   #5A8D9A;

  /* BORDERS & SHADOWS */
  --border:       #B8DFE6;
  --shadow:       0 4px 20px rgba(22,168,192,0.10);
  --shadow-hover: 0 8px 40px rgba(22,168,192,0.22);

  --radius:    12px;
  --radius-sm:  8px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-h:   100px;
}

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; letter-spacing: 0.3px; transition: var(--transition); cursor: pointer;
}
.btn-primary  { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-gold     { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--teal-deep); line-height: 1.2; margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--teal-deep); color: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 8px 24px; font-size: 0.78rem; font-weight: 500; flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar i { color: var(--gold-light); font-size: 0.75rem; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 1000; background: var(--white);
  box-shadow: 0 2px 20px rgba(22,168,192,0.10);
  border-bottom: 2px solid var(--cream-dark);
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 24px; height: var(--header-h); max-width: 1400px; margin: 0 auto; gap: 20px;
}

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 140px; width: auto; object-fit: contain; display: block; }
/* Fallback icon logo (shown when image not loaded) */
.logo-icon {
  width: 48px; height: 48px; background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--teal-dark);
}
.logo-sub { font-size: 0.62rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); }

/* ===== NAV ===== */
.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px; padding: 10px 13px;
  font-size: 0.88rem; font-weight: 500; color: var(--text); border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--teal); background: var(--cream); }
.nav-item > a .fa-chevron-down { font-size: 0.62rem; transition: var(--transition); }
.nav-item:hover > a .fa-chevron-down,
.nav-item.drop-open > a .fa-chevron-down { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius); padding: 28px 24px 24px; display: flex; gap: 32px;
  min-width: 420px; box-shadow: 0 12px 40px rgba(22,168,192,0.18);
  border-top: 3px solid var(--teal); opacity: 0; visibility: hidden;
  pointer-events: none; transition: opacity 0.18s ease, visibility 0.18s ease;
}
.nav-item.drop-open .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
}
.dropdown-col h4 {
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 10px;
}
.dropdown-col a {
  display: block; padding: 6px 0; font-size: 0.88rem; color: var(--text);
  transition: var(--transition);
}
.dropdown-col a:hover { color: var(--teal); padding-left: 6px; }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1rem; color: var(--text); transition: var(--transition); position: relative;
}
.icon-btn:hover { background: var(--cream); color: var(--teal); }

/* HEADER SOCIAL ICONS */
.header-social-divider {
  width: 1px; height: 26px; background: var(--cream-dark); margin: 0 8px; flex-shrink: 0;
}
.header-social-link {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; text-decoration: none; color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease; flex-shrink: 0;
}
.header-social-link:hover { transform: scale(1.13); box-shadow: 0 4px 16px rgba(0,0,0,0.22); color: #fff; }
/* Instagram — official gradient */
.header-social-link.hs-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
/* YouTube — official red */
.header-social-link.hs-youtube { background: #ff0000; }
/* Twitter / X — official black */
.header-social-link.hs-twitter { background: #000000; }
@media (max-width: 768px) {
  .header-social-divider,
  .header-social-link { display: none; }
}
/* ===== HEADER REWARD BADGE ===== */
.hdr-reward-wrap {
  display: none; align-items: center; gap: 7px; margin-right: 2px;
}
.hdr-reward-pts {
  font-size: 0.76rem; font-weight: 700; color: #6a0080;
  background: #f3e5f5; padding: 4px 11px; border-radius: 20px;
  border: 1.5px solid #ce93d8; white-space: nowrap; line-height: 1;
}
.hdr-claim-btn {
  font-size: 0.74rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #6a0080 0%, #ab47bc 100%);
  padding: 5px 13px; border-radius: 20px; text-decoration: none;
  white-space: nowrap; transition: opacity 0.18s, transform 0.18s;
  display: inline-flex; align-items: center; gap: 4px;
}
.hdr-claim-btn:hover { opacity: 0.88; transform: scale(1.04); }
@media (max-width: 768px) {
  .hdr-reward-wrap { display: none !important; }
}
.cart-count {
  position: absolute; top: 2px; right: 2px; background: var(--gold);
  color: #fff; font-size: 0.6rem; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* SEARCH BAR */
.search-bar { display: none; padding: 12px 24px; background: var(--cream); border-top: 1px solid var(--border); }
.search-bar.open { display: block; }
.search-inner { max-width: 600px; margin: 0 auto; display: flex; gap: 8px; }
.search-inner input {
  flex: 1; padding: 10px 18px; border: 1.5px solid var(--border); border-radius: 50px;
  font-size: 0.9rem; outline: none; background: var(--white); transition: border-color 0.2s;
}
.search-inner input:focus { border-color: var(--teal); }
.search-inner button { padding: 10px 18px; background: var(--teal); color: #fff; border-radius: 50px; font-size: 0.9rem; }
.close-search { background: transparent !important; color: var(--text-muted) !important; font-size: 1.1rem !important; }

/* MOBILE OVERLAY */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 998; backdrop-filter: blur(2px); }
.mobile-overlay.show { display: block; }

/* ===== HERO ===== */
.hero { position: relative; height: 88vh; min-height: 520px; overflow: hidden; }
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }

/* Gradient fallback when no image: teal-to-gold */
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #0A4A56 0%, #16A8C0 50%, #0D8FA6 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #084E5C 0%, #D4920A 60%, #B87C08 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #0A3A42 0%, #16A8C0 40%, #D4920A 100%); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,78,92,0.78) 0%, rgba(8,78,92,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 600px; padding: 0 60px;
  top: 50%; transform: translateY(-50%); color: #fff;
}
.hero-tag {
  font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700; margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12; font-weight: 700; margin-bottom: 18px;
}
.hero-content h1 span { color: var(--gold-light); }
.hero-desc { font-size: 1.1rem; opacity: 0.9; line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1.5px solid rgba(255,255,255,0.3);
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.28); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ===== PROMO STRIP ===== */
.promo-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  background: var(--teal-deep); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.promo-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.12); flex: 1; min-width: 200px; max-width: 320px;
}
.promo-card:last-child { border-right: none; }
.promo-card > i { font-size: 1.5rem; color: var(--gold-light); flex-shrink: 0; }
.promo-card > div { display: flex; flex-direction: column; }
.promo-card strong { font-size: 0.82rem; font-weight: 700; color: #fff; }
.promo-card span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.promo-card b { color: var(--gold-light); }

/* ===== CATEGORIES ===== */
.categories-section { background: var(--white); }
.category-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 200px; gap: 14px;
}
.cat-card.cat-large { grid-column: span 2; grid-row: span 2; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.cat-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  background-color: var(--cream-dark); transition: transform 0.5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,78,92,0.80) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  transition: var(--transition);
}
.cat-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 600; }
.cat-overlay p  { font-size: 0.8rem; color: rgba(255,255,255,0.82); margin-top: 4px; }
.cat-card.cat-large .cat-overlay h3 { font-size: 1.9rem; }
.cat-card.cat-large .cat-overlay p  { font-size: 0.92rem; }
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(8,78,92,0.90) 0%, rgba(22,168,192,0.15) 100%);
}

/* Category placeholders (no image) */
.cat-card:nth-child(1) .cat-img { background-color: #B5E5EC; }
.cat-card:nth-child(2) .cat-img { background-color: #C5ECD0; }
.cat-card:nth-child(3) .cat-img { background-color: #F5D8B0; }
.cat-card:nth-child(4) .cat-img { background-color: #D8C5B0; }
.cat-card:nth-child(5) .cat-img { background-color: #E8D5B8; }
.cat-card:nth-child(6) .cat-img { background-color: #F5C8C0; }

/* ===== PRODUCT CARDS ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(22,168,192,0.08); transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; background: var(--cream);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }

/* Weight option selector buttons */
.weight-opt-btn {
  font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 6px;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: all 0.18s;
}
.weight-opt-btn.active,
.weight-opt-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* Short product description */
.product-desc-short { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; line-height: 1.3; }

.product-badge {
  position: absolute; top: 12px; left: 12px; background: var(--teal);
  color: #fff; font-size: 0.66rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-badge.eggless { background: #2d9e2d; }
.product-badge.new     { background: var(--gold); }

/* ===== VEG / NON-VEG SYMBOL ===== */
.food-type-dot {
  position: absolute; bottom: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: 3px;
  background: #fff; box-shadow: 0 1px 5px rgba(0,0,0,0.28);
  z-index: 3; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.food-type-dot.veg      { border: 2.5px solid #2d9e2d; }
.food-type-dot.veg::after {
  content: ''; width: 10px; height: 10px;
  border-radius: 50%; background: #2d9e2d;
}
.food-type-dot.non-veg  { border: 2.5px solid #963030; }
.food-type-dot.non-veg::after {
  content: ''; width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 9px solid #963030;
  margin-top: -2px;
}

.wishlist-btn {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  background: rgba(255,255,255,0.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.wishlist-btn:hover  { color: #e53935; background: #fff; }
.wishlist-btn.active { color: #e53935; }

.product-info { padding: 16px; }
.product-info h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.product-rating .stars { color: var(--gold); font-size: 0.75rem; display: flex; gap: 1px; }
.product-rating span { font-size: 0.75rem; color: var(--text-muted); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); }
.product-price-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.product-unit-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  color: var(--teal-dark); background: #e8f4f6;
  border-radius: 4px; padding: 2px 6px;
  margin-left: 5px; vertical-align: middle;
  letter-spacing: 0.3px;
}
.whatsapp-order-btn {
  width: 38px; height: 38px; border-radius: 50%; background: #25d366;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; transition: var(--transition); text-decoration: none;
  flex-shrink: 0;
}
.whatsapp-order-btn:hover { background: #128c7e; transform: scale(1.12); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 28px; }
.why-card {
  background: var(--white); padding: 32px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: center; transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-4px); border-bottom-color: var(--gold); }
.why-icon {
  width: 64px; height: 64px; background: var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem; color: var(--teal); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--teal); color: #fff; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--teal-deep); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== OCCASION SECTION ===== */
.occasion-section { background: var(--white); }
.occasion-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.occ-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 20px; min-width: 120px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--cream);
  transition: var(--transition); font-size: 0.88rem; font-weight: 500; color: var(--text);
}
.occ-card i { font-size: 1.8rem; color: var(--teal); transition: var(--transition); }
.occ-card:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.occ-card:hover i { color: var(--gold-light); }

/* ===== CUSTOM BANNER ===== */
.custom-banner {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 50%, #0D8FA6 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.custom-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.custom-banner-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.custom-banner .section-tag { color: var(--gold-light); }
.custom-banner h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem);
  color: #fff; margin-bottom: 16px;
}
.custom-banner p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.4s ease; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px); background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--teal);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars i { color: var(--gold); font-size: 0.9rem; }
.testimonial-card p { font-size: 0.92rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.reviewer strong { display: block; font-size: 0.9rem; font-weight: 600; }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testimonial-controls button {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 1.5px solid var(--border); color: var(--teal); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.testimonial-controls button:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.gallery-item {
  aspect-ratio: 1; background-size: cover; background-position: center;
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  background-color: var(--cream-dark); cursor: pointer;
}
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(22,168,192,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 1.6rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 60px 24px;
}
.newsletter-inner {
  max-width: 900px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.newsletter-text h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 6px; }
.newsletter-text p  { color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 13px 20px; border-radius: 50px; border: none; outline: none;
  font-size: 0.9rem; min-width: 200px; background: rgba(255,255,255,0.96);
}
.newsletter-form .btn-primary { background: var(--teal-deep); flex-shrink: 0; }
.newsletter-form .btn-primary:hover { background: var(--teal-darker); }

/* ===== FOOTER ===== */
.footer { background: var(--teal-deep); color: rgba(255,255,255,0.88); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub  { color: var(--gold-light); }
.footer-brand .logo-icon { background: var(--teal); }
.footer-brand .logo-img  { height: 110px; }
.footer-about { font-size: 0.88rem; line-height: 1.8; margin-top: 16px; color: rgba(255,255,255,0.62); max-width: 300px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.82); font-size: 0.9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--teal); color: #fff; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px; font-weight: 700;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li i { margin-right: 6px; color: var(--teal); width: 14px; }

/* FSSAI badge */
.footer-fssai {
  padding: 16px 0 12px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: center;
}
.fssai-badge {
  display: inline-flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 12px; padding: 10px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.fssai-logo-img { height: 38px; width: auto; display: block; flex-shrink: 0; }
.fssai-details {
  line-height: 1.4; border-left: 1.5px solid #e0e0e0; padding-left: 16px;
}
.fssai-label  { display: block; font-size: 0.67rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.fssai-lic    { display: block; font-size: 0.78rem; color: #444; margin-top: 3px; }
.fssai-lic strong { color: #1a237e; font-weight: 800; letter-spacing: 0.06em; font-size: 0.82rem; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.40);
}
.payment-icons { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; }
.payment-icons span:first-child { font-size: 0.78rem; }
.upi-badge {
  background: rgba(255,255,255,0.14); padding: 2px 8px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.68);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ===== CATEGORY PILLS ===== */
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pill {
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.pill:hover  { border-color: var(--teal); color: var(--teal); }
.pill.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== PRODUCTS PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  padding: 60px 24px; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }

.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 48px 0; }
.sidebar { align-self: start; position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 20px; border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 16px;
}
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-item input[type=checkbox] { accent-color: var(--teal); width: 15px; height: 15px; }
.filter-item label { font-size: 0.88rem; color: var(--text); cursor: pointer; flex: 1; }
.filter-item .count { font-size: 0.75rem; color: var(--text-muted); }
.price-range input[type=range] { width: 100%; accent-color: var(--teal); margin: 8px 0; }
.price-labels { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }

.products-main {}
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px; padding: 14px 18px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border);
}
.products-toolbar select {
  padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--text); outline: none; background: var(--white); cursor: pointer;
}
.products-toolbar select:focus { border-color: var(--teal); }
.results-count { font-size: 0.88rem; color: var(--text-muted); }

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 0; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 16px; background: var(--white); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-details p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text); transition: var(--transition);
}
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.qty-val { font-size: 0.95rem; font-weight: 600; min-width: 24px; text-align: center; }
.cart-item-price { font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); align-self: center; flex-shrink: 0; }
.remove-btn { color: var(--text-muted); font-size: 0.85rem; align-self: flex-start; padding: 4px; }
.remove-btn:hover { color: #e53935; }

.order-summary {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border); align-self: start;
  position: sticky; top: calc(var(--header-h) + 20px);
  border-top: 4px solid var(--teal);
}
.order-summary h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 20px; color: var(--teal-deep); }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 10px; }
.summary-row.total {
  font-weight: 700; font-size: 1.05rem; color: var(--teal-dark);
  border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px;
}
.coupon-input { display: flex; gap: 8px; margin: 16px 0; }
.coupon-input input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.88rem; outline: none;
}
.coupon-input input:focus { border-color: var(--teal); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 9999;
  background: var(--teal-deep); color: #fff; padding: 14px 22px;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(22,168,192,0.30);
  transform: translateY(20px) translateX(20px); opacity: 0;
  transition: all 0.3s ease; pointer-events: none;
  border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0) translateX(0); opacity: 1; }
.toast i { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .cat-card.cat-large { grid-column: span 3; grid-row: auto; height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav.mobile-open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; bottom: 0; width: 300px; background: var(--white);
    z-index: 999; padding: 24px; overflow-y: auto;
    box-shadow: 4px 0 30px rgba(22,168,192,0.18);
    transform: translateX(-100%); transition: transform 0.3s ease;
    border-right: 3px solid var(--teal);
  }
  .nav.mobile-open.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; width: 100%; margin-top: 60px; }
  .nav-item > a { padding: 14px 8px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .dropdown {
    position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible;
    pointer-events: all; flex-direction: column; gap: 8px; min-width: auto;
    border-top: none; padding: 8px 16px; display: none;
  }
  .nav-item.mobile-expanded .dropdown { display: flex; }
  .hero-content { padding: 0 32px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .cat-card.cat-large { grid-column: span 2; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .sidebar.open { display: block; }
  .cart-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .topbar { font-size: 0.7rem; gap: 16px; }
  .topbar span:nth-child(3) { display: none; }
  .hero { height: 72vh; min-height: 400px; }
  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns .btn-outline { display: none; }
  .promo-strip { flex-wrap: wrap; }
  .promo-card { min-width: 140px; padding: 12px 14px; }
  .section { padding: 54px 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.cat-large { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .product-info h3 { font-size: 0.82rem; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-card { flex: 0 0 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .occasion-grid { gap: 10px; }
  .occ-card { min-width: 90px; padding: 16px 12px; }
  .logo-img { height: 90px; }
}
