/* ================= Lakhi Season World — modern public theme ================= */
@font-face { font-family: 'Poppins'; font-weight: 400; font-display: swap; src: url('fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-display: swap; src: url('fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 800; font-display: swap; src: url('fonts/poppins-800.woff2') format('woff2'); }

:root {
  --navy: #0e1a35;
  --navy-2: #14213d;
  --blue: #1d3557;
  --gold: #fca311;
  --gold-soft: #ffd166;
  --bg: #f6f8fc;
  --ink: #22304a;
  --muted: #64748b;
  --radius: 1rem;
  --shadow: 0 10px 30px rgba(14, 26, 53, .08);
  --shadow-lg: 0 24px 48px rgba(14, 26, 53, .16);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  display: flex; flex-direction: column; min-height: 100vh;
  overflow-x: clip;
}
main { flex: 1; }
h1, h2, h3, h4, h5 { font-weight: 800; color: var(--navy); }
.section { padding: 4.5rem 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .4rem; }
.section-sub { color: var(--muted); max-width: 620px; margin-bottom: 2.2rem; }
.text-gold { color: var(--gold) !important; }
img { max-width: 100%; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- navbar (white header — lets the logo stand out) ---------- */
.navbar-lakhi {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 2px 14px rgba(14, 26, 53, .08);
  transition: padding .3s ease, box-shadow .3s ease;
}
.navbar-lakhi.scrolled { padding: .35rem 0; box-shadow: 0 6px 24px rgba(14, 26, 53, .14); }
.navbar-lakhi .navbar-brand { color: var(--navy); font-weight: 800; letter-spacing: .3px; }
.navbar-lakhi .navbar-brand i { color: var(--gold); }
.navbar-lakhi .nav-link { color: #45536b; font-weight: 600; padding: .5rem .9rem !important; position: relative; }
.navbar-lakhi .nav-link::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.navbar-lakhi .nav-link:hover::after, .navbar-lakhi .nav-link.active::after { transform: scaleX(1); }
.navbar-lakhi .nav-link:hover, .navbar-lakhi .nav-link.active { color: var(--navy); }
.cart-badge { position: absolute; top: 0; right: -6px; font-size: .6rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, #27457c 0%, transparent 60%),
              linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; }
.hero .lead { color: #c7d2e4; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(252, 163, 17, .15); border: 1px solid rgba(252, 163, 17, .45);
  color: var(--gold-soft); border-radius: 3rem; padding: .35rem 1rem; font-size: .85rem; font-weight: 600;
}
.hero-badge.on-light { background: rgba(252, 163, 17, .12); border-color: rgba(252, 163, 17, .4); color: #b26b00; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff8f00);
  color: var(--navy); font-weight: 700; border: 0; border-radius: .8rem; padding: .8rem 1.6rem;
  box-shadow: 0 10px 24px rgba(252, 163, 17, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(252, 163, 17, .45); color: var(--navy); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.4); color: #fff; border-radius: .8rem; padding: .8rem 1.6rem; font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }

/* floating bubbles */
.bubble {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), rgba(255,255,255,.03));
  animation: floaty 9s ease-in-out infinite;
}
.bubble.b1 { width: 130px; height: 130px; top: 12%; left: 6%; animation-duration: 11s; }
.bubble.b2 { width: 70px; height: 70px; top: 58%; left: 14%; animation-delay: 1.2s; }
.bubble.b3 { width: 180px; height: 180px; top: 18%; right: 8%; animation-delay: .6s; animation-duration: 13s; }
.bubble.b4 { width: 54px; height: 54px; bottom: 22%; right: 22%; animation-delay: 2s; }
.bubble.b5 { width: 100px; height: 100px; bottom: 8%; left: 42%; animation-delay: 3s; animation-duration: 10s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-26px) translateX(10px); }
}

/* hero bottle emojis drifting */
.hero-drink { position: absolute; font-size: 2.2rem; opacity: .5; animation: drift 8s ease-in-out infinite; }

/* floating product "sticker cards" in the hero */
.hero-product {
  position: absolute; z-index: 1; width: 116px; height: 116px; border-radius: 1rem;
  overflow: hidden;
  background: #fff; padding: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .32);
  animation: drift 8s ease-in-out infinite;
  transition: box-shadow .2s ease;
}
.hero-product img { width: 100%; height: 100%; object-fit: contain; border-radius: .7rem; }
.hero-product:hover { box-shadow: 0 20px 46px rgba(252, 163, 17, .45); }
@media (max-width: 991px) { .hero-product { width: 80px; height: 80px; opacity: .9; } }
@media (max-width: 575px) { .hero-product { display: none; } }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

/* wave divider */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ---------- brand marquee ---------- */
.marquee { overflow: hidden; position: relative; padding: 1.4rem 0; background: #fff; box-shadow: var(--shadow); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-weight: 800; font-size: 1.15rem; color: #b8c2d5; white-space: nowrap;
  display: flex; align-items: center; gap: .6rem; transition: color .25s ease;
}
.marquee-item:hover { color: var(--navy); }
.marquee-item i { color: var(--gold); font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- category cards ---------- */
.cat-card {
  display: block; text-decoration: none; background: #fff; border-radius: var(--radius);
  padding: 2rem 1.4rem; text-align: center; box-shadow: var(--shadow); height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease;
  background: linear-gradient(160deg, rgba(252,163,17,.12), transparent 55%);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { opacity: 1; }
.cat-card .cat-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 1.2rem; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  transition: transform .25s ease;
}
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-4deg); }
.cat-card h5 { margin-bottom: .2rem; }
.cat-card span { color: var(--muted); font-size: .85rem; }

/* ---------- product cards ---------- */
.product-card {
  background: #fff; border: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .img-wrap { position: relative; overflow: hidden; background: linear-gradient(160deg, #f2f5fa, #e8edf5); }
.product-card img { height: 180px; width: 100%; object-fit: contain; padding: 14px; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.07); }
.product-card .stock-pill {
  position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700;
  border-radius: 2rem; padding: .25rem .65rem;
}
.mrp-note { font-size: .78rem; color: var(--muted); }
.price-tag { font-size: 1.15rem; font-weight: 800; color: var(--blue); }
.btn-add {
  background: var(--navy-2); color: #fff; font-weight: 600; border: 0; border-radius: .65rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-add:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.qty-box { border-radius: .65rem; }

/* ---------- stats band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 1.4rem; color: #fff; padding: 2.8rem 1rem;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.stats-band::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(252,163,17,.12); top: -140px; right: -80px;
}
.stat-num { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--gold); }
.stat-label { color: #c7d2e4; font-weight: 600; font-size: .9rem; }

/* ---------- feature cards ---------- */
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; height: 100%;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  border-top: 3px solid transparent;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.feature-card .f-icon {
  width: 54px; height: 54px; border-radius: 1rem; font-size: 1.4rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,163,17,.14); color: #d97b00;
}

/* ---------- steps ---------- */
.step-card { text-align: center; position: relative; padding: 1rem; }
.step-num {
  width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 50%;
  background: #fff; border: 2px dashed var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem;
  transition: transform .25s ease, background .25s ease;
}
.step-card:hover .step-num { background: var(--gold); transform: scale(1.1); border-style: solid; }
.step-arrow { position: absolute; right: -14px; top: 26px; color: #c3cbd6; font-size: 1.4rem; }
@media (max-width: 767px) { .step-arrow { display: none; } }

/* ---------- testimonials ---------- */
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; height: 100%;
  box-shadow: var(--shadow); position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-card .quote { position: absolute; top: 14px; right: 20px; font-size: 3rem; color: rgba(252,163,17,.2); line-height: 1; }
.testi-stars { color: var(--gold); letter-spacing: 2px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(720px 320px at 88% -30%, rgba(252,163,17,.28), transparent 60%),
              radial-gradient(500px 260px at -10% 120%, rgba(29,53,87,.9), transparent 70%),
              linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 1.6rem; padding: 3.5rem 2rem;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c7d2e4; }
.cta-band::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 2px dashed rgba(252,163,17,.35); top: -90px; right: -70px;
  animation: spin 40s linear infinite;
}
.cta-band::after {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 70%);
  bottom: -70px; left: -50px;
}
.cta-band .hero-drink { opacity: .35; }
.btn-navy {
  background: var(--navy); color: #fff; font-weight: 700; border-radius: .8rem; padding: .8rem 1.7rem; border: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-navy:hover { transform: translateY(-2px); color: var(--gold); box-shadow: 0 12px 26px rgba(14,26,53,.4); }

/* ---------- inner page header ---------- */
.page-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; padding: 3.2rem 0 2.6rem; position: relative; overflow: hidden;
}
.page-head h1 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0; }
.page-head .breadcrumb { margin: .4rem 0 0; --bs-breadcrumb-divider-color: #8fa1bd; }
.page-head .breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.page-head .breadcrumb-item.active { color: #c7d2e4; }

/* ---------- filter pills / forms ---------- */
.filter-bar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; }
.form-control, .form-select { border-radius: .65rem; }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(252,163,17,.2); }
.brand-chip {
  border: 1.5px solid #dfe5ee; background: #fff; border-radius: 2rem; padding: .4rem 1.1rem;
  display: inline-block; color: var(--navy); text-decoration: none; margin: .2rem; font-weight: 600; font-size: .9rem;
  transition: all .2s ease;
}
.brand-chip:hover, .brand-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

/* ---------- cards general ---------- */
.card { border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #9daecb; padding: 3.5rem 0 1.5rem; margin-top: 4rem; position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer h5, .footer h6 { color: #fff; }
.footer a { color: #9daecb; text-decoration: none; transition: color .2s ease, padding-left .2s ease; display: inline-block; padding: .15rem 0; }
.footer a:hover { color: var(--gold); padding-left: 4px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center; margin-right: .5rem; padding: 0;
}
.footer .social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; background: #25d366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 1040;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .5);
  transition: transform .2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.1); animation: none; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; bottom: 92px; right: 30px; width: 40px; height: 40px; border-radius: .8rem;
  background: var(--navy); color: #fff; border: 0; z-index: 1040; font-size: 1.1rem;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); color: var(--navy); }

/* ---------- about page ---------- */
.about-visual { position: relative; min-height: 380px; }
.about-visual .main-tile {
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 1.4rem; height: 340px; width: 82%; margin-left: auto;
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-visual .main-tile::before {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(252,163,17,.18); top: -110px; right: -70px;
}
.about-visual .main-tile .spin-ring {
  position: absolute; inset: 30px; border: 2px dashed rgba(255,255,255,.18); border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* real product collage inside the tile */
.tile-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 112px); gap: 16px;
  transform: rotate(-5deg); margin-top: -10px;
}
.tile-prod {
  width: 112px; height: 112px; background: #fff; border-radius: 1rem; padding: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .3);
}
.tile-prod:nth-child(even) { transform: translateY(20px); }
.tile-prod img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 575px) {
  .about-visual { min-height: 0; margin-top: .5rem; }
  .about-visual .main-tile { width: 100%; height: 300px; }
  .tile-grid { grid-template-columns: repeat(2, 96px); gap: 12px; }
  .tile-prod { width: 96px; height: 96px; }
  .float-chip { font-size: .78rem; padding: .5rem .7rem; }
  .float-chip.fc1 { top: -14px; left: 4px; }
  .float-chip.fc3 { bottom: -14px; right: 4px; }
}
.float-chip {
  position: absolute; background: #fff; border-radius: 1rem; padding: .7rem 1rem;
  box-shadow: var(--shadow-lg); font-weight: 700; color: var(--navy); font-size: .9rem;
  display: flex; align-items: center; gap: .55rem; animation: floaty 7s ease-in-out infinite;
}
.float-chip i { color: var(--gold); font-size: 1.2rem; }
.float-chip.fc1 { top: 8%; left: 0; }
.float-chip.fc2 { bottom: 18%; left: 6%; animation-delay: 1.2s; }
.float-chip.fc3 { bottom: -4%; right: 10%; animation-delay: 2.1s; }

/* timeline */
.timeline { position: relative; padding-left: 0; list-style: none; }
.timeline::before {
  content: ""; position: absolute; left: 26px; top: 8px; bottom: 8px; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--blue)); border-radius: 2px;
}
.timeline li { position: relative; padding: 0 0 1.8rem 76px; }
.timeline li:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 4px; top: 0; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow); transition: transform .25s ease, background .25s ease;
}
.timeline li:hover .tl-dot { background: var(--gold); transform: scale(1.12); }
.tl-card { background: #fff; border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow); }
.tl-card h6 { margin-bottom: .2rem; }
.tl-card p { margin: 0; color: var(--muted); font-size: .9rem; }

/* value cards */
.value-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; height: 100%; text-align: center;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), #ff8f00); transform: scaleX(0); transition: transform .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::after { transform: scaleX(1); }
.value-card .v-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,163,17,.14); color: #d97b00;
}

/* ---------- brand logos ---------- */
.marquee-logo { height: 42px; width: auto; max-width: 120px; object-fit: contain; transition: transform .25s ease; }
.marquee-item:hover .marquee-logo { transform: scale(1.1); }
.brand-chip img { height: 22px; width: auto; max-width: 56px; object-fit: contain; margin-right: .35rem; vertical-align: -5px; }

/* ---------- testimonial slider (mobile) ---------- */
.testi-dots { display: none; }
@media (max-width: 767px) {
  .testi-row {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin-left: -.5rem; margin-right: -.5rem; padding: 0 .5rem .4rem;
  }
  .testi-row::-webkit-scrollbar { display: none; }
  .testi-row > [class*="col-"] { flex: 0 0 86%; max-width: 86%; scroll-snap-align: center; }
  .testi-row .reveal { opacity: 1; transform: none; } /* don't hide off-screen slides */
  .testi-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1rem; }
  .testi-dots button {
    width: 9px; height: 9px; border-radius: 1rem; border: 0; padding: 0;
    background: #c9d2e0; transition: width .25s ease, background .25s ease;
  }
  .testi-dots button.active { width: 24px; background: var(--gold); }
}

/* ---------- pack-size variant pills ---------- */
.variant-group {
  display: inline-flex; flex-wrap: wrap; gap: .35rem;
  background: #fff; border: 1.5px solid #e2e8f2; border-radius: .9rem; padding: .35rem;
  box-shadow: var(--shadow);
}
.variant-pill {
  display: inline-block; padding: .45rem 1rem; border-radius: .65rem;
  font-weight: 700; font-size: .9rem; color: var(--navy); text-decoration: none;
  border: 1.5px solid transparent; transition: all .2s ease; white-space: nowrap;
}
a.variant-pill:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-1px); }
.variant-pill.active { background: var(--navy); color: #fff; box-shadow: 0 6px 14px rgba(14,26,53,.25); }
.variant-pill.oos { color: #a5b1c4; text-decoration: line-through; }
.variant-pill.oos:hover { border-color: #cfd8e6; }

/* ---------- cart items ---------- */
.cart-item {
  display: grid;
  grid-template-areas: "img info qty rm";
  grid-template-columns: 76px 1fr 128px 34px;
  gap: .5rem 1rem; align-items: center;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .9rem 1rem; margin-bottom: .8rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cart-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ci-img { grid-area: img; width: 76px; height: 76px; border-radius: .8rem; overflow: hidden;
  background: linear-gradient(160deg, #f2f5fa, #e8edf5); display: flex; align-items: center; justify-content: center; }
.ci-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.ci-info { grid-area: info; min-width: 0; }
.ci-title { font-weight: 700; color: var(--navy); text-decoration: none; display: block; line-height: 1.25; }
a.ci-title:hover { color: var(--gold); }
.ci-price { font-size: .88rem; color: var(--blue); font-weight: 600; }
.ci-qty { grid-area: qty; display: flex; align-items: center; border: 1.5px solid #e2e8f2; border-radius: .7rem; overflow: hidden; background: #fff; }
.ci-qty button {
  border: 0; background: #f2f5fa; color: var(--navy); width: 34px; height: 36px; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.ci-qty button:hover { background: var(--gold); }
.ci-qty input {
  border: 0; width: 52px; height: 36px; text-align: center; font-weight: 700; color: var(--navy);
  -moz-appearance: textfield; outline: none;
}
.ci-qty input::-webkit-outer-spin-button, .ci-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ci-remove {
  grid-area: rm; border: 0; background: transparent; color: #b8c2d5; font-size: 1rem;
  width: 34px; height: 34px; border-radius: 50%; transition: all .15s ease;
}
.ci-remove:hover { background: rgba(220,53,69,.1); color: #dc3545; }

@media (max-width: 640px) {
  .cart-item {
    grid-template-areas:
      "img info rm"
      "img qty qty";
    grid-template-columns: 64px 1fr 34px;
    gap: .4rem .8rem;
  }
  .ci-img { width: 64px; height: 64px; }
  .ci-qty { justify-self: start; }
}

/* ---------- announcement bar ---------- */
.announce-bar {
  background: linear-gradient(90deg, #b97700, var(--gold) 40%, #ffb84d);
  color: var(--navy); font-weight: 600; font-size: .9rem;
  padding: .45rem 0; text-align: center;
}
.announce-bar .container { padding-right: 2.2rem; }
.announce-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: var(--navy); opacity: .7; font-size: .85rem;
  width: 28px; height: 28px; border-radius: 50%;
}
.announce-close:hover { opacity: 1; background: rgba(14,26,53,.12); }

/* ---------- live product search ---------- */
.search-wrap { position: relative; }
.search-wrap > i.bi-search {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; z-index: 5;
}
.search-wrap .form-control { padding-left: 2.5rem; border-radius: .8rem; }
.search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 1050;
  background: #fff; border-radius: .9rem; box-shadow: var(--shadow-lg);
  overflow: hidden; max-height: 380px; overflow-y: auto; text-align: left;
}
.search-item {
  display: flex; gap: .7rem; align-items: center; padding: .55rem .8rem;
  text-decoration: none; color: var(--ink); transition: background .15s ease;
}
.search-item:hover { background: #f2f5fa; }
.search-item img {
  width: 44px; height: 44px; object-fit: contain; border-radius: .5rem; flex: 0 0 44px;
  background: linear-gradient(160deg, #f2f5fa, #e8edf5); padding: 3px;
}
.search-item .si-info { min-width: 0; }
.search-item .si-label { font-weight: 600; color: var(--navy); font-size: .88rem; line-height: 1.25; }
.search-item .si-meta { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.si-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.si-dot.in { background: #22a35a; }
.si-dot.out { background: #b8c2d5; }
.search-empty { padding: .8rem 1rem; color: var(--muted); font-size: .9rem; }

/* navbar search sizing */
.nav-search { min-width: 230px; }
@media (min-width: 992px) {
  /* fill the empty middle of the header: grow between the logo and the menu */
  .nav-search { flex: 1 1 auto; max-width: 480px; margin-left: 2rem; margin-right: 2rem; }
  .nav-search .form-control { background: #f2f5fa; border-color: #e2e8f2; color: var(--ink); padding-top: .55rem; padding-bottom: .55rem; }
  .nav-search .form-control::placeholder { color: var(--muted); }
  .nav-search .form-control:focus { background: #fff; }
}
.navbar-lakhi .lang-toggle { white-space: nowrap; }

/* hero search */
.hero-search .form-control { border: 0; box-shadow: 0 14px 34px rgba(0,0,0,.28); padding-top: .8rem; padding-bottom: .8rem; }
.hero-search .search-results { text-align: left; }

/* ---------- brand tiles ---------- */
.brand-tile {
  display: block; text-decoration: none; background: #fff; border-radius: var(--radius);
  padding: 1.4rem 1rem; text-align: center; box-shadow: var(--shadow); height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-tile img { height: 54px; width: auto; max-width: 82%; object-fit: contain; margin-bottom: .8rem; }
.brand-tile .brand-initial {
  width: 54px; height: 54px; margin: 0 auto .8rem; border-radius: 50%; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.brand-tile h6 { margin-bottom: .1rem; color: var(--navy); }
.brand-tile span { color: var(--muted); font-size: .8rem; }

/* ---------- pack size chips label ---------- */
.size-chip-label { font-weight: 700; color: var(--navy); }

/* ---------- category image cards (full-width photo banner) ---------- */
.cat-card .cat-img {
  width: 100%; height: 150px; margin: 0 0 1rem; border-radius: .9rem; overflow: hidden;
  background: linear-gradient(160deg, #f2f5fa, #e8edf5);
}
.cat-card .cat-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.07); }
@media (max-width: 767px) { .cat-card .cat-img { height: 110px; } }

/* ---------- deal badge ---------- */
.deal-pill {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: linear-gradient(135deg, #ff5f2e, #ff8f00); color: #fff;
  font-size: .68rem; font-weight: 700; border-radius: 2rem; padding: .25rem .65rem;
  box-shadow: 0 6px 14px rgba(255, 95, 46, .4);
}

/* ---------- reorder strip ---------- */
.reorder-strip {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.3rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.reorder-icon {
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; flex: 0 0 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,163,17,.14); color: #d97b00;
}

/* ---------- delivery band ---------- */
.delivery-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 1.4rem; padding: 2.2rem 2rem; color: #c7d2e4;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.delivery-band::after {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(252,163,17,.1); bottom: -130px; right: -70px;
}
.area-chip {
  display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 2rem; padding: .3rem .9rem; margin: 0 .3rem .4rem 0;
  font-size: .85rem; font-weight: 600;
}
.delivery-fact { display: flex; gap: .7rem; align-items: flex-start; }
.delivery-fact i { color: var(--gold); font-size: 1.3rem; line-height: 1.2; }
.delivery-fact strong { color: #fff; display: block; font-size: .92rem; }
.delivery-fact span { font-size: .85rem; }

/* ---------- FAQ accordion ---------- */
.faq-accordion .accordion-item {
  border: 0; border-radius: var(--radius) !important; overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: .7rem; background: #fff;
}
.faq-accordion .accordion-button {
  font-weight: 700; color: var(--navy); background: #fff; box-shadow: none; padding: 1rem 1.2rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--navy); background: rgba(252,163,17,.08); }
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(252,163,17,.2); }
.faq-accordion .accordion-body { color: var(--muted); }

/* ---------- sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1045;
  display: flex; background: var(--navy);
  box-shadow: 0 -8px 24px rgba(14,26,53,.28);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .1rem;
  color: #d7deeb; text-decoration: none; font-size: .72rem; font-weight: 600; padding: .5rem 0 .45rem;
}
.mobile-bar a i { font-size: 1.25rem; line-height: 1.1; }
.mobile-bar a:active, .mobile-bar a:hover { color: var(--gold); }
.mobile-bar .mb-wa i { color: #25d366; }
.mobile-bar .mb-badge { position: absolute; top: 2px; right: calc(50% - 22px); font-size: .6rem; }
@media (max-width: 767px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .wa-float { display: none; }
  /* keep the arrow clear of the action bar: bar height + safe-area + gap */
  .to-top { bottom: calc(92px + env(safe-area-inset-bottom, 0px)); right: 14px; }
}

/* ---------- site logo chip (white-background logos on dark surfaces) ---------- */
.logo-chip {
  background: #fff; display: inline-flex; align-items: center;
  padding: .3rem .65rem; border-radius: .7rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-chip img { height: 46px; max-width: 230px; object-fit: contain; display: block; transition: height .25s ease; }
.footer .logo-chip { margin-bottom: .8rem; padding: .45rem .9rem; }
.footer .logo-chip img { height: 60px; max-width: 300px; }
@media (max-width: 575px) { .footer .logo-chip img { height: 48px; max-width: 220px; } }

/* navbar logo: header is white now, so drop the chip box and show the logo bigger */
.navbar-lakhi .logo-chip { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
.navbar-lakhi .logo-chip img { height: 64px; max-width: 320px; }
.navbar-lakhi.scrolled .logo-chip img { height: 50px; }
@media (max-width: 575px) {
  .logo-chip img { height: 36px; max-width: 170px; }
  .navbar-lakhi .logo-chip img { height: 48px; max-width: 220px; }
}

/* ---------- contact page ---------- */
.contact-shell { border: 0; overflow: hidden; }
.contact-side {
  height: 100%;
  background: radial-gradient(700px 400px at 110% -20%, #27457c 0%, transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff; padding: 2.6rem 2.2rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.contact-side h3 { color: #fff; }
.contact-side .hero-badge { align-self: flex-start; }
.contact-side .c-sub { color: #c7d2e4; }
.c-line { display: flex; gap: .95rem; align-items: flex-start; margin-bottom: 1.15rem; position: relative; }
.c-ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: .9rem; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: var(--gold-soft);
}
.c-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: #8fa1bd; font-weight: 700; }
.c-line a, .c-val { color: #fff; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.c-line a:hover { color: var(--gold-soft); }
.c-note { color: #c7d2e4; font-size: .82rem; }
.btn-wa {
  background: #25d366; color: #fff; font-weight: 700; border: 0; border-radius: .8rem; padding: .8rem 1.6rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-wa:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }
.contact-form .c-in .input-group-text {
  background: #f2f5fa; border-color: #dfe5ee; color: var(--muted);
  border-radius: .65rem 0 0 .65rem;
}
.contact-form .c-in .form-control { border-left: 0; }
.contact-form .c-in:focus-within .input-group-text { border-color: var(--gold); color: #d97b00; }
.contact-form .c-ta { border-radius: .65rem; }
.map-card { border: 0; }
@media (max-width: 991px) {
  .contact-side { padding: 2rem 1.4rem; }
  .contact-form.p-md-5 { padding: 1.5rem !important; }
}
