/* =============================================
   SCOOPS 'N' SHAKES — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Geologica:wght@700;800;900&display=swap');

:root {
  --pink: #e24c91;
  --pink-light: #ee7db0;
  --pink-pale: #fce4f1;
  --teal: #00C4B4;
  --teal-light: #5EEEE3;
  --teal-pale: #D0F9F5;
  --purple: #6C3FC8;
  --purple-light: #A07DE0;
  --yellow: #FFD93D;
  --orange: #FF6B35;
  --cream: #FFF8F0;
  --cream-dark: #FFF0E0;
  --dark: #1A1A2E;
  --dark-mid: #2D2D4E;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;

  /* RGB channels for alpha variants */
  --pink-rgb: 255 45 120;
  --teal-rgb: 0 196 180;
  --purple-rgb: 108 63 200;
  --yellow-rgb: 245 166 35;

  --shadow-sm: 0 2px 8px rgb(var(--pink-rgb) / 0.12);
  --shadow-md: 0 6px 24px rgb(var(--pink-rgb) / 0.18);
  --shadow-lg: 0 12px 40px rgb(var(--pink-rgb) / 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 999px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: #d4206a; }
* { scrollbar-width: thin; scrollbar-color: var(--pink) var(--cream); }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.display-font { font-family: 'Geologica', sans-serif; }

h1, h2, h3 { font-weight: 900; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Geologica', sans-serif;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 18px rgb(var(--pink-rgb) / 0.4);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgb(var(--pink-rgb) / 0.5); }

.btn-secondary {
  background: white;
  color: var(--pink);
  border: 2.5px solid var(--pink);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--pink-pale); box-shadow: var(--shadow-md); }

.btn-teal {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 18px rgb(var(--teal-rgb) / 0.4);
}
.btn-teal:hover { box-shadow: 0 8px 28px rgb(var(--teal-rgb) / 0.5); }

.btn-lg { padding: 0.7rem 1.6rem; font-size: 0.95rem; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-bestseller { background: var(--yellow); color: var(--dark); }
.badge-special    { background: var(--pink); color: white; }
.badge-new        { background: var(--teal); color: white; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--pink);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: clamp(36px, 10vw, 48px);
  width: auto;
  display: block;
}
.footer-logo {
  height: 86px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.2);
  color: white;
}
.nav-cta {
  background: white;
  color: var(--pink) !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-cta .ic {
  filter: invert(29%) sepia(85%) saturate(1200%) hue-rotate(307deg) brightness(95%) contrast(95%);
}
.nav-cta:hover { background: var(--cream) !important; color: var(--pink) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
  background: var(--pink);
  border-top: 1.5px solid rgba(255,255,255,0.2);
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.2); color: white; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: white;
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s;
  cursor: pointer;
}
.social-icon:hover { transform: translateY(-3px); }
/* .social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-zomato { background: #cb202d; }
.social-swiggy { background: #fc8019; }
.social-wa { background: #25d366; } */

.footer-social img { width: 30px; height: 30px; object-fit: contain; }
.footer-social .social-swiggy img { width: 40px; height: 40px; }
.footer-phone-icon { filter: brightness(0) invert(1); }
.footer-menu-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--pink-light);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-light);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.9;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* =============================================
   HERO — index.html
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF2D78 0%, #FF6FA3 45%, #FFB347 100%);
  padding: 4rem 1.25rem 7rem;
}
.hero-blob-1, .hero-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: var(--purple);
  top: -150px; left: -100px;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: var(--yellow);
  bottom: -100px; right: -80px;
  animation-delay: -4s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-15px) scale(1.05); }
  66% { transform: translate(-15px,10px) scale(0.97); }
}

.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-block;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
  animation: fadeDown 0.7s ease both;
}

.info-strip {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--teal-pale) 100%);
}
.info-strip-wave {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  line-height: 0;
}
.info-strip-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-left {
  flex-shrink: 0;
  padding: 0 1rem;
}
.hero-logo {
  height: 180px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
  animation: fadeDown 0.7s 0.1s ease both;
}
.hero-right {
  text-align: left;
  padding-left: 2rem;
}
.hero-items {
  font-family: 'Righteous', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: white;
  display: block;
  margin-bottom: -2rem;
}
@media (max-width: 768px) {
  .hero-right { padding-left: 0; }
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; gap: 1.5rem; }
  .hero-right { text-align: center; }
  .hero-logo { height: 180px; }
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 1rem auto 2rem;
  font-weight: 600;
  animation: fadeDown 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.45s ease both;
}
@media (max-width: 768px) {
  .hero-btns { justify-content: center; }
}
.hero-btns .btn-primary { background: white; color: var(--pink); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.hero-btns .btn-primary:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.hero-btns .btn-secondary { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.6); }
.hero-btns .btn-secondary:hover { background: rgba(255,255,255,0.3); }

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 80px;
  overflow: hidden;
}
.hero-wave svg { display: block; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floating emojis */
.floating-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float-em {
  position: absolute;
  font-size: 2rem;
  animation: floatEm 6s ease-in-out infinite;
  opacity: 0.7;
}
.float-em:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s; }
.float-em:nth-child(2) { top: 25%; right: 10%; animation-delay: -2s; font-size: 1.6rem; }
.float-em:nth-child(3) { bottom: 25%; left: 12%; animation-delay: -4s; font-size: 1.4rem; }
.float-em:nth-child(4) { top: 55%; right: 8%;  animation-delay: -1s; font-size: 2.2rem; }
@keyframes floatEm {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us { padding: 4rem 1.25rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: var(--pink-pale);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.why-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.float-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  font-size: unset;
}
.info-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  color: var(--pink);
}
/* Inline icon used inside text/buttons */
.ic {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.ic-sm { width: 14px; height: 14px; }
.ic-md { width: 20px; height: 20px; }
.ic-lg { width: 36px; height: 36px; }
.why-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.why-card p { color: var(--gray); font-size: 0.9rem; }

/* =============================================
   FEATURED ITEMS
   ============================================= */
.featured { padding: 1rem 1.25rem 4rem; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.item-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.item-emoji { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.item-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}
.item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  left: auto;
}
.item-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.55) 0%, transparent 100%);
  padding: 1.5rem 0.85rem 0.75rem;
}
.item-name-overlay h3 {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
.item-body { display: none; }
.item-card .badge { margin-bottom: 0; }
.item-card h3 { margin-bottom: 0.4rem; }
.item-card p { color: var(--gray); font-size: 0.88rem; margin-bottom: 1rem; }
.item-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pink);
}

/* =============================================
   ORDER ONLINE
   ============================================= */
.order-online {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.order-online h2 { color: white; margin-bottom: 0.5rem; }
.order-online p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.order-badges {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.order-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.order-badge:hover { transform: scale(1.05); }
.order-badge-icon { width: 24px; height: 24px; object-fit: contain; }
.badge-zomato { background: #cb202d; color: white; }
.badge-swiggy { background: #fc8019; color: white; }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  padding: calc(77px + 2.5rem) 1.25rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-hero h1 { color: white; font-family: 'Geologica', sans-serif; }
.menu-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-top: 0.5rem; }
.menu-hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; }

.menu-tabs-wrap {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--pink-pale);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: white;
  border: 2px solid var(--pink-pale);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--dark-mid);
}
.tab-btn:hover { border-color: var(--pink); color: var(--pink); }
.tab-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
  box-shadow: 0 3px 12px rgb(var(--pink-rgb) / 0.35);
}

.menu-sections { padding: 2rem 1.25rem; max-width: 1100px; margin: 0 auto; }

.menu-section { margin-bottom: 3.5rem; scroll-margin-top: 130px; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--pink-pale);
}
.menu-section-header .section-emoji { font-size: 2rem; }
.menu-section-header h2 {
  font-family: 'Geologica', sans-serif;
  color: var(--dark);
  font-size: 1.7rem;
}
.menu-section-header .count {
  margin-left: auto;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Scoop tier cards */
.scoop-tier {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border-left: 5px solid var(--pink);
}
.scoop-tier:nth-child(2) { border-color: var(--teal); }
.scoop-tier:nth-child(3) { border-color: var(--purple); }
.scoop-tier:nth-child(4) { border-color: var(--orange); }

.scoop-prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.price-tag {
  background: var(--pink-pale);
  color: var(--pink);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
}
.price-tag.teal { background: var(--teal-pale); color: var(--teal); }
.price-tag.purple { background: #EDE6FF; color: var(--purple); }

.flavour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.flavour-tag {
  padding: 0.3rem 0.8rem;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.flavour-tag.bestseller {
  background: var(--yellow);
  color: var(--dark);
}
.flavour-tag.bestseller::after { content: ' ⭐'; }

/* Menu item grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.menu-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.35rem; }
.menu-item-prices {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.menu-item-price {
  font-weight: 800;
  color: var(--pink);
  font-size: 1rem;
}
.menu-item-price-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 600;
}
.menu-item .badge { position: absolute; top: 0.75rem; right: 0.75rem; font-size: 0.65rem; }

/* Combo cards */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.combo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 2px solid var(--pink-pale);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.combo-card::after {
  content: '🔥 SAVE ₹' attr(data-save);
  position: absolute;
  top: 1rem; right: -2rem;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 2.5rem;
  transform: rotate(35deg);
}
.combo-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.combo-items {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-mid);
  line-height: 1.7;
}
.combo-price-row { display: flex; align-items: center; gap: 0.75rem; }
.combo-original { text-decoration: line-through; color: var(--gray); font-size: 0.95rem; }
.combo-offer { font-size: 1.5rem; font-weight: 900; color: var(--pink); }

/* Toppings */
.toppings-box {
  background: linear-gradient(135deg, var(--pink-pale), var(--teal-pale));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}
.toppings-box h3 { margin-bottom: 1rem; }
.toppings-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.topping-chip {
  background: white;
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Size note */
.size-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
  font-weight: 600;
  background: white;
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

/* =============================================
   ABOUT PAGE — NEW
   ============================================= */

/* ── Hero ── */
.ab-hero {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8F0 60%, #F0FFFE 100%);
  padding: calc(77px + 3rem) 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ab-hero-bg-text {
  position: absolute;
  font-family: 'Geologica', sans-serif;
  font-size: clamp(8rem, 22vw, 20rem);
  color: var(--pink);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.ab-hero-pill {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.ab-hero-h1 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.ab-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
}

/* ── Founder Story ── */
.ab-story {
  background: #fff;
  padding: 5rem 1.5rem;
}
.ab-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ab-story-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.ab-story-h2 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ab-story-left p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.ab-story-card {
  background: linear-gradient(135deg, #FFF0F5, #FFF8F0);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1.5px solid #FFD6E8;
}
.ab-story-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.ab-story-card h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.ab-story-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ab-story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ab-story-badges span {
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

/* ── Stats Strip ── */
.ab-stats {
  background: var(--pink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 1.5rem;
}
.ab-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 0 1rem;
}
.ab-stat:last-child { border-right: none; }
.ab-stat strong {
  display: block;
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ab-stat strong span { font-size: 0.6em; }
.ab-stat p {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ── Quote ── */
.ab-quote {
  background: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
}
.ab-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.ab-quote-mark {
  color: var(--pink);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.ab-quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.ab-quote-cite {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ── What We Serve ── */
.ab-serve {
  background: #fff;
  padding: 5rem 1.5rem;
}
.ab-serve-inner { max-width: 1100px; margin: 0 auto; }
.ab-serve-head {
  margin-bottom: 3rem;
}
.ab-serve-pill {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.ab-serve-h2 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}
.ab-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ab-serve-card {
  border-top: 4px solid var(--ac, var(--pink));
  background: var(--cream);
  border-radius: 0 0 16px 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s;
}
.ab-serve-card:hover { transform: translateY(-4px); }
.ab-serve-num {
  font-family: 'Geologica', sans-serif;
  font-size: 2.5rem;
  color: var(--ac, var(--pink));
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ab-serve-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.ab-serve-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ── Why Us ── */
.ab-why {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.ab-why-inner { max-width: 1100px; margin: 0 auto; }
.ab-why-head { margin-bottom: 3rem; }
.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.ab-why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-right: 1px solid rgba(0,0,0,0.06);
}
.ab-why-item:nth-child(even) { border-right: none; }
.ab-why-item:nth-last-child(-n+2) { border-bottom: none; }
.ab-why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.ab-why-item h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ab-why-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA ── */
.ab-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #d4206a 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.ab-cta-inner h2 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.ab-cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.ab-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ab-cta .btn-outline-pink {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.ab-cta .btn-outline-pink:hover {
  background: rgba(255,255,255,0.15);
}

/* ── About Responsive ── */
@media (max-width: 900px) {
  .ab-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
  .ab-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1.5rem; }
  .ab-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .ab-stat:nth-last-child(-n+2) { border-bottom: none; }
  .ab-serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ab-serve-grid { grid-template-columns: 1fr; }
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-why-item { border-right: none !important; }
  .ab-why-item:last-child { border-bottom: none; }
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   CONTACT PAGE — NEW
   ============================================= */

/* ── Hero ── */
.ct-hero {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8F0 60%, #F0FFFE 100%);
  padding: calc(77px + 4rem) 1.5rem 4rem;
  text-align: center;
}
.ct-hero-pill {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.ct-hero-h1 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.ct-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Main Section ── */
.ct-main {
  background: #fff;
  padding: 5rem 1.5rem;
}
.ct-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Info Block ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.ct-info-item:first-child { padding-top: 0; }
.ct-info-item:last-of-type { border-bottom: none; }
.ct-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.ct-info-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  margin: 0 0 0.25rem;
}
.ct-info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.2rem;
  text-decoration: none;
  display: block;
}
.ct-phone {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
}
.ct-phone:hover { opacity: 0.8; }
.ct-info-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

/* ── Social Buttons ── */
.ct-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.ct-social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ct-social-btn:hover { opacity: 0.88; transform: translateX(4px); }
.ct-social-btn img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.ct-ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: #fff; }
.ct-wa { background: #25D366; color: #fff; }

/* ── Map ── */
.ct-map {
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Order Online ── */
.ct-order {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.ct-order-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.ct-order-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 0.5rem;
}
.ct-order-h2 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.ct-order-sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}
.ct-order-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}
.ct-order-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 240px;
}
.ct-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.ct-order-btn img { width: 28px; height: 28px; object-fit: contain; }
.ct-order-btn svg { margin-left: auto; }
.ct-zomato { background: #fff; color: #CB202D; border: 1.5px solid #eee; }
.ct-swiggy { background: #FC8019; color: #fff; }
.ct-swiggy img { filter: brightness(0) invert(1); }
.ct-whatsapp { background: #25D366; color: #fff; }
.ct-whatsapp img { filter: brightness(0) invert(1); }

/* ── Contact Responsive ── */
@media (max-width: 960px) {
  .ct-main-inner { grid-template-columns: 1fr; }
  .ct-map { height: 360px; }
  .ct-order-inner { flex-direction: column; text-align: center; }
  .ct-order-btns { width: 100%; max-width: 360px; }
  .ct-order-btn { min-width: unset; }
}
@media (max-width: 540px) {
  .ct-map { height: 280px; }
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.icon-pink { background: var(--pink-pale); color: var(--pink); }
.icon-teal { background: var(--teal-pale); }
.icon-purple { background: #EDE6FF; }
.icon-yellow { background: #FFF8D0; }

.info-card h3 { font-size: 1rem; margin-bottom: 0; }
.info-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

.wifi-card {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: white;
}
.wifi-card h3, .wifi-card p { color: white; }
.wifi-pass {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-family: 'Courier New', monospace;
  margin-top: 0.5rem;
}

.map-section { margin-bottom: 3rem; }
.map-section h2 { font-family: 'Geologica', sans-serif; margin-bottom: 1.25rem; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--pink-pale);
}
.map-wrap iframe { display: block; width: 100%; height: 350px; border: none; }

/* =============================================
   FEEDBACK FORM
   ============================================= */
.feedback-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.feedback-section h2 { font-family: 'Geologica', sans-serif; text-align: center; margin-bottom: 0.4rem; }
.feedback-section .section-subtitle { margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgb(var(--pink-rgb) / 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.star-rating {
  display: flex;
  gap: 0.5rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.star-rating input { display: none; }
.star-rating label {
  font-size: 2rem;
  cursor: pointer;
  color: #D1D5DB;
  transition: color 0.15s, transform 0.15s;
  margin-bottom: 0;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--yellow);
  transform: scale(1.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-emoji { font-size: 4rem; margin-bottom: 1rem; display: block; }
.form-success h3 { color: var(--teal); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .story-emoji-stack { padding: 2rem; font-size: 4rem; }
}

/* =============================================
   HOME PAGE — LIGHT HERO
   ============================================= */

.hero-light {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4F0 60%, #FFF0E8 100%);
  height: 100vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: 77px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-light-inner {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero-marquee {
  flex-shrink: 0;
  width: 100%;
}
.hero-light::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(var(--pink-rgb) / 0.08) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.hero-light-left {
  flex: 1;
  min-width: 0;
  max-width: 480px;
}
.hero-open-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(var(--teal-rgb) / 0.1);
  border: 1px solid rgb(var(--teal-rgb) / 0.25);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-wrap: nowrap;
  white-space: nowrap;
  margin-bottom: 1.75rem;
}
.hero-light-headline {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero-light-headline span.pink { color: var(--pink); }
.hero-light-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.hero-light-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-3px);
}
.hero-light-right {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-light-img {
  height: clamp(260px, 55vh, 520px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgb(var(--pink-rgb) / 0.2));
  transform: scaleX(-1);
}
@media (max-width: 900px) {
  .hero-light-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1rem;
  }
  .hero-light-left { max-width: 100%; }
  .hero-light-headline { font-size: clamp(1.7rem, 7vw, 2.8rem); margin-bottom: 0.6rem; }
  .hero-light-tagline { margin-bottom: 1rem; font-size: 0.9rem; }
  .hero-light-btns { justify-content: center; }
  .hero-light-img { height: clamp(160px, 32vh, 280px); }
  .hero-open-badge-light { margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
}
@media (max-width: 480px) {
  .hero-light-img { height: clamp(140px, 28vh, 220px); }
  .hero-light-headline { font-size: clamp(1.6rem, 9vw, 2.2rem); }
}

/* =============================================
   HOME — DIAGONAL MARQUEE
   ============================================= */
.diag-marquee {
  background: var(--cream);
  overflow: hidden;
  padding: 3.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.diag-strip {
  transform: rotate(-5deg);
  width: 130%;
  margin-left: -15%;
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.diag-strip-filled { background: var(--pink); }
.diag-strip-outline {
  background: transparent;
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}
.diag-strip-filled .marquee-track span,
.diag-strip-filled .marquee-dot { color: white; }
.diag-strip-outline .marquee-track span,
.diag-strip-outline .marquee-dot { color: var(--pink); }
@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-track-rev { animation: marquee-rev 32s linear infinite; }

/* =============================================
   HOME — FAN FAVOURITES (favs)
   ============================================= */
.favs-section {
  background: #fff;
  padding: 4rem 2rem;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.favs-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  width: 100%;
}
.favs-headline {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.favs-explore {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.favs-explore:hover { text-decoration: underline; }
.favs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  align-items: stretch;
}
.favs-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
  padding-bottom: 0.5rem;
}
.favs-img-wrap {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  height: clamp(140px, 18vh, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.favs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.favs-card-body { display: flex; flex-direction: column; gap: 0.25rem; }
.favs-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.favs-tag-special { background: var(--pink); color: white; }
.favs-tag-best    { background: var(--yellow); color: var(--dark); }
.favs-name {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.favs-desc {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .favs-section { height: auto; padding: 3rem 1.5rem; }
}
@media (max-width: 600px) {
  .favs-row { grid-template-columns: repeat(2, 1fr); }
  .favs-section { padding: 2rem 1rem; }
}

/* =============================================
   HOME — WHAT WE SERVE (wws)
   ============================================= */
.wws-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: #fff;
  box-sizing: border-box;
}
.wws-header {
  text-align: center;
  margin-bottom: 2rem;
}
.wws-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.wws-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.2;
}
.wws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  max-height: calc(100vh - 200px);
}
.wws-tile {
  background: var(--tc, #FFF8F0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  text-decoration: none;
  color: var(--ta, var(--pink));
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
}
.wws-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--ta);
}
.wws-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--ta);
}
.wws-icon svg { width: 100%; height: 100%; }
.wws-info {
  flex: 1;
  min-width: 0;
}
.wws-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.wws-info span {
  font-size: 0.78rem;
  color: var(--gray);
  display: block;
}
.wws-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}
.wws-tile:hover .wws-arrow { opacity: 1; transform: translateX(3px); }
.wws-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .wws-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .wws-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 1fr); gap: 0.6rem; }
  .wws-section { padding: 1.5rem 1rem; }
  .wws-header { margin-bottom: 1rem; }
}

/* =============================================
   HOME — ORDER ONLINE (oo)
   ============================================= */
.oo-section {
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 2rem 4rem;
  background: var(--cream);
}
.oo-left { max-width: 420px; }
.oo-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}
.oo-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1rem;
}
.oo-sub { font-size: 1rem; color: var(--gray); line-height: 1.6; }
.oo-right { display: flex; flex-direction: column; gap: 1rem; min-width: 280px; }
.oo-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.oo-btn:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.oo-btn img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.oo-btn span { flex: 1; }
.oo-zomato { background: white; color: #CB202D; border: 1.5px solid #eee; }
.oo-swiggy { background: #FC8019; color: white; }
.oo-swiggy img { filter: brightness(0) invert(1); }
.oo-whatsapp { background: #25D366; color: white; }
.oo-whatsapp img { filter: brightness(0) invert(1); }
@media (max-width: 900px) {
  .oo-section { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; height: auto; min-height: 100svh; }
  .oo-right { width: 100%; max-width: 360px; gap: 0.65rem; }
  .oo-img-wrap { display: none; }
}
@media (max-width: 480px) {
  .oo-title { font-size: 1.9rem; margin-bottom: 0.5rem; }
}

/* =============================================
   HOME — EVENTS & FUNCTIONS ENQUIRY (ev)
   ============================================= */
.ev-section {
  background: linear-gradient(135deg, #F5F0FF 0%, #FFF0F5 60%, #EDF9FF 100%);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-inner {
  max-width: 700px;
  width: 100%;
}
.ev-left {
  width: 100%;
}
.ev-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 0.75rem;
}
.ev-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ev-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.5rem;
}
.ev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ev-tags span {
  background: white;
  border: 1.5px solid rgb(var(--purple-rgb) / 0.15);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.ev-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.ev-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ev-wa-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
  .ev-inner { gap: 0; }
}
@media (max-width: 480px) {
  .ev-section { padding: 3rem 1rem; }
  .ev-btns { flex-direction: column; align-items: flex-start; }
  .ev-btns .btn { width: 100%; text-align: center; justify-content: center; }
}

/* =============================================
   HOME — FIND US (fu)
   ============================================= */
.fu-section {
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  background: var(--cream);
  overflow: hidden;
}
.fu-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem;
  width: 420px;
  flex-shrink: 0;
  gap: 2rem;
}
.fu-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.fu-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  line-height: 1.15;
}
.fu-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fu-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.fu-ic {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--pink);
  margin-top: 2px;
}
.fu-row strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 0.2rem;
}
.fu-row p {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.5;
}
.fu-phone {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--pink);
  text-decoration: none;
}
.fu-phone:hover { opacity: 0.8; }
.fu-map {
  flex: 1;
}
.fu-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .fu-section { flex-direction: column; height: 100vh; }
  .fu-left { width: 100%; padding: 2rem 1.5rem; gap: 1.25rem; }
  .fu-map { flex: 1; min-height: 0; }
}
@media (max-width: 480px) {
  .fu-left { padding: 1.5rem 1rem; }
  .fu-title { font-size: 1.6rem; }
}

/* =============================================
   HOME — FAN FAVOURITES (ff)
   ============================================= */
.ff-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  background: #fff;
  overflow: hidden;
}
.ff-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  width: 280px;
  flex-shrink: 0;
  background: var(--cream);
  border-right: 1px solid rgba(0,0,0,0.06);
  gap: 1.25rem;
}
.ff-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.ff-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  color: var(--dark);
}
.ff-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}
.ff-card {
  background: var(--c, #FFF8F0);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.6);
  transition: filter 0.2s;
  overflow: hidden;
}
.ff-card:hover { filter: brightness(0.96); }
.ff-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 0;
}
.ff-card-img img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
  display: block;
}
.ff-card-foot {
  padding: 0.6rem 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ff-card-foot strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.ff-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.ff-tag-special { background: var(--pink); color: white; }
.ff-tag-best    { background: var(--yellow); color: var(--dark); }

@media (max-width: 900px) {
  .ff-section { flex-direction: column; height: 100vh; }
  .ff-top {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .ff-title { font-size: 1.1rem; }
  .ff-top .btn { margin-left: auto; flex-shrink: 0; }
  .ff-cards { flex: 1; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
  .ff-card-img img { max-height: 90px; }
}
@media (max-width: 480px) {
  .ff-cards { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .ff-top { flex-wrap: wrap; }
  .ff-title { font-size: 1rem; }
}

/* =============================================
   HOME — TESTIMONIALS (testi)
   ============================================= */
.testi-section {
  background: #FDE8F0;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 560px;
  box-sizing: border-box;
  overflow: hidden;
}
.testi-head {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}
.testi-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}
.testi-headline {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin: 0;
}
.testi-carousel {
  width: 100%;
  max-width: 860px;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.testi-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-slide {
  min-width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 5px solid var(--pink);
  box-shadow: 0 8px 40px rgb(var(--pink-rgb) / 0.08);
  position: relative;
}
.testi-quote-mark {
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.testi-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  color: var(--dark);
  margin: 0;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f0f0f0;
}
.testi-author strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--gray);
}
.testi-author span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--pink);
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--pink); transform: scale(1.3); }
@media (max-width: 600px) {
  .testi-slide { padding: 2rem 1.5rem; }
}

/* =============================================
   HOME — ORDER ONLINE (oo)
   ============================================= */
.oo-section {
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 4rem;
  background: var(--cream);
}
.oo-img-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(260px, 55vh, 480px);
}
.oo-hero-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
}
.oo-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.oo-left {
  max-width: 420px;
}
.oo-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}
.oo-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1rem;
}
.oo-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}
.oo-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
}
.oo-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.oo-btn:hover { transform: translateX(4px); }
.oo-btn img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.oo-btn span { flex: 1; }
.oo-zomato { background: white; color: #CB202D; }
.oo-swiggy { background: #FC8019; color: white; }
.oo-swiggy img { filter: brightness(0) invert(1); }

@media (max-width: 900px) {
  .oo-section { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; height: auto; min-height: 100svh; }
  .oo-content { gap: 1.25rem; }
  .oo-right { width: 100%; max-width: 360px; gap: 0.65rem; }
  .oo-btn { padding: 0.85rem 1.25rem; font-size: 0.95rem; }
  .oo-btn img { width: 26px; height: 26px; }
  .oo-eyebrow { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .oo-title { font-size: 1.9rem; margin-bottom: 0.5rem; }
  .oo-sub { font-size: 0.9rem; }
  .oo-section { gap: 1rem; padding: 1.75rem 1.25rem; }
}

/* ── Fan Favourites redesign ── */
.favs-section {
  background: #fff;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.25rem 2rem;
  box-sizing: border-box;
}
.favs-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.favs-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.favs-sub {
  color: var(--gray);
  font-size: 0.95rem;
}
.favs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.fav-card {
  background: var(--bg, #FFF8F0);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
}
.fav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.fav-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fav-badge-special { background: var(--pink); color: white; }
.fav-badge-best    { background: var(--yellow); color: #1A1A2E; }
.fav-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem 0.5rem;
  min-height: 0;
}
.fav-img {
  width: 100%;
  height: clamp(80px, calc((100vh - 360px) / 2 - 40px), 160px);
  object-fit: contain;
  display: block;
}
.fav-info {
  padding: 0.5rem 0.75rem 0.75rem;
}
.fav-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
}
.favs-cta {
  text-align: center;
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .favs-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
  .fav-img { height: clamp(70px, calc((100vh - 400px) / 3 - 40px), 130px); }
}
@media (max-width: 480px) {
  .favs-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .fav-img { height: clamp(60px, calc((100vh - 420px) / 3 - 40px), 110px); }
  .favs-title { font-size: 1.4rem; }
}

/* ── Info strip light ── */
.info-strip-light {
  background: var(--cream-dark);
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.info-strip-item-light {
  color: var(--dark) !important;
}
.info-strip-divider-light {
  background: rgba(0,0,0,0.12) !important;
}

/* =============================================
   HOME PAGE — DARK REDESIGN (unused, kept for reference)
   ============================================= */

/* Body override for dark home */
body.dark-home {
  background-color: #0D0008;
}

/* ── Navbar dark override ── */
.navbar-dark {
  background: #0D0008;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-dark.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  border-radius: 12px;
  padding: 4px 10px;
}
.nav-links-dark a {
  color: rgba(255,255,255,0.75);
}
.nav-links-dark a:hover,
.nav-links-dark a.active {
  background: var(--pink);
  color: white;
}
.mobile-menu-dark {
  background: #0D0008;
  border-top-color: rgba(255,255,255,0.08);
}
.mobile-menu-dark a {
  color: rgba(255,255,255,0.8);
}
.mobile-menu-dark a:hover,
.mobile-menu-dark a.active {
  background: rgb(var(--pink-rgb) / 0.15);
  color: white;
}

/* ── Hero dark ── */
.hero-dark {
  background: #0D0008;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(var(--pink-rgb) / 0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}
.hero-dark-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}
.hero-dark-left {
  flex: 1;
  max-width: 540px;
}
.hero-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.hero-dark-headline {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  animation: fadeDown 0.7s ease both;
}
.hero-dark-headline span.pink { color: var(--pink); }
.hero-dark-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin-bottom: 2.25rem;
  animation: fadeDown 0.7s 0.2s ease both;
}
.hero-dark-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.35s ease both;
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}
.hero-dark-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dark-img {
  height: 520px;
  width: auto;
  object-fit: contain;
  display: block;
  animation: fadeDown 0.8s 0.1s ease both;
  filter: drop-shadow(0 0 60px rgb(var(--pink-rgb) / 0.2));
}

@media (max-width: 900px) {
  .hero-dark-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 2rem;
  }
  .hero-dark-left { max-width: 100%; }
  .hero-dark-headline { font-size: clamp(2.6rem, 10vw, 4.5rem); }
  .hero-dark-btns { justify-content: center; }
  .hero-dark-img { height: 280px; }
  .hero-open-badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .hero-dark-img { height: 220px; }
  .hero-dark-headline { font-size: 2.8rem; }
}

/* ── Marquee strip ── */
.marquee-strip {
  background: var(--pink);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}
.marquee-dot {
  opacity: 0.55;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Fan Favourites ── */
.fan-favs {
  background: #0D0008;
  padding: 5rem 1.25rem;
}
.fan-favs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.section-title-dark {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  text-align: center;
}
.section-subtitle-dark {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.fan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .fan-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fan-img-wrap { height: clamp(100px, calc((100vh - 420px) / 3), 180px); }
}
@media (max-width: 480px) {
  .fan-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .fan-img-wrap { height: clamp(90px, calc((100vh - 440px) / 3), 160px); }
}
.fan-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}
.fan-card:hover { transform: translateY(-5px); }
.fan-img-wrap {
  position: relative;
  width: 100%;
  height: clamp(130px, calc((100vh - 380px) / 2), 220px);
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
.fan-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fan-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fan-badge-special { background: var(--pink); color: white; }
.fan-badge-best    { background: var(--yellow); color: #1A1A2E; }
.fan-name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,0,8,0.85) 0%, transparent 100%);
  padding: 2rem 0.85rem 0.75rem;
}
.fan-name-bar span {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  display: block;
  line-height: 1.25;
}
.fan-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Order Online dark ── */
.order-dark {
  background: var(--pink);
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  text-align: center;
}
.order-dark .container {
  width: 100%;
}
.order-dark-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 0.6rem;
}
.order-dark-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.order-dark-btns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.order-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}
.order-dark-btn:hover { transform: scale(1.04); }
.order-zomato {
  background: white;
  color: #CB202D;
}
.order-swiggy {
  background: #1C1C1C;
  color: white;
}
.order-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.order-swiggy-logo {
  filter: brightness(0) invert(1);
}

/* ── Info strip dark ── */
.info-strip-dark {
  background: #0D0008;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
}
.info-strip-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.info-strip-phone {
  color: var(--pink);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.info-strip-phone:hover { opacity: 0.8; }
.info-strip-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .info-strip-row { flex-direction: column; gap: 1rem; }
  .info-strip-divider { display: none; }
  .info-strip-item { text-align: center; }
}

/* =============================================
   CALL CTA
   ============================================= */
.call-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  padding: 3rem 1.25rem;
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
}
.call-cta h2 { color: white; font-family: 'Geologica', sans-serif; margin-bottom: 0.5rem; }
.call-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.call-number {
  font-family: 'Geologica', sans-serif;
  font-size: 2.2rem;
  color: white;
  display: block;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* =============================================
   UTILITIES
   ============================================= */
.text-pink   { color: var(--pink); }
.text-teal   { color: var(--teal); }
.text-purple { color: var(--purple); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 6rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   MENU PAGE
   ============================================= */

/* ── Hero ── */
.mn-hero {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8F0 50%, #F0FFFE 100%);
  padding: clamp(5rem, 12vw, 9rem) 1.5rem clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.mn-hero-inner { max-width: 640px; margin: 0 auto; }
.mn-hero-pill {
  display: inline-block;
  background: rgb(var(--pink-rgb) / 0.1);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.mn-hero-h1 {
  font-family: 'Geologica', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.mn-hero-sub { font-size: clamp(0.95rem, 2.2vw, 1.1rem); color: var(--gray); }

.mn-hero-imgs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: 3rem;
}
.mn-hi {
  width: clamp(80px, 11vw, 150px);
  height: clamp(80px, 11vw, 150px);
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.15));
  transform: rotate(var(--r, 0deg));
  animation: mn-float 3.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes mn-float {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%       { transform: rotate(var(--r, 0deg)) translateY(-12px); }
}
@media (max-width: 480px) {
  .mn-hi { width: 60px; height: 60px; }
  .mn-hero-imgs { gap: 0.75rem; margin-top: 2rem; }
}

/* ── Sticky Tabs ── */
.mn-tabs-wrap {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
  padding-top: 0.5rem;
}
.mn-tabs {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}
.mn-tabs::-webkit-scrollbar { display: none; }
.mn-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1.5px solid #eee;
  border-radius: 999px;
  padding: 0.42rem 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.mn-tab svg { flex-shrink: 0; }
.mn-tab:hover { border-color: var(--pink); color: var(--pink); background: rgb(var(--pink-rgb) / 0.05); }
.mn-tab.active { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ── Body & Loading ── */
.mn-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mn-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 6rem 0;
  color: var(--gray);
}
.mn-loading-spinner {
  width: 42px; height: 42px;
  border: 3px solid rgb(var(--pink-rgb) / 0.15);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section card ── */
.mn-section {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border: 1.5px solid rgba(0,0,0,0.04);
}

/* ── Section header with image ── */
.mn-sec-head {
  background: var(--accent-bg, #FFF0F5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  border-bottom: 1.5px solid rgba(0,0,0,0.05);
}
/* subtle decorative circle */
.mn-sec-head::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--accent, #FF2D78);
  opacity: 0.06;
  pointer-events: none;
}
.mn-sec-head-left { flex: 1; min-width: 0; }
.mn-sec-num {
  display: block;
  font-family: 'Geologica', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #FF2D78);
  margin-bottom: 0.35rem;
  opacity: 0.75;
}
.mn-sec-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--dark);
  margin: 0 0 0.4rem;
  line-height: 1.05;
}
.mn-sec-desc {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}
.mn-sec-img-wrap {
  flex-shrink: 0;
  width: clamp(110px, 16vw, 180px);
  height: clamp(110px, 16vw, 180px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 1.5rem;
}
.mn-sec-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.2));
  transition: transform 0.4s ease;
}
.mn-section:hover .mn-sec-img { transform: scale(1.06) translateY(-4px); }

/* ── Section body ── */
.mn-sec-body { padding: clamp(1.5rem, 3vw, 2.25rem); }

/* ── Badges ── */
.mn-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}
.mn-badge-best { background: rgb(var(--pink-rgb) / 0.1); color: var(--pink); }
.mn-badge-special { background: rgb(var(--purple-rgb) / 0.12); color: var(--purple); }

/* ── Generic Grid & Cards ── */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.9rem;
}
.mn-grid-mb { margin-bottom: 1.75rem; }

.mn-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  border: 1.5px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.mn-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-color: var(--accent, rgb(var(--pink-rgb) / 0.3));
  transform: translateY(-3px);
}
.mn-card-name { font-weight: 600; font-size: 0.92rem; color: var(--dark); line-height: 1.35; }

/* Size note & sub-heading */
.mn-size-note {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(0,0,0,0.04);
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.mn-sub-heading {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  margin-bottom: 0.85rem;
}

/* ── Scoops: Tiers ── */
.mn-tier {
  background: var(--tbg, rgb(var(--pink-rgb) / 0.05));
  border-left: 4px solid var(--tc, var(--pink));
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.mn-tier-label { font-size: 0.78rem; font-weight: 800; color: var(--tc, var(--pink)); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.mn-tier-prices { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.9rem; }
.mn-tier-badge {
  background: var(--tc, var(--pink));
  color: #fff;
  font-size: 0.78rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.mn-tier-badge strong { font-weight: 800; }
.mn-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mn-chips-sm { gap: 0.35rem; }
.mn-chip {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.26rem 0.75rem;
  border-radius: 999px;
}
.mn-chip-star {
  border-color: rgba(0,0,0,0.1);
  color: var(--dark);
  font-weight: 500;
}
.mn-chip-plain {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}

/* Toppings box */
.mn-toppings {
  background: rgb(var(--pink-rgb) / 0.04);
  border: 1.5px dashed rgb(var(--pink-rgb) / 0.25);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin-top: 1.5rem;
}
.mn-toppings-title {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.mn-toppings-title span { color: var(--pink); }

/* Waffle spreads */
.mn-waffle-spreads {
  background: rgb(var(--yellow-rgb) / 0.07);
  border: 1.5px dashed rgb(var(--yellow-rgb) / 0.35);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.75rem;
}

/* ── Sundae Featured Grid ── */
.mn-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}
.mn-feat-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1.5px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.22s, transform 0.22s;
}
.mn-feat-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.09); transform: translateY(-3px); }
.mn-feat-card.mn-feat-special {
  background: linear-gradient(135deg, #FFF0F5, #FDE8F0);
  border-color: rgb(var(--pink-rgb) / 0.2);
}
.mn-feat-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.mn-feat-name { font-family: 'Geologica', sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--dark); margin: 0; }
.mn-feat-desc { font-size: 0.81rem; color: var(--gray); line-height: 1.5; flex: 1; }
.mn-feat-price { font-family: 'Geologica', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--pink); white-space: nowrap; flex-shrink: 0; }

/* ── Combos ── */
.mn-combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.mn-combo-card {
  background: linear-gradient(135deg, #FFF0F5 0%, #FDEAF3 100%);
  border: 1.5px solid rgb(var(--pink-rgb) / 0.18);
  border-radius: 20px;
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}
.mn-combo-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.07;
}
.mn-combo-num { font-family: 'Geologica', sans-serif; font-weight: 900; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); margin-bottom: 0.4rem; }
.mn-combo-items { font-weight: 600; font-size: 1.02rem; color: var(--dark); line-height: 1.5; }
.mn-combo-price { margin-top: 0.4rem; font-size: 0.95rem; }
.mn-combo-price s { color: var(--gray); font-weight: 500; margin-right: 0.4rem; }
.mn-combo-price strong { color: var(--pink); font-weight: 800; }
.mn-combo-mega {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1A4E 100%);
  border-color: var(--purple);
  grid-column: 1 / -1;
}
.mn-combo-mega::before { background: var(--purple); opacity: 0.15; }
.mn-combo-mega .mn-combo-num { color: var(--purple-light, #A07DE0); font-size: 0.82rem; }
.mn-combo-mega .mn-combo-items { color: #fff; font-size: 1.08rem; }
.mn-combo-mega .mn-combo-price s { color: rgba(255,255,255,0.45); }
.mn-combo-mega .mn-combo-price strong { color: #A07DE0; font-size: 1.15rem; }

/* Card prices */
.mn-card-price { font-family: 'Geologica', sans-serif; font-weight: 800; font-size: 1rem; color: var(--accent, var(--pink)); margin-top: 0.35rem; }
.mn-card-price-dual { display: flex; gap: 0.5rem; margin-top: 0.35rem; }
.mn-card-price-dual span { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--accent, var(--pink)); background: rgb(var(--pink-rgb) / 0.07); padding: 0.15rem 0.5rem; border-radius: 999px; }
.mn-card-price-dual span:first-child { opacity: 0.75; }

/* Waffle single/double legend */
.mn-waffle-legend { display: flex; justify-content: flex-end; gap: 3rem; font-size: 0.72rem; font-weight: 700; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; padding-right: 1rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .mn-tabs-wrap { top: 60px; padding-top: 0.35rem; }
  .mn-body { padding: 1.5rem 1rem 3.5rem; gap: 1.5rem; }
  .mn-sec-head { padding: 1.5rem 1.5rem; min-height: 110px; }
  .mn-sec-body { padding: 1.25rem 1.25rem; }
  .mn-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .mn-feat-grid { grid-template-columns: 1fr 1fr; }
  .mn-combo-grid { grid-template-columns: 1fr; }
  .mn-sec-img-wrap { width: clamp(90px, 22vw, 130px); height: clamp(90px, 22vw, 130px); }
}
@media (max-width: 480px) {
  .mn-sec-head { flex-direction: row; gap: 1rem; }
  .mn-sec-img-wrap { width: 90px; height: 90px; }
  .mn-grid { grid-template-columns: 1fr 1fr; }
  .mn-feat-grid { grid-template-columns: 1fr; }
  .mn-tier { padding: 1rem 1.1rem; }
  .mn-combo-card { padding: 1.3rem; }
}

/* =============================================
   MOBILE — 480px fixes
   ============================================= */
@media (max-width: 480px) {

  /* Hero */
  .hero-light { min-height: clamp(420px, 85vh, 580px); }
  .hero-light-btns { flex-direction: column; align-items: center; margin-bottom: 2rem; }
  .hero-light-btns .btn { width: auto; text-align: center; }

  /* Marquee — remove rotation so it doesn't overflow */
  .diag-strip { transform: rotate(0deg) !important; width: 100% !important; margin-left: 0 !important; }
  .diag-marquee { padding: 1.5rem 0; overflow: hidden; }

  /* Fan Favourites */
  .favs-section { height: auto !important; min-height: auto !important; padding: 2rem 1rem; }

  /* What We Serve */
  .wws-section { height: auto !important; min-height: auto !important; padding: 2rem 1rem; }
  .wws-icon { width: 40px; height: 40px; }
  .wws-tile { padding: 1rem; gap: 0.75rem; }

  /* Order Online */
  .oo-section { padding: 1.75rem 1rem !important; height: auto !important; min-height: 100svh !important; }

  /* Testimonials */
  .testi-section { height: auto; min-height: 100svh; padding: 3rem 1rem; }
  .testi-slide { padding: 1.75rem 1.25rem; }
  .testi-quote-mark svg { width: 36px; height: 28px; }
  .testi-text { font-size: 1rem; }

  /* About */
  .ab-why-item { padding: 1.25rem; }
  .ab-stats { grid-template-columns: 1fr 1fr; }
  .ab-stat strong { font-size: clamp(2rem, 10vw, 3rem); }

  /* Contact */
  .ct-main { padding: 2.5rem 1rem; }
  .ct-order { padding: 3rem 1.25rem 3.5rem; }
  .ct-order-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .ct-order-btns { flex-direction: column; width: 100%; }
  .ct-order-btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 2.5rem 1rem 1rem; }
  .footer-grid { gap: 1.5rem; }

  /* Menu page */
  .mn-sec-head { padding: 1.25rem; min-height: auto; }
  .mn-sec-title { font-size: 1.5rem; }
  .mn-sec-body { padding: 1rem; }
  .mn-feat-grid { grid-template-columns: 1fr; }
  .mn-combo-grid { grid-template-columns: 1fr; }
  .mn-toppings, .mn-waffle-spreads { padding: 1rem; }
}

/* =============================================
   MOBILE — 360px fixes (small phones)
   ============================================= */
@media (max-width: 360px) {

  /* Hero buttons full width */
  .hero-light-btns .btn { font-size: 0.88rem; padding: 0.75rem 1.25rem; }

  /* Fan Favourites single column */
  .favs-row { grid-template-columns: 1fr !important; max-width: 280px; margin: 0 auto; }

  /* Menu hero images */
  .mn-hero-imgs { gap: 0.5rem; }
  .mn-hi { width: 50px !important; height: 50px !important; }

  /* Menu grid single column */
  .mn-grid { grid-template-columns: 1fr !important; }

  /* Tabs — hide icons, smaller text */
  .mn-tab { font-size: 0.78rem; padding: 0.38rem 0.85rem; }
  .mn-tab svg { display: none; }

  /* Combo cards */
  .mn-combo-offer { font-size: 1.4rem; }

  /* About stats 2-col */
  .ab-serve-grid { grid-template-columns: 1fr !important; }

  /* Footer tighter */
  .footer-bottom p { font-size: 0.75rem; }
}
