/* ═══════════════════════════════════════════════
   MELADO — Lebagol-style design system
   Kalnia (serif display) + DM Sans (body) + Sacramento (script)
   White base · cream sections · pastel product blocks · pink primary
═══════════════════════════════════════════════ */
:root {
  --primary:      #E23A7E;   /* Melado pink (Lebagol red ki jagah) */
  --primary-deep: #C42765;
  --ink:          #141414;
  --text:         #555555;
  --bg:           #FFFFFF;
  --cream:        #FCF6EF;
  --border:       #E7E2DC;
  --mustard:      #E8A33D;   /* star ratings */
  --green:        #1E8A4C;

  /* pastel product blocks */
  --mint:     #C9E7CC;
  --pinkb:    #FFC9DA;
  --blueb:    #CBE3F6;
  --yellowb:  #FFE2A2;
  --tealb:    #ABDCD3;
  --lavender: #DCD2F2;

  --font-display: "Kalnia", Georgia, serif;
  --font-body:    "DM Sans", "Helvetica Neue", sans-serif;
  --font-script:  "Sacramento", cursive;

  --radius:    18px;
  --radius-lg: 26px;
  --section:   clamp(4rem, 8vw, 7rem);
  --shadow: 0 18px 44px -18px rgba(20, 20, 20, .18);
}

/* ═══════════ Reset & base ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; color-scheme: light; }

/* har anchor target sticky header ke neeche na chhupe */
[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto zaroori hai — warna HTML height attribute images ko stretch kar deta hai */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
figure { margin: 0; }

::selection { background: var(--primary); color: #fff; }

/* ═══════════ Accessibility & interaction basics ═══════════ */
a, button, input, select, textarea, .tab {
  touch-action: manipulation;
}
a, button { -webkit-tap-highlight-color: transparent; }

:is(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .tab:focus-visible { border-radius: 999px; }

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .7em 1.4em;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 { text-wrap: balance; }

.p-card__price, .package__price, .stat__value {
  font-variant-numeric: tabular-nums;
}

.container { width: min(1220px, 92%); margin-inline: auto; }
.section { padding-block: var(--section); }

/* ═══════════ Typography ═══════════ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.01em;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.script--dark { color: var(--ink); }
.script--light { color: #fff; opacity: .95; }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head--center { text-align: center; }
.section-head--center .section-head__sub { margin-inline: auto; }
.section-head__sub {
  max-width: 36rem;
  margin-top: .8rem;
  color: var(--text);
}
.section-head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.text-light { color: #fff; }

/* ═══════════ Buttons & links ═══════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: .8em 1.9em;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(226, 58, 126, .6);
}
.btn--dark { background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: #000; border-color: #000; box-shadow: 0 12px 26px -12px rgba(0,0,0,.5); }
.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.btn--sm { padding: .65em 1.5em; font-size: .85rem; }
.btn--full { width: 100%; }

.arrow-link {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  padding-bottom: .2em;
  transition: color .2s ease;
}
.arrow-link:hover { color: var(--primary); }

.arrow-list { display: grid; gap: .65rem; margin-block: 1.4rem; }
.arrow-list a {
  font-weight: 700;
  color: var(--ink);
  transition: color .2s ease, padding-left .2s ease;
}
.arrow-list a::before { content: "→ "; color: var(--primary); }
.arrow-list a:hover { color: var(--primary); padding-left: 6px; }

/* ═══════════ Announcement marquee ═══════════ */
.announce {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding-block: .5rem;
}
.announce__track {
  display: flex;
  width: max-content;
  animation: announce 30s linear infinite;
}
.announce__track span {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  padding-right: 1rem;
}
@keyframes announce { to { transform: translateX(-50%); } }

/* ═══════════ Header ═══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .55rem;
}

.logo { display: flex; align-items: center; }
.logo__img { height: 54px; width: auto; mix-blend-mode: multiply; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links > a:not(.btn) {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  transition: color .2s ease;
}
.nav__links > a:not(.btn):hover { color: var(--primary); }
.nav__links > a.is-current { color: var(--primary); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 25px; height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}

/* ═══════════ Intro hero ═══════════ */
.intro { padding-block: clamp(3.5rem, 7vw, 6rem); }

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.intro__collage { position: relative; padding-bottom: 4rem; }
.intro__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.intro__photo img { width: 100%; height: 100%; object-fit: cover; }
.intro__photo--tall { width: 72%; aspect-ratio: 3 / 3.7; }
.intro__photo--offset {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  aspect-ratio: 3 / 3.4;
  border: 6px solid #fff;
}

/* rotating circular badge */
.spin-badge {
  position: absolute;
  top: -28px; right: 8%;
  width: 118px; height: 118px;
  filter: drop-shadow(0 10px 20px rgba(20,20,20,.15));
}
.spin-badge svg { width: 100%; height: 100%; }
.spin-badge__ring {
  animation: spin 14s linear infinite;
  transform-origin: 60px 60px;
}
.spin-badge text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  fill: var(--ink);
}
@keyframes spin { to { transform: rotate(360deg); } }

.intro__copy h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}
.intro__text { margin-top: 1rem; max-width: 30rem; }
.intro__cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ═══════════ Promo trio ═══════════ */
.promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.promo {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.promo:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.promo h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); position: relative; z-index: 2; }
.promo__sub { font-size: .92rem; margin-block: .6rem 1.1rem; max-width: 15rem; position: relative; z-index: 2; }
/* buttons teeno cards mein aik hi line par (bottom-aligned) */
.promo .btn { position: relative; z-index: 2; margin-top: auto; }
.promo .script { position: relative; z-index: 2; }

.promo--mint { background: var(--mint); }
.promo--pink { background: var(--primary); }
.promo--teal { background: var(--tealb); }

.promo__blob {
  position: absolute;
  right: -18%; bottom: -22%;
  width: 70%; aspect-ratio: 1;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  background: rgba(255, 255, 255, .45);
}
.promo__blob--b { background: rgba(255, 255, 255, .35); left: -20%; top: -25%; right: auto; bottom: auto; }

.promo__img {
  position: absolute;
  right: 4%; bottom: 2%;
  width: 46%;
  z-index: 1;
  transition: transform .4s ease;
}
.promo:hover .promo__img { transform: rotate(-4deg) scale(1.05); }

.promo--photo { justify-content: flex-start; }
.promo__photo {
  position: absolute;
  right: 0; bottom: 0;
  width: 62%;
  z-index: 1;
}

/* ═══════════ Shop by category ═══════════ */
.cats { padding-top: clamp(2rem, 4vw, 3rem); }

.cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.cat-card {
  position: relative;
  font-family: var(--font-body);
  text-align: left;
  border: 0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat-card:hover,
.cat-card[aria-expanded="true"] { transform: translateY(-6px); box-shadow: var(--shadow); }

.cat-card--pink   { background: var(--pinkb); }
.cat-card--yellow { background: var(--yellowb); }
.cat-card--blue   { background: var(--blueb); }

.cat-card__rank {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: #fff;
  color: var(--primary);
  padding: .5em 1.2em;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.cat-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  position: relative;
  z-index: 2;
}
.cat-card > p {
  font-size: .93rem;
  color: var(--ink);
  opacity: .75;
  margin-block: .35rem 1.2rem;
  max-width: 58%;
  position: relative;
  z-index: 2;
}

.cat-card__cta {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .75em 1.6em;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  transition: background .25s ease;
}
.cat-card:hover .cat-card__cta { background: var(--primary); }
.cat-card__cta i { font-style: normal; display: inline-block; transition: transform .25s ease; }
.cat-card[aria-expanded="true"] .cat-card__cta i { transform: rotate(180deg); }

.cat-card__circle {
  position: absolute;
  right: -7%;
  bottom: -9%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
  background: #fff;
}
.cat-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-card:hover .cat-card__circle img { transform: scale(1.07); }
.cat-card__circle--contain img { object-fit: contain; padding: 14%; }

.cat-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 1.6rem;
  animation: panelIn .35s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.cat-panel__group { margin-bottom: 1.4rem; }
.cat-panel__group h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .6rem;
}
.cat-panel__group h4 span { font-family: var(--font-body); font-size: .82rem; color: var(--text); }
.cat-panel__note { font-size: .85rem; margin-bottom: 1.2rem; }

/* ═══════════ Product cards (Lebagol style) ═══════════ */
.p-card { text-align: center; }

.p-card__media {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.p-card__media img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  transition: transform .45s ease;
}
.p-card:hover .p-card__media img { transform: scale(1.08) rotate(-2deg); }

/* photo tiles fill the block */
.p-card__media img[src$=".jpg"] { width: 100%; height: 100%; object-fit: cover; }

.block-mint     { background: var(--mint); }
.block-pink     { background: var(--pinkb); }
.block-blue     { background: var(--blueb); }
.block-yellow   { background: var(--yellowb); }
.block-teal     { background: var(--tealb); }
.block-lavender { background: var(--lavender); }

.p-card__badge {
  position: absolute;
  top: .9rem; left: .9rem;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35em 1em;
  border-radius: 999px;
}

.p-card__rating {
  color: var(--mustard);
  font-size: .85rem;
  letter-spacing: .12em;
}
.p-card__rating span { color: var(--text); letter-spacing: 0; font-size: .78rem; }

.p-card h3 {
  font-size: 1.18rem;
  margin-top: .3rem;
}
.p-card h3 em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .78rem;
  color: var(--text);
}
.p-card__price {
  font-weight: 700;
  color: var(--primary);
  margin-top: .25rem;
}
.p-card__price span { color: var(--text); font-weight: 500; font-size: .8rem; }

/* WhatsApp order link (JS se generate hota hai) */
.p-card__order {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid transparent;
  margin-top: .3rem;
  transition: border-color .2s ease;
}
.p-card__order:hover { border-color: var(--green); }

/* ═══════════ Occasion grid ═══════════ */
.occasion__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* ═══════════ Feature split ═══════════ */
.feature { background: var(--cream); padding-block: var(--section); }

.feature__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.feature__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }

.feature__list { display: grid; gap: 1.4rem; margin-block: 1.8rem; }
.feature__list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature__icon {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.3rem;
}
.feature__list h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.feature__list p { font-size: .92rem; }

.feature__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.feature__blob {
  position: absolute;
  inset: 8% 6%;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  background: #EFD9BE;
}
.feature__main {
  position: relative;
  z-index: 2;
  width: 58%;
  filter: drop-shadow(0 24px 30px rgba(20, 20, 20, .18));
}
.feature__float {
  position: absolute;
  z-index: 3;
  width: 17%;
  animation: bob 6s ease-in-out infinite;
}
.feature__float--a { left: 6%; top: 10%; }
.feature__float--b { right: 8%; bottom: 12%; animation-delay: 3s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-16px) rotate(4deg); }
}

/* ═══════════ Perfect grid + tabs ═══════════ */
.perfect__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.tabs { display: flex; flex-wrap: wrap; gap: .6rem; }
.tab {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: .55em 1.4em;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.perfect__cta { text-align: center; margin-top: clamp(2.2rem, 4vw, 3.2rem); }

/* ═══════════ Icon strip ═══════════ */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.4rem;
}
.strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.6rem;
}
.strip__row span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ═══════════ Ingredients ═══════════ */
.ingredients .section-head { text-align: center; }

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ing__circle {
  width: min(190px, 70%);
  aspect-ratio: 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform .3s ease;
}
.ing:hover .ing__circle { transform: scale(1.06) rotate(-3deg); }
.ing__circle img { width: 78%; height: 78%; object-fit: contain; }
.ing__circle img[src$=".jpg"] { width: 100%; height: 100%; object-fit: cover; }
.circ-pink   { background: var(--pinkb); }
.circ-blue   { background: var(--blueb); }
.circ-yellow { background: var(--yellowb); }
.circ-mint   { background: var(--mint); }

.ing h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.ing p { font-size: .9rem; max-width: 15rem; margin-inline: auto; }

/* ═══════════ Double promo banners ═══════════ */
.banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.banner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  min-height: 300px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.banner:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1.2rem; }
.banner img { width: 100%; max-height: 260px; object-fit: contain; transition: transform .4s ease; }
.banner:hover img { transform: rotate(-4deg) scale(1.06); }
.banner--pink { background: var(--primary); }
.banner--mustard { background: var(--mustard); }

/* ═══════════ Franchise ═══════════ */
.franchise { background: var(--cream); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 1.6rem 1rem;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  margin-top: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.package {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package--featured { outline: 3px solid var(--primary); outline-offset: 3px; }

.package__badge {
  position: absolute;
  top: -13px; left: 1.9rem;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4em 1.2em;
  border-radius: 999px;
}
.package__name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}
.package__price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--ink);
  line-height: 1.1;
  margin-top: .5rem;
}
.package__size { font-size: .84rem; margin-block: .3rem 1.2rem; }
.package ul { flex: 1; margin-bottom: 1.6rem; width: 100%; }
.package ul li {
  font-size: .93rem;
  color: var(--ink);
  padding-block: .55rem;
  border-top: 1px dashed rgba(20, 20, 20, .18);
}
.package ul li:first-child { border-top: 0; }

.packages__note { font-size: .8rem; margin-top: 1.2rem; opacity: .7; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.steps span {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.steps p { font-size: .88rem; }

.franchise__quote {
  max-width: 44rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
}
.franchise__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--ink);
  line-height: 1.4;
  margin-top: .6rem;
}
.franchise__quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}

.franchise__form-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 4vw, 3.2rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  scroll-margin-top: 6rem;
}
.franchise__form-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .7rem;
}
.franchise__form-copy p { margin-bottom: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}
.form-field label span { font-weight: 500; opacity: .6; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: .75em 1em;
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(226, 58, 126, .16);
}
.form-field textarea { resize: vertical; }

.form-success {
  margin-top: 1rem;
  background: #E6F4EC;
  color: #1B7B4B;
  font-weight: 700;
  padding: .9em 1.2em;
  border-radius: 12px;
}

.whatsapp-link {
  display: inline-block;
  font-weight: 700;
  color: #1B7B4B;
  background: #E6F4EC;
  padding: .6em 1.2em;
  border-radius: 999px;
}

/* ═══════════ Testimonials ═══════════ */
.testimonials .section-head { text-align: center; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.t-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
  margin-top: .7rem;
}
.t-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}

/* ═══════════ Page hero (products page) ═══════════ */
.page-hero {
  background: var(--cream);
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-hero__title { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.page-hero .section-head__sub { margin-inline: auto; }

/* ═══════════ Menu page grid ═══════════ */
.menu { padding-block: clamp(3rem, 6vw, 5rem); }
.menu .tabs { justify-content: center; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.4rem;
}
.menu-card { text-align: center; }

.menu-card__tag {
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: .1rem;
}

/* ── Price chart (merged menu — aik flavour, kai formats) ── */
.price-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
}
.price-table__scroll { overflow-x: auto; }
.price-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.price-table thead th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  text-align: left;
  padding: .7em .9em;
  border-bottom: 2px solid var(--primary);
}
.price-table thead th:not(:first-child) { color: var(--primary); }
.price-table tbody th {
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  padding: .7em .9em;
}
.price-table tbody th span { font-weight: 500; color: var(--text); font-size: .82rem; }
.price-table tbody td {
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  padding: .7em .9em;
}
.price-table tbody tr + tr { border-top: 1px dashed var(--border); }
.price-table__extra {
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

/* card ke neeche available formats */
.menu-card__formats {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text);
  margin-top: .2rem;
}

/* ── Toppings wide card ── */
.menu-card--wide { grid-column: 1 / -1; text-align: left; }
.toppings-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.toppings-card h3 { font-size: 1.6rem; margin-block: .3rem .4rem; }
.toppings-card h3 span { font-size: 1rem; color: var(--text); font-family: var(--font-body); }
.toppings-card p { font-size: .92rem; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chips li {
  font-size: .82rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4em 1em;
}

.menu__note {
  text-align: center;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  font-size: .92rem;
}
.menu__note a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════ Footer ═══════════ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding-top: var(--section);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__tag { max-width: 20rem; margin-block: .4rem 1.2rem; }
.footer__social { display: flex; gap: 1.4rem; }
.footer__social a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer__social a:hover { color: var(--primary); border-color: var(--primary); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: .55rem; }
.footer__col li { font-size: .93rem; }
.footer__col a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  border-top: 1px solid var(--border);
  padding-block: 1.3rem;
  font-size: .82rem;
}

/* ═══════════ WhatsApp float ═══════════ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 28px; height: 28px; }

/* ═══════════ Reveal on scroll ═══════════ */
/* Progressive enhancement — JS na chale to content hamesha nazar aaye */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(26px); }

.promos .reveal:nth-child(2),
.occasion__grid .reveal:nth-child(2),
.perfect__grid .reveal:nth-child(2),
.ingredients__grid .reveal:nth-child(2),
.packages .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.testimonials__grid .reveal:nth-child(2) { transition-delay: .1s; }
.promos .reveal:nth-child(3),
.occasion__grid .reveal:nth-child(3),
.perfect__grid .reveal:nth-child(3),
.ingredients__grid .reveal:nth-child(3),
.packages .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.testimonials__grid .reveal:nth-child(3) { transition-delay: .2s; }
.occasion__grid .reveal:nth-child(4),
.perfect__grid .reveal:nth-child(4),
.ingredients__grid .reveal:nth-child(4),
.steps .reveal:nth-child(4) { transition-delay: .3s; }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1024px) {
  .occasion__grid, .perfect__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: repeat(3, 1fr); }
  .promos { grid-template-columns: 1fr; }
  .promo { min-height: 320px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
}

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__collage { max-width: 480px; }
  .feature__grid { grid-template-columns: 1fr; }
  .feature__visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .banners { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .franchise__form-wrap { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Mobile nav */
  .nav__toggle { display: flex; z-index: 300; position: relative; }
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: #fff;
    font-size: 1.15rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; z-index: 200; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 700px) {
  .toppings-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .cats__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .occasion__grid, .perfect__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .menu__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: 1fr; }
  .strip__row { justify-content: center; }
  .banner { grid-template-columns: 1fr; text-align: center; }
  .banner div { display: grid; justify-items: center; }
  .logo__img { height: 46px; }
  .spin-badge { width: 92px; height: 92px; top: -18px; }
}

/* ═══════════ Reduced motion ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
