/* ============================================
   KÜUL ICE CREAM — Updated Stylesheet
   Color Theme from Image 2:
   Cream bg: #FFF8F0, Navy: #0D2746, Pink: #E8386D
   Gold: #F5A623, Green: #5B9E2A, Purple: #7B5CB8
   Teal: #0FA9B5, Brown: #8B4513, Orange: #F47C20
   ============================================ */

:root {
  --navy: #090319;
  --navy-deep: #090319;
  --pink: #e8386d;
  --pink-light: #ff6b9d;
  --gold: #f5a623;
  --gold-light: #ffd166;
  --green: #5b9e2a;
  --green-light: #7dc43a;
  --purple: #7b5cb8;
  --purple-light: #a07ed4;
  --teal: #0fa9b5;
  --teal-dark: #0c8a95;
  --brown: #8b4b20;
  --orange: #f47c20;
  --cream: #fff8f0;
  --cream-deep: #fff0e0;
  --warm-white: #fffdf9;
  --ink: #1a2f4a;
  --text-muted: #5d6e7e;
  --white: #ffffff;

  --font-display: "Baloo 2", "Quicksand", sans-serif;
  --font-body: "Quicksand", "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 28px rgba(13, 39, 70, 0.1);
  --shadow-pop: 0 12px 32px rgba(13, 39, 70, 0.16);
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--pink);
  margin-bottom: 10px;
}
.eyebrow::before,
.eyebrow::after {
  content: "✦";
  font-size: 0.65rem;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(232, 56, 109, 0.35);
}
.btn-primary:hover {
  background: #c42a5a;
}

.btn-outline {
  background: transparent;
  border: 2.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(91, 158, 42, 0.35);
}
.btn-green:hover {
  background: #4a8520;
}

.btn-outline-green {
  border: 2.5px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================
   HEADER — overridden below by dark theme block
   ============================================ */

/* HERO SLIDER — replaced by Owl Carousel, styles in appended block below */

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--navy);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stats-grid .stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  font-weight: 800;
}
.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ============================================
   OUR RANGE — category strip
   ============================================ */
.range-section {
  padding: 100px 0 80px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.range-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.range-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pop);
}
.range-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* ============================================
   PRODUCT CATALOG GALLERY
   (Replaces flavour grid — Image 3 style)
   ============================================ */
.catalog-section {
  padding: 90px 0 100px;
  background: var(--warm-white);
}

/* Category Header Pill */
.catalog-category-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.catalog-category-head .cat-pill {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 999px;
  display: inline-block;
}

/* Individual Category Block */
.catalog-block {
  margin-bottom: 60px;
}

/* Kulfi Punjabi — horizontal scroll row of bars */
.kulfi-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Two-column layout for sections side by side */
.catalog-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
}
.catalog-split-reverse {
  grid-template-columns: 2fr 1fr;
}

/* Kulfi Special — big single product */
.kulfi-special-block {
  background: linear-gradient(135deg, #fff3e0, #ffe0c0);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}
.kulfi-special-block .special-img {
  width: 100%;
  max-width: 340px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}
.kulfi-special-block .special-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  text-align: center;
}

/* Product Item — card style */
.prod-item {
  text-align: center;
}
.prod-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f0f7ff;
  position: relative;
  margin-bottom: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.prod-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}
.prod-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}
.prod-img-wrap:hover img {
  transform: scale(1.06);
}
.prod-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.3;
}

/* Kulfi Punjabi colored backgrounds */
.bg-pink {
  background: #ffebf0;
}
.bg-yellow {
  background: #fff8d6;
}
.bg-green {
  background: #eafbee;
}
.bg-purple {
  background: #f3eeff;
}
.bg-orange {
  background: #fff3e0;
}
.bg-cream {
  background: #fff8f0;
}
.bg-blue {
  background: #e8f4ff;
}
.bg-teal {
  background: #e0f8fa;
}
.bg-brown {
  background: #fff0e8;
}
.bg-amber {
  background: #fffbe0;
}
.bg-mauve {
  background: #f8eeff;
}
.bg-rose {
  background: #ffe8ee;
}
.bg-lime {
  background: #f0fadf;
}
.bg-sky {
  background: #e4f3ff;
}
.bg-peach {
  background: #fff0e4;
}
.bg-sage {
  background: #ecf8e8;
}
.bg-lavender {
  background: #eee8ff;
}

/* Grid layouts for different product rows */
.prod-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prod-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.prod-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.prod-grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

/* Category outer box with colored border */
.cat-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(13, 39, 70, 0.07);
  border: 1.5px solid rgba(13, 39, 70, 0.06);
}

/* Two-panel row: e.g. Chocobar + Cup 60ml */
.cat-row-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

/* Three-panel and custom rows */
.cat-row-3 {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

/* Main catalog row for top section (Kulfi + Special) */
.catalog-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}

/* Bottom section: 1L and 5L tubs */
.tub-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(13, 39, 70, 0.07);
  border: 1.5px solid rgba(13, 39, 70, 0.06);
  margin-bottom: 28px;
}

/* ============================================
   STORY / FEATURE SPLIT
   ============================================ */
.story-section {
  padding: 100px 0;
  background: var(--cream-deep);
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-media {
  position: relative;
}
.story-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}
.story-media .float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-media .float-card .emoji-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.story-media .float-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.95rem;
}
.story-media .float-card span {
  font-size: 0.78rem;
  color: #6a7d8e;
}

.story-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 20px;
}
.story-copy p {
  color: #4a5f70;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.story-list {
  margin: 26px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.story-list li .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   QUALITY / VALUE PROPS
   ============================================ */
.values-section {
  padding: 90px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(13, 39, 70, 0.07);
  transition: transform 0.3s ease;
  border: 1.5px solid rgba(13, 39, 70, 0.04);
}
.value-card:hover {
  transform: translateY(-6px);
}
.value-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}
.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   MASCOT BANNER
   ============================================ */
.mascot-banner {
  background: linear-gradient(
    120deg,
    #e8f5d4 0%,
    #f3f9e9 60%,
    var(--cream) 100%
  );
  padding: 80px 0;
  overflow: hidden;
}
.mascot-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.mascot-grid h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}
.mascot-grid h2 .green {
  color: var(--green);
}
.mascot-grid p {
  margin: 16px 0 28px;
  color: #44593f;
  font-size: 1.05rem;
  max-width: 460px;
}
.mascot-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mascot-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
  padding: 90px 0;
  background: var(--navy);
}
.testimonial-section .section-head h2 {
  color: var(--white);
}
.testimonial-section .section-head p {
  color: rgba(255, 255, 255, 0.65);
}
.testimonial-section .eyebrow {
  color: var(--gold);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: background 0.25s ease;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
}
.testimonial-person strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  display: block;
  font-weight: 700;
}
.testimonial-person span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 72px 0;
  background: var(--pink);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.newsletter-copy h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 6px;
}
.newsletter-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 36px rgba(232, 56, 109, 0.25);
  min-width: 380px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  color: var(--navy);
}
.newsletter-form button {
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.newsletter-form button:hover {
  background: #0a1e35;
}
.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 44px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.footer-social a:hover {
  background: var(--pink);
}
.footer-social svg {
  width: 17px;
  height: 17px;
  color: var(--white);
}

.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   SCROLL-TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 56, 109, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #c42a5a;
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .slide {
    transition: none;
  }
}

/* ============================================
   RESPONSIVE — 1080px
   ============================================ */
@media (max-width: 1080px) {
  .range-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kulfi-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .prod-grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
  .prod-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-row-3 {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-top-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — 860px
   ============================================ */
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta .btn-primary span {
    display: none;
  }

  .hero-slider {
    height: 580px;
    margin-top: 72px;
  }
  .header-inner {
    height: 72px;
  }
  .slide-text {
    max-width: 90%;
  }
  .slide-badges {
    gap: 10px;
  }
  .slide-badge {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
  .slide-badge .badge-ico {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-media .float-card {
    right: 10px;
    bottom: -18px;
  }

  .mascot-grid {
    grid-template-columns: 1fr;
  }
  .mascot-media {
    order: -1;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Catalog responsive */
  .kulfi-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-row-2 {
    grid-template-columns: 1fr;
  }
  .cat-row-3 {
    grid-template-columns: 1fr;
  }
  .catalog-top-row {
    grid-template-columns: 1fr;
  }
  .prod-grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
  .prod-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .prod-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .prod-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — 540px
   ============================================ */
@media (max-width: 540px) {
  .container {
    padding: 0 16px;
  }

  .range-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }

  .slide-text h1 {
    font-size: 2rem;
  }
  .slide-text p {
    font-size: 1rem;
  }
  .hero-slider {
    height: 600px;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
  }
  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }

  .section-head {
    margin-bottom: 32px;
  }
  .range-section,
  .story-section,
  .values-section,
  .mascot-banner,
  .testimonial-section {
    padding: 64px 0;
  }
  .catalog-section {
    padding: 64px 0 80px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Catalog mobile */
  .kulfi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-8 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .prod-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .prod-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .prod-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-img-wrap img {
    height: 110px;
  }
  .prod-label {
    font-size: 0.74rem;
  }
  .cat-box {
    padding: 16px;
  }
  .tub-section {
    padding: 18px;
  }
  .catalog-block {
    margin-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .prod-grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .kulfi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   UPDATED: DARK HEADER (Image 1 reference)
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #080117 0%, #010111 40%, #120321 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.main-nav a:hover {
  color: #fff;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a.active {
  color: #fff;
}

/* Find Near You pill button — matches Image 1 */
.btn-find-you {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(232, 56, 109, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.btn-find-you svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-find-you:hover {
  background: #c42a5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 56, 109, 0.5);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transition: 0.3s;
  display: block;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1255 100%);
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.mobile-drawer.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 32px;
  gap: 0;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #fff;
}
.mobile-nav .mobile-cta {
  margin-top: 20px;
  justify-content: center;
  font-size: 0.82rem;
  border-bottom: none;
}

/* ============================================
   OWL CAROUSEL HERO
   ============================================ */
.hero-section {
  position: relative;
  margin-top: 80px;
}

/* Owl slide base */
.owl-slide {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.owl-slide-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.owl-slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px;
}

.owl-slide-text {
  max-width: 560px;
}
.slide-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}
.owl-slide-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  color: var(--navy);
}
.owl-slide-text h1 .accent {
  color: var(--pink);
  display: block;
}
.owl-slide-text h1 .accent-script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--pink);
  font-size: 1.15em;
}
.owl-slide-text p {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 600;
}
.slide-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.slide-badge .badge-ico {
  font-size: 0.95rem;
}

/* Owl Carousel custom nav arrows */
.owl-hero .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.owl-hero .owl-nav button {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 6px 20px rgba(13, 39, 70, 0.18);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.2s ease !important;
  font-size: 0 !important;
}
.owl-hero .owl-nav button:hover {
  background: #fff !important;
  transform: scale(1.08);
}
/* Arrow icons via CSS */
.owl-hero .owl-prev::after,
.owl-hero .owl-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid var(--navy);
  border-right: 2.5px solid var(--navy);
}
.owl-hero .owl-prev::after {
  transform: rotate(-135deg) translateX(-2px);
}
.owl-hero .owl-next::after {
  transform: rotate(45deg) translateX(-2px);
}

/* Owl dots */
.owl-hero .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.owl-hero .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 39, 70, 0.25) !important;
  transition: all 0.3s ease;
  display: block;
  margin: 0;
}
.owl-hero .owl-dot.active span {
  background: var(--pink) !important;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   CATALOG REFERENCE IMAGE
   ============================================ */
.catalog-ref-img {
  margin-bottom: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13, 39, 70, 0.12);
  border: 2px solid rgba(13, 39, 70, 0.06);
}
.catalog-ref-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ============================================
   GRID HELPERS (renamed to avoid conflicts)
   ============================================ */
.prod-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.prod-grid-3c {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.prod-grid-4c {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.prod-grid-8c {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.cat-row-2h {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

/*  */
s .range-section {
  max-width: 100%;
  margin: auto;
  background: white;
  border-radius: 30px;
  padding: 40px;
}

.title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1c2353;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.title span {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #ff2d55;
  vertical-align: middle;
  margin: 0 15px;
  border-radius: 20px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s;
  cursor: pointer;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.08);
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 10px;
  border-radius: 50px 0px 0px 0px;
}

.content h3 {
  font-size: 16px;
  font-weight: bold;
  color: #2d2153;
}

.content p {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.content a {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.content a:hover {
  background: #2b2b88;
  color: white;
}

/* Card Colors */

.pink {
    background: #f5aeb6;
}
.brown {
  background: #edd2b8;
}

.yellow {
  background: #f8e1a9;
}

.purple {
  background: #ead9f6;
}

.blue {
  background: #d8e7fb;
}

/* Tablet */

@media (max-width: 991px) {
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-section {
  }
}

/* Mobile */

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

  .title {
    font-size: 26px;
  }
}

/*  */

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1080px) {
  .prod-grid-8c {
    grid-template-columns: repeat(4, 1fr);
  }
  .prod-grid-4c {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-row-3 {
    grid-template-columns: 1fr 1fr;
  }
  .cat-row-2h {
    grid-template-columns: 1fr;
  }
  .catalog-top-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .btn-find-you span {
    display: none;
  }
  .btn-find-you {
    padding: 10px 14px;
  }
  .hero-section {
    margin-top: 80px;
  }
  /* .owl-slide {
    height: 560px;
  } */
  .owl-slide-text {
    max-width: 92%;
  }
  .prod-grid-8c {
    grid-template-columns: repeat(4, 1fr);
  }
  .cat-row-3 {
    grid-template-columns: 1fr;
  }
  .cat-row-2h {
    grid-template-columns: 1fr;
  }
  .catalog-top-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .btn-find-you {
    padding: 9px 12px;
  }
  /* .owl-slide {
    height: 520px;
  } */
  .prod-grid-8c {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .prod-grid-4c {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-3c {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .kulfi-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .slide-badges {
    gap: 8px;
  }
  .slide-badge {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}

@media (max-width: 400px) {
  .prod-grid-8c {
    grid-template-columns: repeat(2, 1fr);
  }
  /* .owl-slide {
    height: 580px;
  } */
  .owl-slide-text h1 {
    font-size: 1.9rem;
  }
}
