/* ============================================================
   DOSA CORNER — PREMIUM LIGHT THEME DESIGN SYSTEM
   ============================================================ */
:root {
  --bg:          #F6F7FB; /* Ultra-soft luxury ivory */
  --bg-alt:      #EEF0F5; /* Elegant soft linen */
  --surface:     #FFFFFF; /* Pure paper white */
  --surface-2:   #FAFAFC; 
  --accent:      #D05A14; /* Ruby/burgundy from DOSA CORNER logo text */
  --accent-2:    #D9A05B; /* Muted golden-brown from logo brush stroke */
  --gold:        #B8860B; /* Deep goldenrod/turmeric gold */
  --gold-light:  #D4AF37;
  --text:        #1E293B; /* Sophisticated warm charcoal-brown */
  --text-muted:  #475569;
  --text-light:  #64748B;
  --border:      rgba(208, 90, 20,0.08);
  --border-soft: rgba(208, 90, 20,0.04);
  --shadow-sm:   0 2px 12px rgba(44,30,24,0.04);
  --shadow:      0 8px 30px rgba(44,30,24,0.06);
  --shadow-lg:   0 20px 50px rgba(44,30,24,0.09);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-xs:   6px;
  --nav-h:       76px;
  --bar-h:       0px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-uber:    'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html, body {
  scroll-behavior:smooth;
  font-size:16px;
  overflow-x:hidden;
  max-width:100%;
}
body {
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img { display:block; max-width:100% }
a { text-decoration:none; color:inherit }
button { font-family:inherit; cursor:pointer }
input,textarea,select { font-family:inherit }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity:1; transform:translateY(0) }

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  position:sticky;
  top:0;
  z-index:200;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  gap:32px;
  background:rgba(250,246,240,0.95);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
  border-bottom:1px solid var(--border);
  box-shadow: 0 2px 12px rgba(44,30,24,0.06);
  transition:background .3s, border-color .3s, box-shadow .3s;
  overflow: visible;
}
nav.scrolled {
  background: rgba(250, 246, 240, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display:flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
  overflow: visible;
  position: relative;
  z-index: 201;
}
.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
  position: relative;
  z-index: 201;
  filter: drop-shadow(0 4px 8px rgba(44,30,24,0.18));
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}
.nav-links {
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}
.nav-links a {
  padding:8px 16px;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--text-muted);
  border-radius:999px;
  transition:color .2s, background .2s;
}
.nav-links a:hover { color:var(--accent); background:rgba(208, 90, 20,.04) }
.nav-actions {
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-icon-btn {
  position:relative;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
  transition:all .2s;
}
.nav-icon-btn:hover { border-color:var(--accent); color:var(--accent); background:rgba(208, 90, 20,.02) }
.user-profile-chip {
  position: relative;
  height: 40px;
  border-radius: 20px;
  border: 1.5px solid var(--border-soft);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 6px;
  color: var(--text);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  outline: none;
}
.user-profile-chip:hover {
  border-color: var(--accent);
  background: rgba(208, 90, 20, .02);
  transform: translateY(-1px);
}
.user-profile-chip .avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
}
@media (max-width: 640px) {
  /* Make container relative so logo can be absolutely centered */
  .header-brand-container {
    padding: 10px 14px;
    position: relative;
  }
  /* Absolutely center the logo regardless of left/right content */
  .brand-logo-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    z-index: 1;
  }
  .brand-title-text {
    font-size: 1.2rem;
  }
  .brand-sub-text {
    display: none;
  }
  .brand-logo-img {
    height: 44px;
  }
  /* Hide call pill completely — too cramped on mobile */
  .header-call-pill {
    display: none !important;
  }
  .header-util-group {
    gap: 7px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
  .header-util-divider {
    display: none;
  }
  .user-name-box {
    display: none;
  }
  /* Compact icon-only circle buttons */
  .user-chip-v2 {
    padding: 6px;
    border-radius: 50%;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-btn-v2 {
    padding: 8px;
    border-radius: 50%;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  /* Hide text label inside login button */
  .login-btn-v2 > *:not(svg) {
    display: none;
  }
  .hero-v3-headline {
    font-size: 2.1rem;
  }
  .trust-strip-floating {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .announcement-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
  }
  .announcement-text {
    font-size: 0.72rem;
  }
  .code-pill {
    padding: 1px 6px;
  }
  .brand-title-text {
    font-size: 1.05rem;
  }
  .brand-logo-img {
    height: 40px;
  }
  .btn-order-v2 {
    width: 100%;
    justify-content: center;
  }
}
.user-profile-chip .chip-name {
  font-size: 0.86rem;
  font-weight: 700;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .user-profile-chip {
    width: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .user-profile-chip .chip-name {
    display: none;
  }
  .user-profile-chip .avatar-circle {
    margin: 0;
  }
}
.cart-badge {
  position:absolute;
  top:-2px;
  right:-2px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-size:.65rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
.btn-order {
  background:var(--accent);
  color:#fff;
  border:none;
  padding:11px 24px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 4px 14px rgba(208, 90, 20,.15);
  transition:all .25s;
}
.btn-order:hover { transform:translateY(-1px); background:var(--text); box-shadow:0 6px 20px rgba(44,30,24,.15) }
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  width:36px;
  height:36px;
  align-items:center;
  justify-content:center;
  border:none;
  background:none;
  padding:4px;
}
.hamburger span {
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:all .3s;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translateY(7px) }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0) }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translateY(-7px) }
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10000;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(45, 26, 14, 0.08);
}
.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.mobile-nav-brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #2D1A0E;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(45, 26, 14, 0.12);
  background: #fff;
  color: #2D1A0E;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2D1A0E;
  border-radius: 12px;
  background: rgba(45, 26, 14, 0.03);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-nav-links a:active {
  background: #C41E3A;
  color: #fff;
}
.mobile-nav-footer {
  padding-top: 16px;
}
.mobile-nav-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #C41E3A 0%, #A0182E 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
  cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────────── */
/* ── HERO V2 — Two-Column Carousel ─────────────────────────── */
.hero-v2 {
  position: relative;
  min-height: 88vh;
  background: #FAF7F2;
  background-image: radial-gradient(#e2d9cd 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  flex: 1;
  min-height: 0;
  padding: 20px 40px 40px 60px;
}

/* Left text column */
.hero-v2-text {
  z-index: 2;
  padding: 20px 40px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-script {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #c05621;
  margin: 0 0 10px;
  font-weight: 600;
}
.hero-v2-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #1e293b;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero-accent-word {
  color: #c05621;
}
.hero-v2-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-v2-divider-line {
  width: 45px;
  height: 2px;
  background: #c05621;
  opacity: 0.35;
}
.hero-v2-divider-icon {
  font-size: 0.75rem;
  color: #c05621;
  opacity: 0.55;
}

/* Subtitle */
.hero-v2-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.1vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1e293b;
  margin: 0 0 20px;
  line-height: 1.55;
  max-width: 480px;
}

/* Description text line separating line */
.hero-v2-desc {
  margin-bottom: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 18px;
  max-width: 480px;
}
.hero-v2-desc p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  color: #475569;
  line-height: 1.65;
  margin: 0 0 6px;
  font-style: italic;
}

.hero-v2-cta-row {
  margin-bottom: 10px;
}
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: none;
  border-radius: 999px;
  background: #166534;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(22, 101, 52, 0.25);
}
.hero-v2-cta:hover {
  background: #14532d;
  box-shadow: 0 8px 26px rgba(22, 101, 52, 0.35);
  transform: translateY(-2px);
}
.hero-v2-cta span {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.hero-v2-cta:hover span {
  transform: translateX(4px);
}

/* Slide animation */
.hero-slide-anim {
  animation: heroSlideIn 0.6s ease both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Right media column — organic green fluid container */
.hero-v2-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 480px;
  width: 100%;
}
.hero-v2-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg-layers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(-10px 18px 25px rgba(22, 101, 52, 0.25));
  z-index: 1;
}
.hero-v2-img-container {
  position: absolute;
  inset: 38px 45px 38px 45px;
  z-index: 2;
  clip-path: url(#hero-leaf-mask);
  overflow: hidden;
}
.hero-v2-img, .hero-v2-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leaf-float {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(2px 6px 12px rgba(0,0,0,0.15));
  animation: floatLeaf 6s ease-in-out infinite alternate;
}
.leaf-float-left {
  left: -20px;
  top: 35%;
}
.leaf-float-right {
  right: 10px;
  top: 15%;
  animation-delay: -3s;
}
@keyframes floatLeaf {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
  100% { transform: translateY(6px) rotate(-3deg); }
}

/* Vertical dots on right edge */
.hero-v2-dots-vertical {
  position: absolute;
  right: 24px;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}
.hero-v2-dots-vertical .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-v2-dots-vertical .hero-dot.active {
  background: #166534;
  height: 22px;
  border-radius: 4px;
  box-shadow: none;
}

/* Bottom right navigation arrows */
.hero-v2-arrows-box {
  position: absolute;
  right: 40px;
  bottom: 110px;
  display: flex;
  gap: 8px;
  z-index: 25;
}
.hero-v2-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #166534;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.2);
}
.hero-v2-arrow-btn:hover {
  background: #14532d;
  transform: translateY(-1px);
}

/* Trust bar — 4 Pillars */
.hero-v2-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 10px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: -30px 40px 30px 40px;
  position: relative;
  z-index: 20;
}
.hero-v2-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid #f1f5f9;
}
.hero-v2-trust-card:last-child {
  border-right: none;
}
.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e6f4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #166534;
}
.trust-card-text {
  display: flex;
  flex-direction: column;
}
.trust-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-card-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
  }
  .hero-v2-text {
    padding: 120px 24px 40px;
    text-align: center;
  }
  .hero-v2-divider { justify-content: center; }
  .hero-v2-stars { text-align: center; }
  .hero-v2-subtitle { text-align: center; }
  .hero-v2-desc p { text-align: center; }
  .hero-v2-media { min-height: 50vh; order: -1; }
  .hero-v2-media::before {
    width: 100%;
    height: 100px;
    bottom: auto;
    background: linear-gradient(to bottom, #FAF6F0 0%, rgba(250, 246, 240, 0) 100%);
  }
  .hero-v2-dots { justify-content: center; }
  .hero-v2-trust-bar { flex-wrap: wrap; gap: 12px; padding: 20px; }
  .hero-v2-trust-card { padding: 12px 18px; }
  .hero-v2-arrow-left { left: 8px; }
  .hero-v2-arrow-right { right: 8px; }
}

/* ── MARQUEE STRIP ───────────────────────────────────────────── */
/* ── SIGNATURE DISHES CATEGORIES CAROUSEL ────────────────── */
.sig-section {
  background: var(--bg-alt);
  padding: 80px 0;
  overflow: hidden;
}
.sig-header {
  text-align: center;
}
.sig-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sig-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.sig-title em {
  color: var(--accent);
  font-style: italic;
}
.sig-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.sig-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}
.sig-carousel-track {
  display: flex;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 24px 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sig-card {
  flex: 0 0 16.666%; /* 6 items visible side-by-side on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 20px 8px;
  border-right: 1px dashed var(--border);
  transition: all 0.3s ease;
}
.sig-card:last-child {
  border-right: none;
}
.sig-active-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px var(--accent);
}
.sig-card.active .sig-active-dot,
.sig-card:hover .sig-active-dot {
  opacity: 1;
  transform: scale(1);
}
.sig-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s;
  border: 2px solid transparent;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.sig-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42); /* Scales up to crop out the gold border and brown corners in a square view */
  transition: transform 0.3s ease;
}
.sig-card.active .sig-icon-wrap,
.sig-card:hover .sig-icon-wrap {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(208, 90, 20, 0.2);
}
.sig-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: all 0.3s;
}
.sig-card.active .sig-card-name,
.sig-card:hover .sig-card-name {
  color: var(--accent);
}
.sig-card-count {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--text-muted);
}
.sig-controls-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 12px;
}
.sig-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sig-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.sig-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--accent);
}
.sig-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.25s;
}
.sig-arrow:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(208, 90, 20, 0.25);
}

@media (max-width: 900px) {
  .sig-card {
    flex: 0 0 33.333%; /* 3 visible items */
  }
  .sig-controls-row {
    display: flex;
  }
}
@media (max-width: 600px) {
  .sig-card {
    flex: 0 0 50%; /* 2 visible items */
  }
}

/* ── SECTION SHARED ──────────────────────────────────────────── */
.section { padding:80px 0 }
.container { max-width:1200px; margin:0 auto; padding:0 24px }
.section-label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
}
.section-label::before {
  content:'';
  display:block;
  width:20px; height:2px;
  background:var(--accent);
  border-radius:2px;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:700;
  color:var(--text);
  line-height:1.2;
  margin-bottom:8px;
}
.section-sub {
  font-size:1rem;
  color:var(--text-muted);
  max-width:520px;
  line-height:1.65;
}

/* ── MENU SECTION ────────────────────────────────────────────── */
#menu { background:var(--bg) }
.menu-header { margin-bottom:40px }
.menu-search-wrap {
  margin-top: 24px;
  max-width: 480px;
}
.menu-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 2px 6px 2px 18px;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}
.menu-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(208, 90, 20,0.06), var(--shadow);
}
.search-icon {
  font-size: 1rem;
  color: var(--text-light);
  margin-right: 10px;
  pointer-events: none;
}
.menu-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: .95rem;
  color: var(--text);
  outline: none;
}
.menu-search-box input::placeholder {
  color: var(--text-light);
}
#search-clear-btn {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  opacity: 0;
  pointer-events: none;
}
#search-clear-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
#search-clear-btn:hover {
  background: var(--border);
  color: var(--accent);
}

.cat-tabs {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:28px;
}
.cat-tab {
  padding:8px 18px;
  border-radius:999px;
  border:1.5px solid var(--border);
  background:var(--surface);
  color:var(--text-muted);
  font-size:.84rem;
  font-weight:500;
  cursor:pointer;
  transition:all .2s;
  white-space:nowrap;
}
.cat-tab:hover { border-color:var(--accent); color:var(--accent) }
.cat-tab.active {
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 4px 12px rgba(208, 90, 20,.25);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.menu-card {
  background: #FAF6F0 !important;
  border: 1.5px solid #F3EDE2 !important;
  border-radius: 20px !important;
  padding: 24px 20px !important;
  display: flex !important;
  align-items: stretch !important;
  position: relative !important;
  box-shadow: 0 4px 15px rgba(44, 30, 24, 0.01) !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  cursor: default !important;
}
.menu-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(44, 30, 24, 0.04) !important;
  border-color: rgba(197, 148, 88, 0.25) !important;
}

/* Card layout columns */
.menu-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 18px;
  flex-shrink: 0;
}
.menu-illust-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}
.menu-illust-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FCF8F2;
  border: 1.5px solid #F1E7D7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}
.menu-illust-circle svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}
.menu-card-veg-badge,
.menu-card-nonveg-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
  z-index: 5;
}
.menu-card-veg-badge {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}
.menu-card-nonveg-badge {
  background: #d9534f;
  color: #fff;
  box-shadow: 0 2px 6px rgba(217, 83, 79, 0.3);
}

.menu-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 0;
  padding-right: 8px;
}
.menu-card-name {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  color: #2C1E18;
  margin-bottom: 6px;
}
.menu-card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: capitalize;
}
.menu-card-tag.chef-choice {
  color: var(--accent-2);
}
.menu-card-tag.spicy {
  color: #d9534f;
}
.menu-card-tag.mild {
  color: #C59458;
}

.menu-card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 85px;
  flex-shrink: 0;
  text-align: right;
}
.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 2px;
}
.menu-card-ctrl-container {
  margin-top: auto;
}
.menu-add-btn {
  background: transparent;
  border: 1.5px solid var(--accent-2);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.menu-add-btn:hover {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 4px 10px rgba(197, 148, 88, 0.25);
}
.menu-card-accent-diamond {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 1px;
  opacity: 0.7;
}

/* Category header legend style */
.menu-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 0 24px 0;
  margin-bottom: 24px;
  border-bottom: 1.5px solid #F5ECE0;
}
.menu-cat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu-cat-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.menu-cat-desc {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.menu-cat-desc-line {
  width: 15px;
  height: 1px;
  background: var(--accent-2);
  margin-right: 8px;
  position: relative;
}
.menu-cat-desc-line::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  position: absolute;
  right: -2px;
  top: -1.5px;
}
.menu-cat-legend {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.menu-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Trust legend bar */
.menu-trust-legend {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-top: 1.5px solid #F5ECE0;
  margin-top: 48px;
}
.menu-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.menu-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FDFBF8;
  border: 1px solid #F5ECE0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.menu-trust-text strong {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}
.menu-trust-text span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Qty control styling */
.menu-card-ctrl-container .qty-control {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--accent-2);
  border-radius: 999px;
  padding: 3px;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.menu-card-ctrl-container .qty-control button {
  background: transparent;
  border: none;
  color: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.menu-card-ctrl-container .qty-control button:hover {
  background: var(--bg-alt);
}
.menu-card-ctrl-container .qty-control span {
  color: var(--text);
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.badge {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 10px;
  border-radius:999px;
  font-family: var(--font-uber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing:normal;
  text-transform:none;
}
.badge-veg   { background:rgba(34,139,34,.1); color:#1a7a1a; border:1px solid rgba(34,139,34,.2) }
.badge-nonveg{ background:rgba(208, 90, 20,.08); color:var(--accent); border:1px solid rgba(208, 90, 20,.18) }
.badge-popular{ background:var(--gold); color:#fff }
.badge-deal  { background:#E0001B; color:#FFFFFF }
.veg-dot,.nonveg-dot {
  display:inline-block;
  width:14px; height:14px;
  border-radius:3px;
  border:1.5px solid;
  position:relative;
  flex-shrink:0;
  margin-right:6px;
}
.veg-dot { border-color:#1a7a1a }
.veg-dot::after {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:6px; height:6px;
  border-radius:50%;
  background:#1a7a1a;
}
.nonveg-dot { border-color:var(--accent) }
.nonveg-dot::after {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-bottom:6px solid var(--accent);
}
/* add/qty controls */
.add-btn {
  background:var(--accent);
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:600;
  transition:all .2s;
}
.add-btn:hover { background:var(--accent-2); transform:scale(1.04) }
.qty-control {
  display:flex;
  align-items:center;
  background:var(--surface);
  border: 1px solid rgba(44,30,24,0.18);
  border-radius:999px;
  padding:2px;
  gap:2px;
}
.qty-control button {
  background:transparent;
  border:none;
  color:var(--text);
  width:26px; height:26px;
  border-radius:50%;
  font-size:1rem;
  font-weight:500;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .15s;
  cursor:pointer;
}
.qty-control button:hover { background:var(--bg-alt); color:var(--accent) }
.qty-control span { color:var(--text); font-weight:600; min-width:20px; text-align:center; font-size:.88rem; font-family:var(--font-uber) }

/* ── SPECIALS ────────────────────────────────────────────────── */
#specials { background:var(--bg-alt) !important; }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.special-card {
  background: #ffffff !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 30, 24, 0.03) !important;
  border: 1.5px solid #F3EDE2 !important;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 30, 24, 0.06) !important;
}

/* Heart Button */
.special-heart-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 10;
}
.special-heart-btn:hover {
  transform: scale(1.15);
}
.special-heart-btn svg {
  transition: fill 0.3s, stroke 0.3s;
}
.special-heart-btn.active svg {
  fill: #e29b3a;
  stroke: #e29b3a;
}

/* Badges */
.special-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 10;
}
.bestseller-badge {
  background: #b37e3d;
}
.most-ordered-badge {
  background: #e29b3a;
}
.srilankan-badge {
  background: #c65f3f;
}

/* Illustration Circle */
.special-illust-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 24px;
}
.special-illust-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #FDF9F4;
  border: 1.5px solid #F3EDE2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.01);
}

/* Card Body */
.special-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
}
.special-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.special-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 4.8em;
}

/* Tags */
.special-card-tags {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.special-tag-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/* Separator */
.special-card-divider {
  border-top: 1px solid #F5ECE0;
  margin-bottom: 20px;
  width: 100%;
}

/* Footer & CTA */
.special-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.special-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-align: left;
  line-height: 1.1;
}
.special-price span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-top: 3px;
}
.special-cta-btn {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}
.special-cta-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(208, 90, 20,0.15);
}

/* Specials Dots */
.specials-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.specials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 30, 24, 0.15);
  transition: all 0.3s;
}
.specials-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--accent);
}

/* ── INFO BAR ────────────────────────────────────────────────── */
#info { background:#FFFFFF; padding:80px 0; color:#2C1E18; }
.info-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
}
.info-cell {
  background:rgba(255,255,255,.04);
  padding:36px 28px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:background .2s;
}
.info-cell:hover { background:rgba(208, 90, 20,.15) }
.info-icon { font-size:2rem }
.info-label {
  font-size:.7rem;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gold);
}
.info-value {
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:600;
  color:#FDF8F0;
  line-height:1.4;
}
.info-sub { font-size:.82rem; color:rgba(253,248,240,.55) }
.info-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.8rem;
  font-weight:600;
  color:var(--accent-2);
  margin-top:6px;
  transition:gap .2s;
}
.info-link:hover { gap:10px }

/* ── PROMO BANNER ────────────────────────────────────────────── */
#promo { padding:60px 0; background:var(--bg-alt) }
.promo-inner {
  background:linear-gradient(135deg,var(--accent) 0%,var(--accent-2) 100%);
  border-radius:24px;
  padding:52px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  box-shadow:0 20px 60px rgba(208, 90, 20,.3);
  position:relative;
  overflow:hidden;
}
.promo-inner::before {
  content:'';
  position:absolute;
  top:-60px; right:-60px;
  width:240px; height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
}
.promo-inner::after {
  content:'';
  position:absolute;
  bottom:-40px; left:20%;
  width:160px; height:160px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
}
.promo-text { position:relative; z-index:1 }
.promo-eyebrow {
  font-size:.7rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
  margin-bottom:10px;
}
.promo-headline {
  font-family:var(--font-display);
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
  line-height:1.2;
}
.promo-sub { font-size:.9rem; color:rgba(255,255,255,.8) }
.promo-code-wrap {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}
.promo-code {
  background:rgba(255,255,255,.15);
  border:2px dashed rgba(255,255,255,.5);
  border-radius:var(--radius-sm);
  padding:16px 28px;
  font-family:var(--font-display);
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
  letter-spacing:3px;
}
.promo-copy-btn {
  background:#fff;
  color:var(--accent);
  border:none;
  padding:14px 22px;
  border-radius:var(--radius-sm);
  font-size:.86rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:7px;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  transition:all .2s;
}
.promo-copy-btn:hover { transform:scale(1.04) }
.promo-copy-btn.copied { background:var(--text); color:#fff }
.promo-terms {
  width:100%;
  font-size:.75rem;
  color:rgba(255,255,255,.65);
  position:relative;
  z-index:1;
}

/* ── STORY ───────────────────────────────────────────────────── */
#story { background:var(--bg) }
.story-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.story-visual {
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:16 / 9;
  width:100%;
}
.story-video-player {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.story-accent {
  position:absolute;
  bottom:16px; left:16px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-radius:var(--radius-sm);
  padding:12px 18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.story-accent .num {
  font-family:var(--font-display);
  font-size:1.6rem;
  font-weight:700;
  color:var(--accent);
  line-height:1;
  display:block;
}
.story-accent .lbl {
  font-size:.65rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
  color:var(--text-muted);
  display:block;
  margin-top:4px;
}
.story-text {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.story-text .section-title {
  margin-top:8px;
  margin-bottom:20px;
}
.story-text p {
  font-size:.98rem;
  color:var(--text-muted);
  line-height:1.75;
  margin-bottom:18px;
}
.story-stats {
  display:flex;
  gap:48px;
  margin:28px 0;
  padding:20px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  width:100%;
  flex-wrap:wrap;
}
.story-stat {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.story-stat .num {
  font-family:var(--font-display);
  font-size:2.2rem;
  font-weight:700;
  color:var(--accent);
  line-height:1;
}
.story-stat .lbl {
  font-size:.72rem;
  color:var(--text-light);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background:var(--text);
  padding:60px 0 24px;
  position:relative;
}
footer::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--gold),var(--accent-2),var(--gold));
}
.foot-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.foot-brand-name {
  font-family:var(--font-display);
  font-size:1.6rem;
  font-weight:700;
  color:var(--accent-2);
  margin-bottom:8px;
}
.foot-brand-sub {
  font-size:.85rem;
  color:rgba(253,248,240,.6);
  line-height:1.7;
  margin-bottom:20px;
}
.foot-social {
  display:flex;
  gap:10px;
}
.foot-social a {
  width:38px; height:38px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  color:rgba(253,248,240,.7);
  transition:all .2s;
}
.foot-social a:hover { border-color:var(--accent-2); color:var(--accent-2); background:rgba(232,137,12,.08) }
footer h4 {
  font-family:var(--font-display);
  color:rgba(253,248,240,.9);
  margin-bottom:16px;
  font-size:1rem;
}
footer ul { list-style:none }
footer ul li { margin-bottom:9px }
footer ul li a {
  font-size:.86rem;
  color:rgba(253,248,240,.55);
  transition:color .2s;
}
footer ul li a:hover { color:var(--accent-2) }
footer p { font-size:.85rem; color:rgba(253,248,240,.55); margin-bottom:6px }
.foot-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.foot-bottom span { font-size:.78rem; color:rgba(253,248,240,.4) }

/* ── FLOATING BUTTONS ────────────────────────────────────────── */
.wa-float {
  position:fixed;
  bottom:24px; left:24px;
  width:56px; height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.4);
  z-index:90;
  transition:transform .2s;
  animation:wa-pulse 3s infinite;
}
.wa-float:hover { transform:scale(1.12) }
@keyframes wa-pulse {
  0%,100% { box-shadow:0 4px 16px rgba(37,211,102,.4) }
  50% { box-shadow:0 4px 28px rgba(37,211,102,.7),0 0 0 8px rgba(37,211,102,.12) }
}
.back-top {
  position:fixed;
  bottom:24px; right:24px;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--surface);
  border:1.5px solid var(--border);
  color:var(--accent);
  display:none;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  box-shadow:var(--shadow);
  z-index:90;
  transition:all .2s;
  cursor:pointer;
}
.back-top.visible { display:flex }
.back-top:hover { background:var(--accent); color:#fff; border-color:var(--accent) }

/* ── FLOATING CART ───────────────────────────────────────────── */
.floating-cart {
  position:fixed;
  bottom:22px; left:50%;
  transform:translateX(-50%) translateY(160%);
  z-index:88;
  background:var(--text);
  color:#FDF8F0;
  padding:12px 10px 12px 22px;
  border-radius:999px;
  box-shadow:var(--shadow-lg);
  display:flex;
  align-items:center;
  gap:16px;
  cursor:pointer;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
  font-size:.9rem;
}
.floating-cart.visible { transform:translateX(-50%) translateY(0) }
.floating-cart .fc-cta {
  background:var(--accent);
  color:#fff;
  padding:7px 16px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:600;
}

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position:fixed;
  bottom:100px; left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--text);
  color:#FDF8F0;
  padding:11px 22px;
  border-radius:999px;
  font-size:.86rem;
  font-weight:500;
  opacity:0;
  pointer-events:none;
  transition:all .3s;
  z-index:400;
  box-shadow:var(--shadow-lg);
  white-space:nowrap;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0) }

/* ── MODALS ──────────────────────────────────────────────────── */
.modal-overlay {
  position:fixed;
  inset:0;
  background:rgba(26,16,8,.5);
  backdrop-filter:blur(8px);
  z-index:10000;
  display:none;
  align-items:flex-end;
  justify-content:center;
  opacity:0;
  transition:opacity .25s;
}
.modal-overlay.active { display:flex; opacity:1 }
@media(min-width:768px) { .modal-overlay { align-items:center; padding:20px } }
.modal {
  background:var(--surface);
  border-radius:24px 24px 0 0;
  width:100%;
  max-width:580px;
  max-height:92vh;
  overflow-y:auto;
  padding:28px 24px;
  transform:translateY(30px);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow:0 30px 80px rgba(26,16,8,.2);
  position:relative;
  border-top:4px solid var(--accent);
}
@media(min-width:768px) { .modal { border-radius:24px } }
.modal-overlay.active .modal { transform:translateY(0) }
.modal::-webkit-scrollbar { width:5px }
.modal::-webkit-scrollbar-thumb { background:var(--border); border-radius:3px }
.modal-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid var(--border-soft);
}
.modal-header h3 {
  font-family:var(--font-uber);
  font-size:1.5rem;
  font-weight:700;
  color:var(--text);
}
.close-btn {
  background:var(--surface-2);
  border:none;
  width:34px; height:34px;
  border-radius:50%;
  color:var(--text-muted);
  font-size:1.1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
}
.close-btn:hover { background:var(--border); color:var(--accent) }

.login-close-btn {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  right: auto !important;
  z-index: 100 !important;
}

/* Login modal */
.login-modal-overlay {
  position:fixed;
  inset:0;
  background:rgba(26,16,8,.5);
  backdrop-filter:blur(8px);
  z-index:600;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.login-modal-overlay.active { display:flex }
.login-modal {
  background: #FAF8F5; /* Warm premium light cream background */
  border-radius: 26px; /* High-end rounded corners */
  width: 100%;
  max-width: 520px;
  padding: 40px 32px 36px 32px;
  position: relative;
  border: 1px solid rgba(44,30,24,0.05);
  box-shadow: 0 25px 70px rgba(26,16,8,0.22);
  max-height: 90vh;
  overflow-y: auto;
}
.login-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-logo-container img {
  height: 96px;
  width: auto;
  object-fit: contain;
}
.login-heading {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: #2C1E18;
  text-align: center;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.login-heading em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent); /* Terracotta */
}
.login-heading .arrow-left {
  display: inline-block;
  transform: scaleX(-1); /* Mirror to point left */
  color: #D2A888; /* Gold/Bronze */
  font-size: 1.25rem;
}
.login-heading .arrow-right {
  color: #D2A888;
  font-size: 1.25rem;
}
.login-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #7E746F; /* Muted warm gray */
  margin-bottom: 28px;
}
.login-tabs-row {
  display: flex;
  background: #FAF6F0;
  border: 1px solid #EFEAE2;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}
.login-tab-btn {
  flex: 1;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #7E746F;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.login-tab-btn.active {
  background: var(--accent); /* Terracotta */
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(208, 90, 20,0.18);
}

/* Styled Inputs with Icons */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-with-icon > svg,
.input-with-icon > i {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #A69C95;
  pointer-events: none;
}
.input-with-icon input {
  width: 100%;
  padding: 14px 14px 14px 44px !important; /* spacing for left icon */
  background: #ffffff !important;
  border: 1px solid #ECE7DF !important;
  border-radius: 12px !important; /* Match mockup input radius */
  color: #2C1E18;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.input-with-icon input::placeholder {
  color: #BDB5AE;
}
.input-with-icon input:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(208, 90, 20,0.08) !important;
}

/* Password Toggle */
.password-toggle-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: #A69C95;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.password-toggle-btn:hover {
  color: var(--accent);
}

/* Forgot Password Row */
.forgot-password-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
  margin-bottom: 22px;
}
.forgot-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.forgot-link:hover {
  opacity: 0.85;
}

/* Submit Button Override */
.login-submit-btn {
  border-radius: 12px !important; /* matching mock */
  padding: 14px !important;
  box-shadow: 0 5px 15px rgba(208, 90, 20,0.18) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Logins */
.social-login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 20px 0;
  color: #B2A7A0;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: lowercase;
}
.social-login-divider::before,
.social-login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ECE7DF;
}
.social-login-divider::before {
  margin-right: 12px;
}
.social-login-divider::after {
  margin-left: 12px;
}
.social-login-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.social-btn {
  flex: 1;
  height: 48px;
  border: 1px solid #ECE7DF;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background: #FCFAF7;
  border-color: #D2CBC0;
}
.social-btn img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* Security Footer */
.security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #7E746F;
  margin-top: 10px;
}
.sec-highlight {
  font-weight: 700;
  color: #2C1E18;
}
.msg { font-size:.82rem; margin-top:10px; text-align:center; font-weight:600 }
.msg.err { color:var(--accent) }
.msg.ok  { color:#1a7a1a }

/* Form elements */
.form-group { margin-bottom:16px }
.form-group label { display:block; font-size:.8rem; color:var(--text); margin-bottom:6px; font-weight:600 }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%;
  padding:12px 14px;
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:var(--radius-xs);
  color:var(--text);
  font-size:.92rem;
  transition:all .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(208, 90, 20,.1);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px }
.primary-btn {
  width:100%;
  background:var(--accent);
  color:#fff;
  border:none;
  padding:14px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:.96rem;
  margin-top:8px;
  transition:all .2s ease-in-out;
  box-shadow:0 4px 12px rgba(208, 90, 20,.2);
  cursor:pointer;
}
.primary-btn:hover:not(:disabled) { transform:translateY(-2px); background:#B54D0E; box-shadow:0 6px 16px rgba(208, 90, 20,.3) }
.primary-btn:disabled { opacity:.5; cursor:not-allowed }
.secondary-btn {
  width:100%;
  background:transparent;
  color:var(--text);
  border:1.5px solid var(--border);
  padding:12px;
  border-radius:var(--radius-xs);
  font-weight:500;
  font-size:.88rem;
  margin-top:8px;
  transition:all .2s;
}
.secondary-btn:hover { border-color:var(--accent); color:var(--accent) }
.cancel-order-btn {
  width: 100%;
  background: transparent;
  color: #DC2626;
  border: 1.5px solid #FCA5A5;
  padding: 12px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 8px;
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.cancel-order-btn:hover {
  background: #FEF2F2;
  border-color: #EF4444;
  color: #B91C1C;
}
.toggle-group { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:20px }
.toggle-option {
  padding:18px 14px;
  background:var(--surface);
  border:2px solid var(--border-soft);
  border-radius:var(--radius-sm);
  cursor:pointer;
  text-align:center;
  transition:all .25s;
  position:relative;
}
.toggle-option:hover { border-color:var(--border) }
.toggle-option.active { border-color:var(--accent); background:rgba(208, 90, 20,.04) }
.toggle-option.active::after {
  content:'';
  position:absolute;
  top:10px; right:10px;
  width:16px; height:16px;
  border-radius:50%;
  background:var(--accent) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.toggle-option .icon { font-size:1.5rem; margin-bottom:7px }
.toggle-option .label { font-weight:700; font-size:.95rem; font-family:var(--font-display); color:var(--text) }
.toggle-option .sub { font-size:.73rem; color:var(--text-muted); margin-top:3px }
.notice {
  background:var(--bg-alt);
  border:1px solid var(--border-soft);
  padding:13px 15px;
  border-radius:var(--radius-xs);
  font-size:.85rem;
  color:var(--text);
  margin:12px 0;
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.5;
}
.notice.success { background:rgba(34,139,34,.08); border-color:rgba(34,139,34,.2); color:#1a5c1a }
.cart-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
  border-bottom:1px dashed var(--border-soft);
  gap:12px;
}
.cart-item:last-child { border-bottom:none }
.cart-item-name { font-weight:600; font-size:.92rem; font-family:var(--font-display); color:var(--text) }
.cart-item-price { font-size:.78rem; color:var(--text-muted); margin-top:2px }
.cart-summary { margin-top:20px; padding:16px; background:var(--surface); border-radius:var(--radius-sm); border:1px solid var(--border) }
.summary-row { display:flex; justify-content:space-between; margin-bottom:9px; font-size:.87rem; color:var(--text-muted) }
.summary-row.discount { color:#1a7a1a; font-weight:600 }
.summary-row.total { margin-top:12px; padding-top:12px; border-top:1px dashed var(--border); font-size:1.15rem; font-weight:700; color:var(--text); font-family:var(--font-display);}
.empty-cart { text-align:center; padding:44px 20px; color:var(--text-muted) }
.empty-cart .icon { font-size:3rem; margin-bottom:14px; opacity:.4 }
.promo-box { margin:16px 0 0; background:rgba(208, 90, 20,.05); border:1.5px dashed rgba(208, 90, 20,.25); border-radius:var(--radius-xs); padding:13px 15px }
.promo-box label { font-size:.8rem; font-weight:600; color:var(--text); display:block; margin-bottom:7px }
.promo-row { display:flex; gap:8px }
.promo-row input { flex:1; padding:10px 12px; border:1.5px solid var(--border); border-radius:var(--radius-xs); font-size:.88rem; color:var(--text); background:var(--surface); text-transform:uppercase }
.promo-row input:focus { outline:none; border-color:var(--accent) }
.promo-apply-btn { background:var(--accent); color:#fff; border:none; padding:10px 16px; border-radius:var(--radius-xs); font-weight:600; font-size:.82rem }
.promo-msg { margin-top:6px; font-size:.8rem; font-weight:600 }
.promo-msg.ok { color:#1a7a1a }
.promo-msg.err { color:var(--accent) }
.status-tracker { display:flex; justify-content:space-between; margin:26px 0; position:relative }
.status-tracker::before { content:''; position:absolute; top:20px; left:10%; right:10%; height:2px; background:var(--border); z-index:1 }
.progress-line { position:absolute; top:20px; left:10%; height:2px; background:linear-gradient(90deg,var(--gold),var(--accent)); z-index:2; transition:width .6s }
.status-step { position:relative; z-index:3; display:flex; flex-direction:column; align-items:center; flex:1 }
.status-dot { width:40px; height:40px; border-radius:50%; background:var(--surface); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:.9rem; margin-bottom:8px; transition:all .3s; font-weight:600; color:var(--text-muted) }
.status-step.done .status-dot { background:var(--accent); border-color:var(--accent); color:#fff }
.status-step.current .status-dot { background:var(--gold); border-color:var(--gold); color:var(--text); animation:pulseGold 2s infinite }
@keyframes pulseGold { 0%,100%{box-shadow:0 0 0 6px rgba(201,168,76,.18)}50%{box-shadow:0 0 0 10px rgba(201,168,76,0)} }
.status-label { font-size:.68rem; color:var(--text-muted); text-align:center; max-width:72px; font-weight:500 }
.status-step.done .status-label,.status-step.current .status-label { color:var(--text); font-weight:600 }
.success-icon { width:80px; height:80px; border-radius:50%; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; margin:0 auto 22px; animation:popIn .5s cubic-bezier(.34,1.56,.64,1); box-shadow:0 0 0 8px rgba(208, 90, 20,.1) }
@keyframes popIn { 0%{transform:scale(0)}60%{transform:scale(1.15)}100%{transform:scale(1)} }
.wa-btns { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin:12px 0 }
.wa-btn { display:flex; align-items:center; justify-content:center; gap:7px; padding:11px; background:var(--surface); border:1.5px solid rgba(37,211,102,.3); color:#1a7a1a; border-radius:var(--radius-xs); font-weight:600; font-size:.85rem; transition:all .2s }
.wa-btn:hover { background:rgba(37,211,102,.08); border-color:#25D366 }
.info-block { background:var(--bg-alt); border:1px solid var(--border-soft); padding:14px; border-radius:var(--radius-xs); margin:12px 0; font-size:.87rem }
.info-block strong { color:var(--text); font-family:var(--font-display); font-size:.96rem; display:block; margin-bottom:4px }
.info-block .address { color:var(--text-muted); line-height:1.55 }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1100px) {
  .foot-grid { grid-template-columns:1fr 1fr }
}
@media(max-width:900px) {
  .nav-links { display:none }
  .hamburger { display:flex }
  .story-inner { grid-template-columns:1fr }
  .info-grid { grid-template-columns:1fr 1fr }
  .specials-grid { grid-template-columns:1fr }
  .promo-inner { flex-direction:column; text-align:center }
  .promo-code-wrap { justify-content:center }
}
@media(max-width:600px) {
  :root { --nav-h:72px; --bar-h:34px }
  nav { padding:0 16px; gap:10px }
  .nav-logo-img { height:54px !important; width:auto !important; }
  .container { padding:0 16px }
  .btn-order { display:none }
  .hero h1 { font-size:clamp(1.9rem,8vw,2.6rem) }
  .hero-trust { flex-wrap:wrap; gap:20px; padding:14px 20px }
  .trust-sep { display:none }
  .section { padding:56px 0 }
  .menu-grid { grid-template-columns:1fr; gap:12px }
  .menu-card { height:120px }
  .menu-card-img-wrap { flex:0 0 86px; width:86px; height:86px; margin:auto 12px auto 0 }
  .menu-card-ctrl-container { bottom: 4px; right: 4px; }
  .menu-card-ctrl-container .add-btn { width: 28px; height: 28px; font-size: 1rem; }
  .menu-card-ctrl-container .qty-control button { width: 20px; height: 20px; font-size: 0.85rem; }
  .menu-card-ctrl-container .qty-control span { min-width: 14px; font-size: 0.75rem; }
  .menu-card-body { padding:10px 12px }
  .menu-card-name { font-size:0.86rem }
  .menu-card-desc { font-size:0.7rem; -webkit-line-clamp:2 }
  .info-grid { grid-template-columns:1fr }
  .foot-grid { grid-template-columns:1fr; gap:28px }
  .cat-tabs { gap:6px }
  .cat-tab { padding:6px 13px; font-size:.78rem }
  .promo-inner { padding:32px 20px }
  .promo-code { font-size:1.4rem; padding:12px 20px }
  .story-visual video,.story-visual img { height:280px }
  .toggle-group { grid-template-columns:1fr }
  .modal { max-height:94vh; padding:20px 16px }
  .login-modal { padding:24px 16px }
  
  /* Slide notification banner from the bottom on mobile instead of top */
  .order-notification-banner {
    top: auto !important;
    bottom: -150px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 480px !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }
  .order-notification-banner.active {
    top: auto !important;
    bottom: 24px !important;
  }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media(prefers-reduced-motion:reduce) {
  .reveal { transition:none }
  .ann-track, .marquee-track { animation:none }
  .wa-float { animation:none }
  .btn-primary:hover,.btn-outline:hover,.btn-order:hover { transform:none }
  .menu-card:hover,.special-card:hover { transform:none }
}
@keyframes spin { to { transform:rotate(360deg) } }

/* ── DELIVEROO STYLE INFO WIDGET ────────────────────────────────── */
.restaurant-info-widget {
  margin: 24px auto 32px auto;
  max-width: 800px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-links-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.info-link-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.info-link-item:hover {
  background: rgba(208, 90, 20, 0.05);
  transform: translateY(-2px);
  border-color: rgba(208, 90, 20, 0.1);
}
.info-link-item .icon {
  font-size: 1.2rem;
}
.info-link-item .label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.info-link-item .chevron {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.info-link-item:hover .chevron {
  transform: translateX(3px);
}
.promo-info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF5F6; /* Soft light red/pink matching accent */
  border: 1px solid rgba(208, 90, 20, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.promo-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.promo-tag-icon {
  font-size: 1.3rem;
  background: var(--accent);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(208, 90, 20, 0.2);
}
.promo-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promo-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.promo-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── POPULAR SECTION (DELIVEROO CAROUSEL STYLE) ──────────────────── */
.popular-section {
  margin: 32px 0;
  text-align: left;
}
.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.popular-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.carousel-nav {
  display: flex;
  gap: 8px;
}
.carousel-nav .nav-btn {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  user-select: none;
  line-height: 1;
}
.carousel-nav .nav-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}
.popular-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px 4px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.popular-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.popular-card {
  flex: 0 0 180px; /* Fixed width for carousel items */
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.popular-card-img-container {
  position: relative;
  width: 100%;
  height: 120px;
  background: var(--surface-2);
  overflow: hidden;
}
.popular-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.popular-card:hover .popular-card-img {
  transform: scale(1.05);
}
.popular-card-add-btn {
  position: absolute;
  bottom: -14px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(208, 90, 20, 0.15);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}
.popular-card-add-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow);
}
.popular-card-body {
  padding: 22px 12px 14px 12px; /* Extra top padding to clear absolute button */
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  background: var(--surface);
}
.popular-card-name {
  font-family: var(--font-uber);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}
.popular-card-price {
  font-family: var(--font-uber);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A1A1A;
}

/* ── 3D FLYING PARTICLE ANIMATION ────────────────────────────── */
.flying-food-particle {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(44,30,24,0.18);
  z-index: 99999;
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.25, 1, 0.5, 1), 
              top 0.75s cubic-bezier(0.06, 0.97, 0.53, 1.2), /* Jumps up and then falls down */
              transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), 
              opacity 0.75s ease-out;
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* 3D Cart Badge Pop Animation */
.badge-bounce {
  animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.6); filter: drop-shadow(0 0 8px var(--accent)); }
  100% { transform: scale(1); }
}

/* ── BOOKSHELF SECTION & Dynamic Detail Page ── */
.shelf-section {
  background: #FAF6F0;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.shelf-header {
  text-align: center;
  margin-bottom: 40px;
}
.shelf-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #2C1E18;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.shelf-header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.orn-line {
  width: 60px;
  height: 1.5px;
  background: var(--accent-2);
}
.orn-flower {
  color: var(--accent-2);
  font-size: 1.1rem;
}
.shelf-header-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.bookshelf-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect width="40" height="40" fill="%23FAF6F0"/><circle cx="20" cy="20" r="1" fill="%23E7DEC9" opacity="0.5"/></svg>');
  padding: 40px 20px 20px;
  border-radius: 28px;
  border: 1.5px solid #F2E8D5;
  box-shadow: inset 0 0 40px rgba(44,30,24,0.02);
}
.shelf-search-wrap {
  max-width: 500px;
  margin: 0 auto 48px auto;
}
.shelf-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  width: 100%;
}
.books-grid {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: safe center;
  min-height: 345px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 2;
  padding: 10px 64px;
}
.books-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 900px) {
  .books-grid {
    justify-content: flex-start;
  }
}
.shelf-board {
  width: 100%;
  height: 26px;
  background: linear-gradient(to bottom, #72401f 0%, #462610 100%);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(44, 30, 24, 0.35);
  border-top: 4px solid #8c532d;
  border-bottom: 3px solid #301708;
  z-index: 1;
  margin-top: -6px;
  position: relative;
}
.shelf-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255,255,255,0.08);
}
.shelf-book {
  width: 140px;
  height: 330px;
  position: relative;
  border-radius: 4px 12px 12px 4px;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(255,255,255,0.06) 6%, rgba(255,255,255,0.12) 12%, rgba(255,255,255,0) 24%, rgba(0,0,0,0.05) 85%, rgba(0,0,0,0.35) 100%), var(--book-color);
  box-shadow: 8px 6px 18px rgba(0,0,0,0.35), inset 3px 0 6px rgba(255,255,255,0.15), inset -3px 0 6px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: bottom center;
  flex-shrink: 0;
}
.shelf-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 1px 0 3px rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.shelf-book::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  bottom: 14px;
  border: 1px solid rgba(197, 148, 88, 0.35);
  border-radius: 3px 7px 7px 3px;
  pointer-events: none;
  z-index: 1;
}
.shelf-book:hover {
  transform: translateY(-15px) rotate(-1deg) scale(1.03);
  box-shadow: 15px 12px 28px rgba(44, 30, 24, 0.4);
}
.book-spine {
  width: 100%;
  height: 100%;
  position: relative;
  color: #FAF6F0;
  z-index: 2;
}
.book-spine-num {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-2);
  border-bottom: 1.5px solid rgba(197, 148, 88, 0.45);
  padding-bottom: 6px;
  width: 32px;
  margin: 0 auto;
  z-index: 2;
}
.book-spine-title {
  position: absolute;
  top: 52%;
  left: 15px; /* offset for crease */
  right: 0;
  transform: translateY(-50%);
  white-space: normal;
  word-wrap: break-word;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FAF6F0;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  text-align: center;
  z-index: 2;
  padding: 0 16px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.book-spine-icon {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  color: var(--accent-2);
  opacity: 0.9;
  z-index: 2;
  border-top: 1.5px solid rgba(197, 148, 88, 0.45);
  padding-top: 6px;
  width: 32px;
  margin: 0 auto;
}
.book-spine-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.shelf-trust-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-top: 1.5px solid #F1E7D3;
  margin-top: 40px;
  background: rgba(250, 246, 240, 0.5);
  border-radius: 16px;
  border: 1px dashed rgba(197, 148, 88, 0.2);
}
.shelf-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.shelf-trust-icon {
  font-size: 1.4rem;
}
.shelf-trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.shelf-trust-text strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: #2C1E18;
}
.shelf-trust-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* book split container details view */
.book-details-view {
  max-width: 1200px;
  margin: 0 auto;
  animation: pageTurn 0.5s ease-out both;
}
@keyframes pageTurn {
  from { transform: rotateY(-10deg) scale(0.95); opacity: 0; }
  to { transform: rotateY(0deg) scale(1); opacity: 1; }
}
.book-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.back-shelf-btn {
  background: transparent;
  border: none;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.2s;
}
.back-shelf-btn:hover {
  color: var(--accent-2);
}
.bread-active-cat {
  color: #2C1E18;
  font-weight: 700;
}
.book-split-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #FAF6F0;
  border: 1.5px solid #EAE0CD;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(44,30,24,0.06);
  min-height: 580px;
}
.book-left-cover {
  padding: 48px 40px;
  color: #FAF6F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}
.book-cover-bg-ornament-top {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  opacity: 0.75;
}
.book-cover-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 246, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin: 0 auto 20px auto;
  background: rgba(250, 246, 240, 0.05);
  z-index: 2;
}
.book-cover-icon-badge svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}
.book-cover-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 4px;
  margin: 0 auto 12px auto;
  width: fit-content;
  min-width: 32px;
  z-index: 2;
}
.book-cover-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FAF6F0;
  margin: 0 auto 10px auto;
  line-height: 1.15;
  z-index: 2;
}
.book-cover-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 320px;
  z-index: 2;
}
.book-cover-img-wrap {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: -48px; /* negate bottom padding of parent */
  height: 250px;
  margin-top: auto; /* push to the very bottom */
  border: none;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
}
.book-cover-img-wrap img {
  width: 100%;
  height: 100%;
}
/* For full rectangular JPG photos, fill the card bottom */
.book-cover-img-wrap img[src$=".jpg"],
.book-cover-img-wrap img[src$=".jpeg"] {
  object-fit: cover;
}
/* For transparent PNGs (like Breads and Drinks), contain them nicely */
.book-cover-img-wrap img[src$=".png"] {
  object-fit: contain;
  max-width: 320px;
  margin-bottom: 20px; /* add some spacing from the bottom edge for isolated icons */
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.4));
}
.book-cover-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  filter: none !important;
}
.book-right-list {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  background: #FAF6F0;
  height: 100%;
}
.book-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #F1E7D3;
  padding-bottom: 16px;
  margin-bottom: 12px;
}
.book-list-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C1E18;
}
.book-legend-row {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
}
.book-items-scroll {
  overflow-y: auto;
  max-height: 480px;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
}
.book-items-scroll::-webkit-scrollbar {
  width: 6px;
}
.book-items-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.book-items-scroll::-webkit-scrollbar-thumb {
  background: #E1D6C1;
  border-radius: 4px;
}
.book-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid #EFE4D0;
  background: transparent;
  transition: none;
  cursor: default;
}
.book-item-row:last-child {
  border-bottom: none;
}
.book-item-row:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}
.book-item-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.book-item-illust-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FCF8F2;
  border: 1.2px solid #EFE4D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C56E33;
  margin-right: 18px;
  flex-shrink: 0;
}
.book-item-illust-circle svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.book-item-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.book-item-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.book-item-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C1E18;
}
.book-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.book-item-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.book-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #B85C27;
}
.book-item-ctrl {
  min-width: 40px;
  display: flex;
  justify-content: center;
}
.book-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #D47A3C;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(212, 122, 60, 0.25);
  line-height: 1;
  padding: 0;
}
.book-add-btn:hover {
  transform: scale(1.08);
  background: #C26B30;
}
.book-qty-control {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #D47A3C;
  border-radius: 999px;
  padding: 2px;
  gap: 4px;
  box-shadow: 0 3px 8px rgba(212, 122, 60, 0.1);
}
.book-qty-control button {
  background: transparent;
  border: none;
  color: #D47A3C;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.book-qty-control button:hover {
  background: #FAF6F0;
}
.book-qty-control span {
  color: var(--text);
  font-weight: 700;
  min-width: 14px;
  text-align: center;
  font-size: 0.85rem;
}

/* Authentic Indian Veg / Non-Veg Mark Marks */
.mark-veg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid #10B981;
  border-radius: 4px;
  padding: 2px;
  vertical-align: middle;
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.1);
  flex-shrink: 0;
}
.mark-veg::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}
.mark-nonveg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid #EF4444;
  border-radius: 4px;
  padding: 2px;
  vertical-align: middle;
  background: rgba(239, 68, 68, 0.05);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.1);
  flex-shrink: 0;
}
.mark-nonveg::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
}


@media (max-width: 900px) {
  .book-split-container {
    grid-template-columns: 1fr;
  }
  .book-left-cover {
    padding: 32px;
    align-items: center;
    text-align: center;
  }
  .book-cover-img-wrap {
    width: 200px;
    height: 200px;
    margin: 20px auto 0 auto; /* center align with margin reset */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .shelf-trust-bar {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── GOOGLE ACCOUNT CHOOSER MODAL STYLES ── */
.google-chooser-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 33, 36, 0.6); /* Google gray overlay */
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.google-chooser-overlay.active {
  display: flex;
}
.google-chooser-card {
  background: #ffffff;
  border-radius: 8px; /* Google's standard border-radius */
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 380px;
  padding: 36px 28px 24px 28px;
  box-sizing: border-box;
  position: relative;
  animation: googlePop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes googlePop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.google-chooser-header {
  text-align: center;
  margin-bottom: 24px;
}
.google-chooser-header .g-logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}
.google-chooser-header h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: #202124;
  margin: 0 0 6px 0;
}
.google-chooser-header .g-sub {
  font-size: 0.9rem;
  color: #5f6368;
  margin: 0;
}
.google-accounts-list {
  border-top: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
  margin-bottom: 20px;
  max-height: 260px;
  overflow-y: auto;
}
.g-account-item {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  margin: 4px 0;
}
.g-account-item:hover {
  background-color: #f7f8f9;
}
.g-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.g-avatar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #5f6368;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.g-account-info {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}
.g-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #3c4043;
}
.g-email {
  font-size: 0.78rem;
  color: #5f6368;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.google-chooser-footer {
  font-size: 0.72rem;
  color: #5f6368;
  line-height: 1.4;
  text-align: left;
}
.g-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.g-spinner {
  width: 36px;
  height: 36px;
  border: 3.5px solid #f3f3f3;
  border-top: 3.5px solid #4285f4;
  border-radius: 50%;
  animation: gSpin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes gSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.g-loading-text {
  font-size: 0.88rem;
  color: #202124;
}

/* Google Full Width Button Styling */
.google-full-width-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 48px !important;
  border: 1px solid #ECE7DF !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #2C1E18 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 6px rgba(44,30,24,0.04) !important;
  transition: all 0.2s ease !important;
}
.google-full-width-btn:hover {
  background: #FCFAF7 !important;
  border-color: #D2CBC0 !important;
  box-shadow: 0 4px 10px rgba(44,30,24,0.06) !important;
}

/* Bookshelf Navigation Buttons */
.shelf-nav-btn {
  position: absolute;
  top: 140px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(208, 90, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.shelf-nav-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(208, 90, 20,0.5);
}
.shelf-nav-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}
.shelf-nav-btn.prev {
  left: 20px;
}
.shelf-nav-btn.next {
  right: 20px;
}
@media (max-width: 768px) {
  .shelf-nav-btn {
    width: 38px;
    height: 38px;
  }
  .shelf-nav-btn.prev {
    left: 10px;
  }
  .shelf-nav-btn.next {
    right: 10px;
  }
}

/* ── ORDERS HISTORY VIEW REDESIGN ── */
.orders-tabs {
  display: flex;
  background: #fbfaf8;
  border: 1px solid var(--border-soft);
  border-radius: 99px;
  padding: 4px;
  margin: 0 20px 20px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.orders-tabs::-webkit-scrollbar {
  display: none;
}
.orders-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.orders-tab:hover {
  color: var(--text);
  background: rgba(208, 90, 20, 0.03);
}
.orders-tab.active {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(208, 90, 20, 0.2);
}
.orders-tab .ongoing-badge {
  background: #FFE0B2;
  color: #E65100;
  padding: 1px 6px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}
.orders-tab.active .ongoing-badge {
  background: #fff;
  color: var(--accent);
}

.order-history-list {
  max-height: 52vh;
  overflow-y: auto;
  padding: 0 20px 10px;
}

.new-order-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
  transition: all 0.2s ease;
}
.new-order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.03);
}
.order-card-main {
  display: flex;
  padding: 18px;
  gap: 16px;
  align-items: center;
}
.order-card-ill-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(208, 90, 20, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.order-card-details {
  flex: 1;
  min-width: 0;
}
.order-card-id-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.order-card-id-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.order-card-id-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.order-card-meta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 5px;
  column-gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.order-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-card-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--text-light);
}
.order-card-meta-val {
  font-weight: 500;
}

.order-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-left: 20px;
  border-left: 1.5px dashed var(--border-soft);
  min-width: 130px;
  flex-shrink: 0;
}
.order-card-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.order-card-price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}
.order-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}
.order-status-pill.pending {
  background: #FFF4E5;
  color: #B25E00;
  border: 1px solid #FFE0B2;
}
.order-status-pill.preparing, .order-status-pill.on_the_way {
  background: #E0F2F1;
  color: #00796B;
  border: 1px solid #B2DFDB;
}
.order-status-pill.ready, .order-status-pill.delivered {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}
.order-status-pill.cancelled {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

.order-card-chevron {
  color: var(--text-light);
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.order-card-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-soft);
  background: #faf9f6;
  border-radius: 0 0 16px 16px;
}
.order-card-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.order-card-action-btn:hover {
  background: #f1f0ec;
  color: var(--accent);
}
.order-card-action-btn:not(:last-child) {
  border-right: 1px solid var(--border-soft);
}
.order-card-action-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 600px) {
  .orders-tab {
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }
  .order-card-main {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 12px;
  }
  .order-card-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-left: none;
    border-top: 1px dashed var(--border-soft);
    padding-left: 0;
    padding-top: 12px;
    min-width: 0;
  }
  .order-card-chevron {
    display: none;
  }
  .order-card-ill-circle {
    display: none;
  }
}

/* ── NEW CATEGORIES SIDEBAR & MAIN GRID MENU LAYOUT ── */
.menu-search-wrap {
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 5;
}

.menu-main-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 4px 12px 4px 4px;
}

/* Custom Scrollbar for Sidebar list */
.menu-sidebar::-webkit-scrollbar {
  width: 4px;
}
.menu-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.menu-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.menu-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-sidebar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-sidebar-item:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.menu-sidebar-item.active {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(208, 90, 20, 0.08);
}
.menu-sidebar-item.active .menu-sidebar-icon {
  color: var(--accent);
}

.menu-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: color 0.2s;
}
.menu-sidebar-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.menu-content-area {
  min-width: 0;
}

.menu-category-banner {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.menu-banner-info {
  flex: 1;
}
.menu-category-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
}
.menu-category-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.menu-legend {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* Update book-items-scroll to render cards in 2-column grid */
.book-items-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 8px 0;
  max-height: none !important; /* Remove old book view max-height */
  overflow-y: visible !important; /* Remove old book view scroll */
}

/* book-item-row transformed into card */
.book-item-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.book-item-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.book-item-row:last-child {
  border-bottom: 1px solid var(--border); /* Maintain card borders */
}

.book-item-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.book-item-illust-circle {
  width: 56px;
  height: 56px;
  border-radius: 12px; /* Soft premium rounded corners matching the mockup */
  background: #EDF7F2; /* soft light-green background */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
.book-item-illust-circle svg {
  width: 28px; /* Balanced icon sizing */
  height: 28px;
  stroke: #1E5E3A; /* Forest green stroke */
  stroke-width: 1.8;
}

.book-item-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.book-item-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.book-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.book-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-item-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
  margin-top: auto;
  gap: 16px;
  flex-shrink: 0;
}

.book-item-price {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.book-item-ctrl {
  min-width: 40px;
  display: flex;
  justify-content: center;
}

/* RESPONSIVE MEDIA QUERIES FOR SIDEBAR */
@media (max-width: 900px) {
  .menu-main-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-sidebar {
    position: sticky;
    top: 72px;
    z-index: 10;
    max-height: none;
    overflow-x: auto;
    background: var(--bg);
    margin: 0 -24px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
  }
  .menu-sidebar-list {
    flex-direction: row;
    gap: 10px;
    width: max-content;
  }
  .menu-sidebar-item {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
  }
  .menu-category-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }
  .menu-legend {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .book-items-scroll {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* Live Order Notification Banner styling */
.order-notification-banner {
  position: fixed;
  top: -120px; /* Start hidden above screen */
  left: 50%;
  transform: translateX(-50%);
  background: #2C1E18; /* Premium dark background */
  color: #FAF8F5;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 16px 20px;
  width: 90%;
  max-width: 500px;
  z-index: 2500;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(197,148,88,0.3);
}

.order-notification-banner.active {
  top: 20px; /* Slide down into view */
}

.order-notification-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-notification-bell {
  background: rgba(197,148,88,0.2);
  color: #C59458;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shake-bell 1.5s infinite;
  flex-shrink: 0;
}

.order-notification-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.order-notification-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #C59458;
}

.order-notification-desc {
  font-size: 0.82rem;
  color: #D3C9C1;
  margin-top: 2px;
}

.order-notification-action {
  background: #C59458;
  color: #2C1E18;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.order-notification-action:hover {
  background: #d8a86a;
  transform: translateY(-1px);
}

.order-notification-close {
  background: transparent;
  border: none;
  color: #8C847E;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.order-notification-close:hover {
  color: #FAF8F5;
}

@keyframes shake-bell {
  0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  90% { transform: rotate(-2deg); }
  100% { transform: rotate(0); }
}

/* ── PARTNER PLATFORM LINKS (AI STYLE WIDGETS) ──────────────── */
.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #ffffff !important;
  border: 1.5px solid transparent;
}
.platform-link span {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.platform-link .action-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  opacity: 0.95;
  font-weight: 600;
  z-index: 2;
}
.platform-link .logo-circle {
  font-size: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  z-index: 2;
}

/* Uber Eats Platform AI Card */
.platform-link.uber {
  background: #121212;
  box-shadow: 0 4px 12px rgba(10, 207, 131, 0.08);
}
.platform-link.uber .logo-circle {
  color: #121212;
}
.platform-link.uber:hover {
  transform: translateY(-2px);
  border-color: #0acf83;
  box-shadow: 0 8px 24px rgba(10, 207, 131, 0.25);
}

/* Just Eat Platform AI Card */
.platform-link.just-eat {
  background: linear-gradient(135deg, #FF8000, #F76B1C);
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.12);
}
.platform-link.just-eat .logo-circle {
  color: #FF8000;
}
.platform-link.just-eat:hover {
  transform: translateY(-2px);
  border-color: #ffd4b2;
  box-shadow: 0 8px 24px rgba(255, 128, 0, 0.35);
}

/* Deliveroo Platform AI Card */
.platform-link.deliveroo {
  background: linear-gradient(135deg, #00828a, #00a4b0);
  box-shadow: 0 4px 12px rgba(0, 130, 138, 0.12);
}
.platform-link.deliveroo .logo-circle {
  color: #00828a;
}
.platform-link.deliveroo:hover {
  transform: translateY(-2px);
  border-color: #a3f7ff;
  box-shadow: 0 8px 24px rgba(0, 130, 138, 0.35);
}

/* AI sweeps sheen animation */
.platform-link::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.8s;
  z-index: 1;
}
.platform-link:hover::before {
  left: 150%;
}

/* Cancel Order Modal Styles */
.cancel-warning-box {
  display: flex;
  gap: 12px;
  background: rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}
.cancel-warning-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}
.cancel-refund-notice {
  background: rgba(79, 70, 229, 0.03);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}
.cancel-reason-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  margin-top: 8px;
  margin-bottom: 16px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.cancel-reason-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 27, 48, 0.1);
}
.cancel-confirm-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #DC2626;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.cancel-confirm-btn:hover {
  background: #B91C1C;
  transform: translateY(-1px);
}
.cancel-confirm-btn:active {
  transform: translateY(1px);
}
.keep-order-btn {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 12px;
  border-radius: var(--radius-xs);
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.keep-order-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Out of Stock Items Styling */
.oos-item {
  opacity: 0.55;
  filter: grayscale(35%);
  cursor: not-allowed !important;
}
.oos-item * {
  pointer-events: none;
}
.bk-oos-badge, .book-oos-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(220, 38, 38, 0.08) !important;
  color: #DC2626 !important;
  border: 1px solid rgba(220, 38, 38, 0.15) !important;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: auto !important;
}

/* ============================================================
   NEW MOCKUP DESIGN SYSTEM (AUTHENTIC SOUTH INDIAN KITCHEN)
   ============================================================ */

/* 1. TOP ANNOUNCEMENT BAR */
.header-announcement-bar {
  background: #143825;
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announcement-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.announcement-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.announcement-badge {
  background: #C29528;
  color: #143825;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.announcement-text {
  color: #E2E8F0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-text .sep {
  color: #335E44;
  margin: 0 6px;
}
.code-pill {
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.announcement-right {
  font-size: 0.76rem;
  color: #94A3B8;
  font-weight: 500;
  flex-shrink: 0;
}

/* 2. MIDDLE LOGO & UTILITY ROW */
.header-brand-row {
  background: #FAF7F2;
  border-bottom: 1px solid #EADBCE;
  padding: 16px 0;
}
.header-brand-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Status Group */
.header-status-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-status-pill {
  background: #FDF9F5;
  border: 1px solid #EADBCE;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.header-status-pill:hover {
  border-color: var(--accent);
  background: #FFF7F0;
  transform: translateY(-1px);
}
.status-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FDE8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.status-pill-text {
  display: flex;
  flex-direction: column;
}
.status-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2D1A0E;
  line-height: 1.2;
}
.status-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1px;
}

/* Center Brand Logo */
.brand-logo-main {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(45, 26, 14, 0.12));
  transition: transform 0.25s ease;
}
.brand-logo-main:hover .brand-logo-img {
  transform: scale(1.04);
}
.brand-title-wrap {
  display: flex;
  flex-direction: column;
}
.brand-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-title-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  color: #2D1A0E;
  line-height: 1;
}
.brand-leaf-icon {
  margin-top: -4px;
  width: 22px;
  height: 22px;
}
.brand-sub-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 5px;
}

/* Right Utility Group */
.header-util-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-call-pill {
  background: #FDF9F5;
  border: 1px solid #EADBCE;
  border-radius: 99px;
  padding: 6px 16px 6px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.header-call-pill:hover {
  border-color: var(--accent);
  background: #FFF7F0;
}
.call-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-text-box {
  display: flex;
  flex-direction: column;
}
.call-number {
  font-size: 0.84rem;
  font-weight: 800;
  color: #2D1A0E;
  line-height: 1.1;
}
.call-sub {
  font-size: 0.68rem;
  color: #7A695D;
  font-weight: 500;
}
.header-util-divider {
  width: 1px;
  height: 32px;
  background: #EADBCE;
}

/* User Profile V2 */
.user-profile-wrap-v2 {
  position: relative;
}
.user-chip-v2 {
  background: #FDF9F5;
  border: 1px solid #EADBCE;
  border-radius: 99px;
  padding: 4px 14px 4px 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.user-chip-v2:hover {
  border-color: var(--accent);
}
.avatar-circle-v2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-name-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.user-name-v2 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #2D1A0E;
  line-height: 1.1;
}
.user-sub-v2 {
  font-size: 0.68rem;
  color: #7A695D;
  font-weight: 600;
}

.login-btn-v2 {
  background: #FDF9F5;
  border: 1px solid #EADBCE;
  color: #2D1A0E;
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.login-btn-v2:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.user-dropdown-v2 {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #F0E8DF;
  box-shadow: 0 10px 30px rgba(45, 26, 14, 0.12);
  border-radius: 14px;
  width: 170px;
  padding: 8px 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
}
.user-dropdown-v2.active {
  display: flex;
}
.user-dropdown-v2 a {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3B2618;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.user-dropdown-v2 a:hover {
  background: #FFF7F0;
  color: var(--accent);
}
.dropdown-sep {
  height: 1px;
  background: #F0E8DF;
  margin: 4px 0;
}
.sign-out-btn-v2 {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #DC2626;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.sign-out-btn-v2:hover {
  background: #FEF2F2;
}

/* Cart Button V2 */
.cart-btn-v2 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FDF9F5;
  border: 1px solid #EADBCE;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-btn-v2:hover {
  border-color: var(--accent);
  background: #FFF7F0;
}
.cart-badge-v2 {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. FLOATING MAIN NAVBAR CARD */
.floating-nav-section {
  background: #FAF7F2;
  padding: 12px 0 20px 0;
}
.floating-nav-card {
  max-width: 1240px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #F0E8DF;
  border-radius: 16px;
  padding: 8px 12px 8px 16px;
  box-shadow: 0 8px 24px rgba(45, 26, 14, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-item-v2 {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #4A3A2F;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav-item-v2.active {
  background: #FFF7F0;
  color: var(--accent);
}
.nav-item-v2:hover {
  color: var(--accent);
}
.nav-item-new {
  position: relative;
}
.new-tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #166534;
  color: #FFFFFF;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.nav-actions-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-order-v2 {
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  padding: 8px 20px 8px 14px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(208, 90, 20, 0.25);
  transition: all 0.2s;
}
.btn-order-v2:hover {
  background: #B84D0E;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(208, 90, 20, 0.35);
}
.scooter-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.order-btn-main {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.order-btn-sub {
  font-size: 0.64rem;
  opacity: 0.9;
  font-weight: 600;
}

/* HERO V3 SECTION */
.hero-v3 {
  background: #FAF7F2;
  position: relative;
  padding: 40px 0 100px 0;
  overflow: hidden;
}
.hero-v3-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-v3-script {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.hero-v3-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #1E1711;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-v3-accent {
  color: var(--accent);
}
.hero-v3-sub {
  font-size: 1.05rem;
  color: #5C4A3E;
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-v3-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(208, 90, 20, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.hero-btn-primary:hover {
  background: #B84D0E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 90, 20, 0.4);
}
.hero-btn-secondary {
  background: #FFFFFF;
  color: #3B2618;
  border: 1.5px solid #E2D7CB;
  padding: 13px 26px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #FFF7F2;
}

.hero-v3-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3B2618;
  letter-spacing: 0.04em;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge-dot {
  color: #C5B5A7;
}

/* HERO MEDIA & STAMP */
.hero-v3-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-v3-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-v3-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(45, 26, 14, 0.18);
  border: 8px solid #FFFFFF;
}

.hero-stamp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 110px;
  height: 110px;
  background: #FDF9F3;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateStamp 20s linear infinite;
  border: 1px solid #EADBCE;
}
.stamp-text-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.stamp-center-icon {
  position: relative;
  z-index: 2;
}
@keyframes rotateStamp {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* FLOATING TRUST STRIP (4 PILLARS) */
.trust-strip-floating {
  max-width: 1240px;
  margin: -40px auto 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-pill-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(45, 26, 14, 0.06);
  border: 1px solid #F0E8DF;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F3EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-heading {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #2D1A0E;
  margin-bottom: 2px;
}
.trust-desc {
  font-size: 0.78rem;
  color: #7A695D;
  margin: 0;
}

/* TODAY'S POPULAR SECTION */
.popular-section {
  padding: 60px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}
.popular-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.popular-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1E1711;
}
.view-all-link {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.popular-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.popular-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px 4px;
  scrollbar-width: none;
}
.popular-track::-webkit-scrollbar {
  display: none;
}
.pop-card {
  min-width: 230px;
  max-width: 230px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F0E8DF;
  box-shadow: 0 6px 20px rgba(45, 26, 14, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 26, 14, 0.08);
}
.pop-img-box {
  position: relative;
  width: 100%;
  height: 150px;
  background: #FAF7F2;
}
.pop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.best-seller-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}
.pop-details {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.pop-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #2D1A0E;
  margin-bottom: 12px;
}
.pop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-price {
  font-size: 1rem;
  font-weight: 800;
  color: #1E1711;
}
.pop-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2D7CB;
  background: #FFFFFF;
  color: #2D1A0E;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.pop-add-btn:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.pop-arrow {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2D7CB;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.pop-arrow:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.pop-arrow-left {
  left: -20px;
}
.pop-arrow-right {
  right: -20px;
}

/* PROMO BANNERS GRID */
.promo-grid-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  border-radius: 20px;
  padding: 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.promo-card-green {
  background: #1B3B2B;
  color: #FFFFFF;
}
.promo-subtag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #A7F3D0;
}
.promo-discount {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0;
  color: #FFFFFF;
}
.promo-target {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #E2E8F0;
  margin-bottom: 16px;
}
.promo-btn {
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  padding: 8px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  align-self: flex-start;
  cursor: pointer;
}

.promo-card-thali {
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}
.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}
.promo-card-content {
  position: relative;
  z-index: 2;
}
.promo-thali-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.promo-thali-desc {
  font-size: 0.82rem;
  color: #E2E8F0;
  margin-bottom: 20px;
}
.promo-thali-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-start-price {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.promo-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  border: none;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-card-cream {
  background: #F5EFE6;
  color: #2D1A0E;
  border: 1px solid #EADBCE;
}
.family-group-icon {
  margin-bottom: 10px;
}
.family-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.family-desc {
  font-size: 0.85rem;
  color: #6B5748;
}

/* STATS STRIP */
.stats-strip-section {
  background: #FAF7F2;
  border-top: 1px solid #EADBCE;
  border-bottom: 1px solid #EADBCE;
  padding: 30px 0;
}
.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F3EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Hamburger Header Button V2 */
.hamburger-v2-header {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FDF9F5;
  border: 1.5px solid #EADBCE;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.hamburger-v2-header:hover {
  border-color: var(--accent);
  background: #FFF7F0;
}
.hamburger-v2-header span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2D1A0E;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .header-status-group {
    display: none;
  }
  .header-call-pill .call-text-box {
    display: none;
  }
  .header-call-pill {
    padding: 4px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .nav-links-v2 {
    display: none;
  }
  .hamburger-v2-header {
    display: flex;
  }
  .floating-nav-card {
    padding: 8px 16px;
    justify-content: center;
  }
  .floating-nav-card .hamburger {
    display: none !important;
  }

  .hero-v3-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-v3-cta-row {
    justify-content: center;
  }
  .hero-v3-badges {
    justify-content: center;
  }
  .trust-strip-floating {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .announcement-right {
    display: none;
  }
  .announcement-container {
    justify-content: center;
    padding: 0 12px;
  }
  .announcement-left {
    justify-content: center;
    gap: 8px;
    font-size: 0.74rem;
  }
}

@media (max-width: 640px) {
  .header-brand-container {
    padding: 10px 14px;
  }
  .brand-title-text {
    font-size: 1.35rem;
  }
  .brand-sub-text {
    display: none;
  }
  .brand-logo-img {
    height: 48px;
  }
  .header-util-group {
    gap: 8px;
  }
  .header-util-divider {
    display: none;
  }
  .user-name-box {
    display: none;
  }
  .user-chip-v2 {
    padding: 4px;
    border-radius: 50%;
  }
  .login-btn-v2 span {
    display: none;
  }
  .login-btn-v2 {
    padding: 8px;
    border-radius: 50%;
  }
  .hero-v3-headline {
    font-size: 2.1rem;
  }
  .trust-strip-floating {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .announcement-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
  }
  .announcement-text {
    font-size: 0.72rem;
  }
  .code-pill {
    padding: 1px 6px;
  }
  .brand-title-text {
    font-size: 1.18rem;
  }
  .brand-logo-img {
    height: 42px;
  }
  .btn-order-v2 {
    width: 100%;
    justify-content: center;
  }
}

/* FLOATING WHATSAPP & STICKY CART BAR */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

.sticky-cart-pill-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--accent);
  color: #FFFFFF;
  padding: 10px 14px 10px 18px;
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(208, 90, 20, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.sticky-cart-pill-bar:hover {
  transform: translateY(-2px);
  background: #B84D0E;
}
.cart-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-bag-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.cart-pill-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FFFFFF;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 900;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-pill-summary {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}
.cart-pill-checkout-btn {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .header-status-group {
    display: none;
  }
  .header-call-pill .call-text-box {
    display: none;
  }
  .header-call-pill {
    padding: 4px;
    border-radius: 50%;
  }
  .nav-links-v2 {
    display: none;
  }
  .hamburger {
    display: flex !important;
  }
  .floating-nav-card {
    padding: 8px 16px;
  }

  .hero-v3-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-v3-cta-row {
    justify-content: center;
  }
  .hero-v3-badges {
    justify-content: center;
  }
  .trust-strip-floating {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .announcement-right {
    display: none;
  }
  .announcement-container {
    justify-content: center;
    padding: 0 12px;
  }
  .announcement-left {
    justify-content: center;
    gap: 8px;
    font-size: 0.74rem;
  }
}
@media (max-width: 480px) {
  .announcement-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
  }
  .announcement-text {
    font-size: 0.72rem;
  }
  .code-pill {
    padding: 1px 6px;
  }
}

@media (max-width: 640px) {
  .brand-title-text {
    font-size: 1.55rem;
  }
  .brand-sub-text {
    font-size: 0.58rem;
  }
  .brand-logo-img {
    height: 56px;
  }
  .header-util-divider {
    display: none;
  }
  .user-sub-v2 {
    display: none;
  }
  .hero-v3-headline {
    font-size: 2.3rem;
  }
  .trust-strip-floating {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------
   CAT-DELIGHT-SECTION (EXPLORE OUR MENU - MOCKUP #2)
------------------------------------------------------- */
.cat-delight-section {
  position: relative;
  background: #FAF7F2;
  padding: 80px 0 60px;
  overflow: hidden;
}

.cat-delight-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */
.cat-delight-header {
  text-align: center;
  margin-bottom: 44px;
}

.cat-delight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #C25010;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-symbol {
  font-size: 0.9rem;
  color: #C25010;
}
.eyebrow-text {
  color: #C25010;
}
.eyebrow-leaf {
  margin-left: 2px;
}

.cat-delight-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 16px;
  line-height: 1.15;
}
.title-line-dark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #2D1A0E;
}
.title-line-orange {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #D05A14;
}

.cat-delight-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}
.cat-delight-sub .highlight-green {
  color: #166534;
  font-weight: 700;
}

/* Main Outer Container Box */
.cat-delight-card-wrap {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 12px 48px rgba(45, 26, 14, 0.05);
  border: 1px solid #F1E5D8;
}

/* Grid layout */
.cat-delight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Individual Card */
.cat-v2-card {
  position: relative;
  background: #FFFDF9;
  border: 1px solid #F4E8DC;
  border-radius: 22px;
  padding: 24px 14px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(45, 26, 14, 0.03);
}

.cat-v2-card:hover {
  transform: translateY(-8px);
  border-color: #E2C9B5;
  box-shadow: 0 16px 36px rgba(45, 26, 14, 0.1);
}

/* Image + Badge */
.cat-v2-img-container {
  position: relative;
  margin-bottom: 16px;
}
.cat-v2-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(45, 26, 14, 0.14);
  transition: transform 0.3s ease;
}
.cat-v2-card:hover .cat-v2-img {
  transform: scale(1.06);
}

/* Circular Icon Badge */
.cat-v2-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.cat-v2-badge.bg-green {
  background: #166534;
}
.cat-v2-badge.bg-orange {
  background: #C25010;
}

/* Title */
.cat-v2-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 8px 0 6px;
  line-height: 1.2;
}
.cat-v2-title.text-green {
  color: #166534;
}
.cat-v2-title.text-orange {
  color: #C25010;
}

/* Divider dots */
.cat-v2-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A3525;
  color: #C22A0C;
}

.icon-bg-dosa {
  background: #F9ECE0;
  color: #D05A14;
}

.menu-cat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-cat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2D1A0E;
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.menu-sidebar-item.active .menu-cat-title {
  color: #D05A14;
}

.menu-cat-sub {
  font-size: 0.78rem;
  color: #7A695D;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-cat-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 10px;
}

.menu-cat-food-img-wrap {
  width: 72px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-cat-food-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}

.menu-sidebar-item:hover .menu-cat-food-img {
  transform: scale(1.08);
}

.menu-cat-arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F4EBE0;
  color: #7A695D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.menu-sidebar-item:hover .menu-cat-arrow-circle,
.menu-sidebar-item.active .menu-cat-arrow-circle {
  background: #D05A14;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .menu-sidebar-item {
    padding: 12px 14px;
  }
  .menu-cat-icon-badge {
    width: 40px;
    height: 40px;
  }
  .menu-cat-icon-badge svg {
    width: 18px;
    height: 18px;
  }
  .menu-cat-title {
    font-size: 0.95rem;
  }
  .menu-cat-sub {
    font-size: 0.72rem;
}

/* Grid layout */
.cat-delight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Individual Card */
.cat-v2-card {
  position: relative;
  background: #FFFDF9;
  border: 1px solid #F4E8DC;
  border-radius: 22px;
  padding: 24px 14px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(45, 26, 14, 0.03);
}

.cat-v2-card:hover {
  transform: translateY(-8px);
  border-color: #E2C9B5;
  box-shadow: 0 16px 36px rgba(45, 26, 14, 0.1);
}

/* Image + Badge */
.cat-v2-img-container {
  position: relative;
  margin-bottom: 16px;
}
.cat-v2-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(45, 26, 14, 0.14);
  transition: transform 0.3s ease;
}
.cat-v2-card:hover .cat-v2-img {
  transform: scale(1.06);
}

/* Circular Icon Badge */
.cat-v2-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.cat-v2-badge.bg-green {
  background: #166534;
}
.cat-v2-badge.bg-orange {
  background: #C25010;
}

/* Title */
.cat-v2-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 8px 0 6px;
  line-height: 1.2;
}
.cat-v2-title.text-green {
  color: #166534;
}
.cat-v2-title.text-orange {
  color: #C25010;
}

/* Divider dots */
.cat-v2-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A3525;
  color: #C22A0C;
}

.icon-bg-dosa {
  background: #F9ECE0;
  color: #D05A14;
}

.menu-cat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-cat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2D1A0E;
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.menu-sidebar-item.active .menu-cat-title {
  color: #D05A14;
}

.menu-cat-sub {
  font-size: 0.78rem;
  color: #7A695D;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-cat-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 10px;
}

.menu-cat-food-img-wrap {
  width: 72px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-cat-food-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}

.menu-sidebar-item:hover .menu-cat-food-img {
  transform: scale(1.08);
}

.menu-cat-arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F4EBE0;
  color: #7A695D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.menu-sidebar-item:hover .menu-cat-arrow-circle,
.menu-sidebar-item.active .menu-cat-arrow-circle {
  background: #D05A14;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .menu-sidebar-item {
    padding: 12px 14px;
  }
  .menu-cat-icon-badge {
    width: 40px;
    height: 40px;
  }
  .menu-cat-icon-badge svg {
    width: 18px;
    height: 18px;
  }
  .menu-cat-title {
    font-size: 0.95rem;
  }
  .menu-cat-sub {
    font-size: 0.72rem;
  }
  .menu-cat-food-img-wrap {
    width: 54px;
    height: 48px;
  }
  .menu-cat-arrow-circle {
    width: 28px;
    height: 28px;
  }
}

/* ── COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES (MOBILE POLISH) ── */
@media (max-width: 640px) {
  /* Header Layout */
  .header-call-pill {
    display: none !important;
  }
  .nav-logo-img {
    max-height: 44px !important;
    height: 44px !important;
    width: auto !important;
  }
  .nav-actions {
    gap: 8px !important;
  }

  /* Category Grid: 2 Columns on Mobile */
  .cat-delight-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .menu-sidebar-item {
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }
  .menu-cat-food-img-wrap {
    width: 44px !important;
    height: 40px !important;
  }
  .menu-cat-title {
    font-size: 0.88rem !important;
  }
  .menu-cat-sub {
    font-size: 0.68rem !important;
    display: block !important;
  }

  /* Footer Layout Stacking */
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Main 4-column footer → single stacked column on mobile */
  .foot-main-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 28px !important;
  }
  /* Remove left borders on stacked footer columns */
  .foot-main-grid > div {
    border-left: none !important;
    border-top: 1px solid #ECE7DF !important;
    padding: 24px 0 !important;
  }
  /* First column — no top border */
  .foot-main-grid > div:first-child {
    border-top: none !important;
    padding-top: 0 !important;
  }

  /* Bottom footer: stack all 3 boxes vertically */
  .foot-bottom-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 20px !important;
  }
  /* Remove right borders in bottom row when stacked */
  .foot-bottom-grid > div {
    border-right: none !important;
    border-top: 1px solid #ECE7DF !important;
    padding: 20px 0 !important;
  }
  .foot-bottom-grid > div:first-child {
    border-top: none !important;
    padding-top: 0 !important;
    align-items: center !important;
  }
  .foot-legal {
    justify-content: center !important;
  }

  /* Hide large decorative food images in footer on mobile */
  .footer-hero-food-img,
  .footer-hero-food-img-left {
    display: none !important;
  }

  /* Footer brand column: center on mobile */
  .foot-main-grid > div:first-child > div:first-child {
    justify-content: flex-start !important;
  }
}

/* Hide Floating Elements when Modals or Cart are Open */
body.modal-open .sticky-cart-pill-bar,
body.modal-open #sticky-cart-bar,
body.modal-open .floating-cart-bar,
body.modal-open .whatsapp-float-btn,
body.modal-open .wa-float,
body.modal-open .back-to-top,
body.modal-open #delivery-status-banner,
body.modal-open .phone-pe-banner,
.modal-overlay.active ~ .sticky-cart-pill-bar,
.modal-overlay.active ~ #sticky-cart-bar,
.modal-overlay.active ~ .whatsapp-float-btn,
.modal-overlay.active ~ .wa-float,
.modal-overlay.active ~ .back-to-top,
.login-modal-overlay.active ~ .sticky-cart-pill-bar,
.login-modal-overlay.active ~ #sticky-cart-bar,
.login-modal-overlay.active ~ .whatsapp-float-btn,
.login-modal-overlay.active ~ .wa-float {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
   MOBILE HEADER LAYOUT — final cascade override
   ========================================================= */
@media (max-width: 640px) {
  /* Header layout — mobile: hide status group, center logo, icons right */
  .header-brand-row {
    padding: 0 !important;
  }
  .header-brand-container {
    position: relative !important;
    padding: 10px 12px !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Hide left status pills — no room on mobile */
  .header-status-group {
    display: none !important;
  }

  /* Center the logo+name block in the middle of the header */
  .brand-logo-main {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }
  .brand-logo-main * { pointer-events: auto; }

  .brand-logo-img {
    height: 40px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .brand-title-text {
    font-size: 1rem !important;
    white-space: nowrap !important;
  }

  .brand-leaf-icon {
    display: none !important;
  }

  .brand-sub-text {
    display: none !important;
  }

  /* Hide call pill — not enough room */
  .header-call-pill,
  a.header-call-pill {
    display: none !important;
  }

  /* Right-side icons stay right, above centered logo layer */
  .header-util-group {
    gap: 8px !important;
    margin-left: auto !important;
    position: relative !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .header-util-divider {
    display: none !important;
  }

  .user-name-box {
    display: none !important;
  }

  /* Profile icon — compact circle */
  .user-chip-v2 {
    padding: 7px !important;
    border-radius: 50% !important;
    min-width: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Login button — compact circle */
  .login-btn-v2 {
    padding: 8px !important;
    border-radius: 50% !important;
    min-width: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .login-btn-v2 > span,
  .login-btn-v2 > .btn-label {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .brand-logo-img {
    height: 34px !important;
  }
  .brand-title-text {
    font-size: 0.9rem !important;
  }
}
