/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg:           #F5EFE0;
  --bg-deep:      #EDE3CC;
  --surface:      #FAF6EE;
  --surface-2:    #FDF9F2;
  --primary:      #6B1020;
  --primary-light:#8B1A2D;
  --primary-dark: #4A0B18;
  --accent:       #D4A017;
  --accent-bright:#E8B420;
  --gold:         #B8860B;
  --gold-light:   #D4AF37;
  --text:         #2C1A0E;
  --text-2:       #5C3D1E;
  --muted:        #9B8B75;
  --cream:        #FFF8EE;
  --warm-white:   #FEFCF7;
  --border:       rgba(180,140,80,0.18);
  --border-strong:rgba(107,16,32,0.15);
  --glass-bg:     rgba(253,249,242,0.72);
  --glass-border: rgba(212,160,23,0.22);
  --shadow-warm:  0 8px 40px rgba(107,16,32,0.10);
  --shadow-gold:  0 4px 24px rgba(180,134,11,0.14);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    32px;
  --radius-xl:    48px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ═══════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   SVG BACKGROUND MOTIFS (inline defs)
═══════════════════════════════════════════════ */
.motif-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,239,224,0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(107,16,32,0.09);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.nav-logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--primary);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.nav-mobile-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: calc(38px + 72px); left: 0; right: 0;
  background: rgba(245,239,224,0.97);
  backdrop-filter: blur(24px);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav-mobile-menu.open { display: flex; flex-direction: column; gap: 1.2rem; }
.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-primary {
  background: var(--primary);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(107,16,32,0.28);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(107,16,32,0.36);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212,160,23,0.32);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(212,160,23,0.42);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.42);
}

/* ═══════════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════════ */
section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  position: relative;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: calc(38px + 72px + 2.5rem);
  padding-bottom: 3.5rem;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 45%, #D9C9A8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

/* Ambient glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.14) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,16,32,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: blobFloat2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,160,23,0.10) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: blobFloat3 12s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.05); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-20px,20px) scale(1.06); }
  66% { transform: translate(20px,-10px) scale(0.96); }
}

/* Animated SVG paisley motifs */
.hero-motif {
  position: absolute;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 5rem);
}

/* BENTO GRID HERO */
.hero-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
/* Secondary wrapper: transparent on desktop, becomes 2-col on mobile */
.hero-bento-secondary {
  display: contents; /* children participate in parent grid as if wrapper doesn't exist */
}

.bento-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-warm);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.4s;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(107,16,32,0.14);
}

/* Main hero card */
.bento-main {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 60%, #9B1430 100%);
  color: var(--cream);
  padding: clamp(1.6rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(320px, 50vw, 520px);
  border: none;
}
.bento-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(212,160,23,0.08)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='140' fill='none' stroke='rgba(212,160,23,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='100' fill='none' stroke='rgba(212,160,23,0.04)' stroke-width='1'/%3E%3Cpath d='M200 20 C240 60, 380 140, 380 200 C380 260, 240 340, 200 380 C160 340, 20 260, 20 200 C20 140, 160 60, 200 20Z' fill='none' stroke='rgba(212,160,23,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/60% no-repeat;
  pointer-events: none;
  opacity: 0.8;
}

/* Hero food visual placeholder */
.hero-food-visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-food-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary-dark) 0%, transparent 60%);
}
.hero-food-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  background: url('images/sweets3.webp') center/cover no-repeat;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-tagline {
  font-size: 0.95rem;
  color: rgba(255,248,238,0.72);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating sweet cards in bento grid */
.bento-sweet {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--cream) 100%);
}
.bento-sweet .sweet-img-wrap {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  height: 100px;
}
.bento-sweet .sweet-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}
.bento-sweet .sweet-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Stats bento */
.bento-stats {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* Legacy tag bento */
.bento-legacy {
  padding: 2rem;
  background: var(--primary);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-legacy .legacy-year {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.bento-legacy .legacy-text {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.6);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════
   SIGNATURE SWEETS SECTION
═══════════════════════════════════════════════ */
.sweets-section {
  background: var(--bg-deep);
}
.sweets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sweets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.4rem;
}

.sweet-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-warm);
  transition: all 0.45s cubic-bezier(0.34,1.2,0.64,1);
  cursor: pointer;
}
.sweet-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 64px rgba(107,16,32,0.16);
  border-color: var(--border-strong);
}

.sweet-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.sweet-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.5) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.sweet-card:hover .sweet-card-img::after {
  opacity: 0.7;
}
.sweet-card-img .img-ph {
  width: 100%; height: 100%;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sweet-card:hover .img-ph { transform: scale(1.07); }

/* Food images — verified Unsplash IDs */
.ph-rasgulla {
  background: url('images/rasgulla.webp') center/cover no-repeat;
  background-color: #F5DEB3;
}
.ph-gulab-jamun {
  background: url('images/gulab-jamun.webp') center/cover no-repeat;
  background-color: #8B4513;
}
.ph-kaju {
  background: url('images/kaju-katli.webp') center/cover no-repeat;
  background-color: #EEE8AA;
}
.ph-jalebi {
  background: url('images/jalebi.webp') center/cover no-repeat;
  background-color: #FF8C00;
}
.ph-samosa {
  background: url('images/sweets5.webp') center/cover no-repeat;
  background-color: #DEB887;
}
.ph-chai {
  background: url('https://images.unsplash.com/photo-1571934811356-5cc061b6821f?w=600&auto=format&fit=crop&q=80') center/cover no-repeat;
  background-color: #8B4513;
}

.sweet-card-img .sweet-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: rgba(107,16,32,0.85);
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.sweet-card-body {
  padding: 1.4rem;
}
.sweet-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.sweet-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.sweet-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sweet-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.sweet-per { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }
.sweet-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  font-size: 1.2rem;
  line-height: 1;
}
.sweet-add:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.15) rotate(90deg);
}

/* Wide card */
.sweet-card.wide {
  grid-column: span 2;
}
.sweet-card.wide .sweet-card-img {
  height: 240px;
}

/* ═══════════════════════════════════════════════
   USP SECTION
═══════════════════════════════════════════════ */
.usp-section {
  background: linear-gradient(160deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}
.usp-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&auto=format&fit=crop&q=40') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
}
.usp-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.usp-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  transition: height 0.4s;
}
.usp-card:hover::before { height: 100%; }
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,160,23,0.25);
}

.usp-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212,160,23,0.12) 0%, rgba(107,16,32,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.usp-card:hover .usp-icon { transform: scale(1.12) rotate(-5deg); }

.usp-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.usp-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FESTIVE CATERING SECTION
═══════════════════════════════════════════════ */
.catering-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7A1020 100%);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.catering-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1601303516534-bf4e7e839d63?w=1400&auto=format&fit=crop&q=40') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: luminosity;
}
.catering-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='rgba(212,160,23,0.04)' fill-rule='nonzero'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.catering-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.catering-inner {
  position: relative;
  z-index: 2;
}
.catering-inner .section-title { color: var(--cream); }
.catering-inner .section-subtitle { color: rgba(255,248,238,0.65); }

.catering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.catering-card {
  background: rgba(253,249,242,0.07);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
  text-align: center;
}
.catering-card:hover {
  background: rgba(253,249,242,0.12);
  border-color: rgba(212,160,23,0.36);
  transform: translateY(-4px);
}
.catering-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.catering-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.catering-desc {
  font-size: 0.8rem;
  color: rgba(255,248,238,0.6);
  line-height: 1.5;
}

.catering-cta-wrap {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1666103906481-a4929e5c6296?w=1400&auto=format&fit=crop&q=30') center/cover no-repeat;
  opacity: 0.025;
  pointer-events: none;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 8px 40px rgba(107,16,32,0.07), 0 0 0 0.5px rgba(212,160,23,0.1);
  transition: all 0.45s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(107,16,32,0.05);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(107,16,32,0.12), 0 0 0 1px rgba(212,160,23,0.18);
}

.testimonial-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(212,160,23,0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.testimonial-card:hover .testimonial-glow { opacity: 1; }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.star { color: var(--accent); font-size: 0.85rem; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surface);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.author-location {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Avatar colors */
.av-1 { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.av-2 { background: linear-gradient(135deg, #7B3F00, #D2691E); }
.av-3 { background: linear-gradient(135deg, var(--gold), var(--accent)); }
.av-4 { background: linear-gradient(135deg, #2E4A1E, #6B8F3C); }
.av-5 { background: linear-gradient(135deg, #1A237E, #3949AB); }
.av-6 { background: linear-gradient(135deg, #4A0E4E, #8E24AA); }

/* ═══════════════════════════════════════════════
   GALLERY STRIP
═══════════════════════════════════════════════ */
.gallery-section {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background: var(--bg-deep);
  overflow: hidden;
}
.gallery-header {
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 2.5rem;
}
.gallery-strip-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-strip {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 1.5rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip.grabbing { cursor: grabbing; }

.gallery-item {
  flex-shrink: 0;
  width: clamp(240px, 30vw, 360px);
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-warm);
  transition: transform 0.4s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .gi-ph {
  width: 100%; height: 100%;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(107,16,32,0.15) 0%, transparent 50%);
}
.gallery-item .gi-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Gallery image placeholders */
.gi-1 { background: url('images/jalebi.webp') center/cover no-repeat; }
.gi-2 { background: url('images/sweets3.webp') center/cover no-repeat; }
.gi-3 { background: url('https://images.unsplash.com/photo-1601303516534-bf4e7e839d63?w=700&auto=format&fit=crop&q=80') center/cover no-repeat; }
.gi-4 { background: url('https://images.unsplash.com/photo-1564890369478-c89ca6d9cde9?w=700&auto=format&fit=crop&q=80') center/cover no-repeat; }
.gi-5 { background: url('images/sweets4.webp') center/cover no-repeat; }
.gi-6 { background: url('images/sweets5.webp') center/cover no-repeat; }
.gi-7 { background: url('images/kalajamun.webp') center/cover no-repeat; }

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(212,160,23,0.04));
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(107,16,32,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.contact-value a:hover { color: var(--primary); }

.contact-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=900&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-warm);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107,16,32,0.18);
}
.map-pin-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.map-pin {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(107,16,32,0.3);
  animation: pinBounce 2s ease-in-out infinite;
}
.map-pin::after {
  content: '🍬';
  transform: rotate(45deg);
  font-size: 1.2rem;
}
@keyframes pinBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-6px); }
}
.map-label-text {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-warm);
}

/* Store timings */
.timings-card {
  margin-top: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-warm);
}
.timings-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(180,140,80,0.2);
  font-size: 0.83rem;
}
.timing-row:last-child { border-bottom: none; }
.timing-day { color: var(--muted); font-weight: 500; }
.timing-time { color: var(--text); font-weight: 600; }
.timing-time.closed { color: #E57373; }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37,211,102,0.12);
  color: #1A8A4A;
  border: 1px solid rgba(37,211,102,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.open-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,248,238,0.7);
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  max-width: 32ch;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,248,238,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,248,238,0.4);
}
.footer-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold-light), transparent);
  margin-bottom: 3rem;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   DIVIDER ORNAMENT
═══════════════════════════════════════════════ */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 200px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-center {
  color: var(--accent);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
  font-size: 1.5rem;
}
.fab-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: fabRing 2s ease-in-out infinite;
}
@keyframes fabRing {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   ENTRANCE ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-bento { gap: 1rem; }
  .bento-main { min-height: 380px; }
  .sweets-grid { grid-template-columns: repeat(2, 1fr); }
  .sweet-card.wide { grid-column: span 1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

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

  /* Hero mobile fixes */
  .navbar { height: 60px; }
  .hero { min-height: auto; padding-top: calc(38px + 60px + 1.2rem); padding-bottom: 2.5rem; align-items: flex-start; }
  .hero-inner { padding: 0 1rem; }
  .hero-bento { display: flex; flex-direction: column; gap: 0.85rem; }
  .bento-main { min-height: 360px; width: 100%; }
  .hero-bento-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .hero-food-visual { display: none; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-tagline { font-size: 0.88rem; margin-bottom: 1.5rem; max-width: 100%; }
  .todays-special-bar { padding: 0.4rem 1rem; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
  #tickerSpecial { font-size: 0.68rem; }
  .bento-stats, .bento-legacy, .bento-sotd { min-height: 90px; }
  /* On mobile show only 2 secondary cards (stats + sweet), hide last 3 */
  .hero-bento-secondary > .bento-card:nth-child(n+3) { display: none; }
  .nav-mobile-menu { top: calc(38px + 60px); }

  .sweets-grid { grid-template-columns: 1fr; }
  .sweet-card.wide { grid-column: span 1; }
  .usp-grid { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sweets-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .catering-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .catering-cta-wrap { flex-direction: column; }
  .legacy-belt { flex-direction: column; gap: 2rem; padding: 2.5rem 1.5rem; }
  .legacy-sep { display: none; }
  .hero-headline { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  .bento-main { min-height: 300px; padding: 1.4rem; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .filter-pills { gap: 0.4rem; }
  .filter-pill { font-size: 0.68rem; padding: 0.35rem 0.75rem; }
  .usp-grid { grid-template-columns: 1fr; }
  section { padding-left: 1rem; padding-right: 1rem; }
  .contact-actions { flex-direction: column; }
  .timings-card { padding: 1.2rem; }
  .map-placeholder { height: 240px; }
  .gallery-item { width: clamp(200px, 75vw, 280px); height: 200px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-bento-secondary > .bento-card:nth-child(n+3) { display: none; }
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════ */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold-light));
  z-index: 2000;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(212,160,23,0.5);
}

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════ */
/* custom cursor removed */


/* ═══════════════════════════════════════════════
   PARTICLE CANVAS
═══════════════════════════════════════════════ */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--primary);
  padding: 0;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 38px;
  display: flex;
  align-items: center;
  z-index: 1001;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.85);
  flex-shrink: 0;
}
.marquee-sep {
  color: var(--accent);
  font-size: 0.8rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   TODAY'S SPECIAL TICKER (hero area)
═══════════════════════════════════════════════ */
.todays-special-bar {
  background: linear-gradient(90deg, rgba(212,160,23,0.12), rgba(107,16,32,0.08), rgba(212,160,23,0.12));
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: 100px;
  padding: 0.5rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.todays-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  flex-shrink: 0;
}
#tickerSpecial {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ═══════════════════════════════════════════════
   CART BUTTON (navbar)
═══════════════════════════════════════════════ */
.nav-cart {
  position: relative;
  background: none;
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s;
  cursor: pointer;
}
.nav-cart:hover { border-color: var(--primary); color: var(--primary); }
.nav-cart.cart-bump { transform: scale(1.08); }
#cartBadge {
  background: var(--primary);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
#cartBadge.pop { transform: scale(1.5); }

/* Floating +1 */
.cart-floater {
  position: fixed;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  pointer-events: none;
  z-index: 9997;
  animation: floatUp 0.9s ease forwards;
}
@keyframes floatUp {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-48px) scale(0.7); }
}

/* ═══════════════════════════════════════════════
   SECTION ORNAMENT DIVIDER (improved)
═══════════════════════════════════════════════ */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 0 0;
  opacity: 0.5;
}
.orn-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.orn-line.rev { background: linear-gradient(90deg, var(--gold), transparent); }
.orn-diamond {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.orn-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   MANDALA BG WATERMARK
═══════════════════════════════════════════════ */
.mandala-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.03;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 80vw);
}

/* ═══════════════════════════════════════════════
   SWEET CARD — QUICK TAGS
═══════════════════════════════════════════════ */
.sweet-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.sweet-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg);
}
.sweet-tag.veg {
  background: rgba(37,160,80,0.08);
  border-color: rgba(37,160,80,0.22);
  color: #1B7A3D;
}
.sweet-tag.ghee {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.25);
  color: var(--gold);
}
.sweet-tag.fresh {
  background: rgba(107,16,32,0.07);
  border-color: var(--border-strong);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════
   PROCESS SECTION (new)
═══════════════════════════════════════════════ */
.process-section {
  background: linear-gradient(170deg, var(--bg-deep) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--accent), var(--gold), var(--border));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-warm);
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
}
.process-num::after {
  content: attr(data-step);
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step:hover .process-num {
  transform: scale(1.1) translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.process-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   LEGACY STRIP (new full-width belt)
═══════════════════════════════════════════════ */
.legacy-belt {
  background: var(--primary-dark);
  padding: 3.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 8rem);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.legacy-belt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(212,160,23,0.02) 20px, rgba(212,160,23,0.02) 21px
  );
  pointer-events: none;
}
.legacy-stat {
  text-align: center;
  position: relative;
  z-index: 1;
}
.legacy-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.legacy-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.5);
}
.legacy-sep {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.3), transparent);
}

/* ═══════════════════════════════════════════════
   SWEET OF THE DAY (special hero bento variant)
═══════════════════════════════════════════════ */
.bento-sotd {
  background: linear-gradient(135deg, var(--accent) 0%, #C8950E 100%);
  padding: 1.8rem;
  border: none;
}
.sotd-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}
.sotd-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}
.sotd-tag {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(44,26,14,0.65);
}

/* ═══════════════════════════════════════════════
   CATEGORY FILTER PILLS (sweets section)
═══════════════════════════════════════════════ */
.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-pill {
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════════
   FLOATING NOTIFICATION TOAST
═══════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-warm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 950;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1);
  max-width: 300px;
}
#toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.toast-text { font-size: 0.82rem; color: var(--text); line-height: 1.4; }
.toast-text strong { color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .legacy-sep { display: none; }
  .legacy-belt { gap: 2.5rem; padding: 2.5rem 1.5rem; }

  .nav-cart { display: none; }
  .fab-whatsapp { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
  #toast { right: 1rem; bottom: 4.5rem; max-width: calc(100vw - 2rem); }
  .filter-pills { gap: 0.45rem; }
  .filter-pill { padding: 0.38rem 0.9rem; font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .catering-cta-wrap { flex-direction: column; }
  .legacy-belt { flex-direction: column; gap: 2rem; }
  .hero-headline { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  section { padding-left: 1rem; padding-right: 1rem; }
}
