/* ================================================================
   HANGOUT CORNER — Premium Redesign
   Dark editorial food brand | Gold #E8A020 | Orange #FF6B35
   ================================================================ */

/* -- 1. Fonts & Reset ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* -- 2. Design Tokens --------------------------------------- */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #0f0f0f;
  --surface:   #141414;
  --card:      #1a1a1a;
  --card-2:    #1f1f1f;
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.14);
  --gold:      #E8A020;
  --gold-dim:  rgba(232,160,32,0.15);
  --orange:    #FF6B35;
  --orange-dim:rgba(255,107,53,0.12);
  --text:      #F5F0E8;
  --text-2:    #9A9490;
  --text-3:    #5A5550;
  --green:     #4CAF7D;
  --red:       #E85858;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:     68px;
  --r:         12px;
  --r-sm:      8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.7);
  --glow-gold: 0 0 40px rgba(232,160,32,0.25);
  --glow-sm:   0 0 20px rgba(232,160,32,0.15);
  --transition: 200ms cubic-bezier(0.4,0,0.2,1);
}

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

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
img { max-width: 100%; }

/* -- 3. Utility --------------------------------------------- */
.container {
  width: 100%; max-width: 1160px;
  margin: 0 auto; padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #FFD570 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(232,160,32,0.25);
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -- 4. Navigation ------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex; gap: 2px; flex: 1; justify-content: center;
}
.nav-link {
  padding: 7px 16px; border-radius: var(--r-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition);
}
.nav-link:hover  { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold); background: var(--gold-dim); }

.nav-actions { display: flex; gap: 8px; flex-shrink: 0; }

.btn-nav-call {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--border); transition: all var(--transition);
}
.btn-nav-call:hover { color: var(--text); border-color: var(--border-hi); }

.btn-nav-wa {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 700; color: #fff;
  background: #25D366;
  transition: all var(--transition);
}
.btn-nav-wa:hover { background: #20b858; }

.nav-cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r-sm);
  font-size: 1.1rem; color: var(--text-2);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-cart-btn:hover { color: var(--gold); border-color: var(--gold-dim); }
.nav-cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-2); border-radius: 2px;
  transition: all 300ms ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 190;
  background: rgba(15,15,15,0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-110%);
  transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu-link {
  padding: 12px 16px; border-radius: var(--r-sm);
  font-size: 1rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition);
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--gold); background: var(--gold-dim); }
.mobile-menu-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-call { color: var(--text-2) !important; }
.mobile-whatsapp { color: #25D366 !important; }

/* -- 5. Hero Section ---------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
  background: var(--bg);
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  top: 10%; right: 5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,160,32,0.09) 0%, transparent 65%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -10%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 65%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.hero-orb-3 {
  top: 40%; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,160,32,0.04) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1160px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.7;
  max-width: 460px; margin-bottom: 36px;
}

.hero-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-size: 0.9rem; font-weight: 700; color: #000;
  background: linear-gradient(135deg, var(--gold), #FFD570);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232,160,32,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.45);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  border: 1px solid var(--border-hi);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-dim);
}

/* Hero visual side */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}

.hero-food-ring {
  position: relative; width: 380px; height: 380px;
}

.hfr-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, #1e1a12, #1a1816);
  border: 2px solid rgba(232,160,32,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--glow-gold), inset 0 0 40px rgba(232,160,32,0.05);
  z-index: 2;
}
.hfr-center-emoji { font-size: 3.5rem; line-height: 1; }
.hfr-center-text {
  font-family: var(--font-display); font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Orbiting food items */
.hfr-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  animation: orbit var(--dur, 20s) linear infinite;
}

.hfr-item {
  position: absolute;
  top: calc(var(--r, 160px) * -1);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  animation: counterOrbit var(--dur, 20s) linear infinite;
  box-shadow: var(--shadow);
}

.hfr-orbit:nth-child(1) { --dur: 18s; --r: 155px; }
.hfr-orbit:nth-child(2) { --dur: 18s; --r: 155px; animation-delay: -6s; }
.hfr-orbit:nth-child(3) { --dur: 18s; --r: 155px; animation-delay: -12s; }
.hfr-orbit-outer { }
.hfr-orbit:nth-child(4) { --dur: 28s; --r: 190px; animation-delay: -4s; }
.hfr-orbit:nth-child(5) { --dur: 28s; --r: 190px; animation-delay: -14s; }
.hfr-orbit:nth-child(6) { --dur: 28s; --r: 190px; animation-delay: -22s; }

/* Orbit ring */
.hfr-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px dashed rgba(232,160,32,0.12);
}
.hfr-ring-1 { width: 310px; height: 310px; }
.hfr-ring-2 { width: 380px; height: 380px; }

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 28px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hs-item {}
.hs-val {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hs-label { font-size: 0.78rem; color: var(--text-3); margin-top: 3px; letter-spacing: 0.04em; }

/* -- 6. Marquee Ticker --------------------------------------- */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 11px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 28px; font-size: 0.82rem; font-weight: 700;
  color: #000; white-space: nowrap; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,0.4);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -- 7. Section Headings ------------------------------------ */
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.1;
}
.sec-header p {
  color: var(--text-2); margin-top: 12px;
  font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

.sec-header-left { text-align: left; margin-bottom: 40px; }
.sec-header-left h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; }
.sec-header-left p { color: var(--text-2); margin-top: 8px; }

/* -- 8. Feature / Why Us Cards ----------------------------- */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 300ms ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 350ms ease;
}
.feature-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }

.fc-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.fc-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.fc-desc  { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }

/* -- 9. Popular Items Cards --------------------------------- */
.popular-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.pop-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all 300ms ease;
}
.pop-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-4px); box-shadow: var(--glow-sm); }

.pop-card-visual {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.pop-card-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, var(--c1,rgba(232,160,32,0.12)) 0%, transparent 70%);
}
.pop-card[data-cat="burger"] .pop-card-visual { background: linear-gradient(135deg, #1a1510, #120e08); --c1: rgba(232,160,32,0.15); }
.pop-card[data-cat="pizza"]  .pop-card-visual { background: linear-gradient(135deg, #1a1010, #120808); --c1: rgba(232,88,88,0.15); }
.pop-card[data-cat="fries"]  .pop-card-visual { background: linear-gradient(135deg, #181508, #120e05); --c1: rgba(255,200,50,0.12); }
.pop-card[data-cat="shake"]  .pop-card-visual { background: linear-gradient(135deg, #0e1218, #090d12); --c1: rgba(100,140,220,0.12); }

.veg-dot {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 20px; height: 20px; border-radius: 4px;
  border: 2px solid; display: flex; align-items: center; justify-content: center;
}
.veg-dot.veg    { border-color: var(--green); background: rgba(76,175,125,0.15); }
.veg-dot.nonveg { border-color: var(--red);   background: rgba(232,88,88,0.15); }
.veg-dot::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
}
.veg-dot.veg::after    { background: var(--green); }
.veg-dot.nonveg::after { background: var(--red); }

.pop-card-body { padding: 16px 18px; }
.pop-card-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.pop-card-desc { font-size: 0.78rem; color: var(--text-2); margin-bottom: 14px; line-height: 1.5; }
.pop-card-foot {
  display: flex; align-items: center; justify-content: space-between;
}
.pop-price {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold);
}
.pop-add-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pop-add-btn:hover { background: var(--gold); color: #000; box-shadow: var(--glow-sm); }

/* -- 10. Stats Band ----------------------------------------- */
.stats-band {
  padding: 64px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item {
  text-align: center; padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #FFD570);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-plus { font-size: 2rem; }
.stat-label { font-size: 0.85rem; color: var(--text-2); margin-top: 8px; letter-spacing: 0.04em; }

/* -- 11. Order Type Section --------------------------------- */
.order-type-section { padding: 64px 0; }
.order-type-card {
  max-width: 560px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  text-align: center;
}
.order-type-card h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 6px;
}
.order-type-card p { color: var(--text-2); font-size: 0.88rem; margin-bottom: 28px; }

.ot-toggle {
  display: inline-flex;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px;
  margin-bottom: 20px;
}
.ot-option {
  position: relative;
}
.ot-option input { display: none; }
.ot-option label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.ot-option input:checked + label {
  background: var(--gold); color: #000;
  box-shadow: 0 2px 12px rgba(232,160,32,0.35);
}

.ot-badge {
  display: inline-block;
  padding: 6px 18px; border-radius: 100px;
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.25);
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
}

/* -- 12. CTA Banner ---------------------------------------- */
.cta-banner {
  margin: 0; padding: 80px 0;
  background: linear-gradient(135deg, #0e0a04, #120d06);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(232,160,32,0.09) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1; text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-inner p { color: var(--text-2); max-width: 480px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 700; color: #fff;
  background: #25D366;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa-large:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

/* -- 13. Contact Section ------------------------------------ */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.contact-card {
  padding: 24px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.cc-icon {
  font-size: 1.6rem; margin-bottom: 12px; display: block;
}
.cc-label { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.cc-value { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.cc-value a { transition: color var(--transition); }
.cc-value a:hover { color: var(--gold); }

/* -- 14. Footer -------------------------------------------- */
.footer {
  padding: 64px 0 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.footer-logo-text {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; max-width: 260px; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-2);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }

/* -- 15. Floating Buttons ---------------------------------- */
.float-call, .float-wa {
  position: fixed; z-index: 150;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.float-call { bottom: 90px; right: 20px; background: var(--card); border: 1px solid var(--border); color: var(--text-2); }
.float-wa   { bottom: 24px; right: 20px; background: #25D366; color: #fff; }
.float-call:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.1); }
.float-wa:hover   { background: #20b858; transform: scale(1.1); }

/* -- 16. MENU PAGE ------------------------------------------ */
.menu-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, #0e0b06, #0a0a0a);
  padding-bottom: 0;
}
.menu-hero-inner {
  padding: 48px 24px 0;
  max-width: 1160px; margin: 0 auto;
}
.menu-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.menu-hero-inner p { color: var(--text-2); }

/* Search */
.menu-search-bar {
  max-width: 1160px; margin: 28px auto 0;
  padding: 0 24px;
}
.search-wrap {
  position: relative;
}
.search-wrap input {
  width: 100%; padding: 14px 20px 14px 50px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--text);
  font-size: 0.9rem; outline: none;
  transition: border-color var(--transition);
}
.search-wrap input:focus { border-color: rgba(232,160,32,0.5); }
.search-wrap input::placeholder { color: var(--text-3); }
.search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 1rem; pointer-events: none;
}

/* Category tabs */
.cat-tabs-wrap {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
}
.cat-tabs {
  display: flex; gap: 4px; padding: 10px 24px;
  overflow-x: auto; max-width: 1160px; margin: 0 auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
  background: var(--card); border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.cat-tab:hover  { color: var(--text); border-color: var(--border-hi); }
.cat-tab.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* Menu layout */
.menu-layout {
  max-width: 1160px; margin: 0 auto;
  padding: 32px 24px 80px;
}

.menu-section { margin-bottom: 56px; }
.menu-section-heading {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.msh-emoji {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.msh-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.msh-text span { font-size: 0.78rem; color: var(--text-3); }

.menu-items-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}

.menu-item-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.menu-item-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }

.mic-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 10px; margin-bottom: 10px;
}
.mic-dot {
  width: 18px; height: 18px; border-radius: 3px;
  border: 1.5px solid; flex-shrink: 0; margin-top: 3px;
  display: flex; align-items: center; justify-content: center;
}
.mic-dot.veg    { border-color: var(--green); }
.mic-dot.nonveg { border-color: var(--red); }
.mic-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.mic-dot.veg::after    { background: var(--green); }
.mic-dot.nonveg::after { background: var(--red); }

.mic-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.mic-name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; flex: 1; }
.mic-desc { font-size: 0.77rem; color: var(--text-2); margin-bottom: 14px; line-height: 1.5; flex: 1; }
.mic-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.mic-price {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold);
}
.mic-add {
  display: flex; align-items: center; gap: 8px;
}
.mic-qty-ctrl {
  display: none; align-items: center; gap: 8px;
}
.mic-qty-ctrl.visible { display: flex; }
.mic-qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.mic-qty-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.mic-qty-num { font-weight: 700; color: var(--gold); min-width: 16px; text-align: center; }
.mic-add-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.mic-add-btn:hover { background: var(--gold); color: #000; box-shadow: var(--glow-sm); }

/* Sticky cart */
.sticky-cart-wrap {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 150;
  display: none;
}
.sticky-cart-wrap.visible { display: block; }
.sticky-cart-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--gold); color: #000;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(232,160,32,0.5);
  transition: all var(--transition);
  white-space: nowrap;
}
.sticky-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,160,32,0.6); }
.scb-count {
  background: #000; color: var(--gold);
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* -- 17. ABOUT PAGE ------------------------------------------ */
.about-hero-section {
  padding-top: var(--nav-h);
  min-height: 52vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0e0b06, #0a0a0a);
  position: relative; overflow: hidden;
}
.about-hero-section::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(circle at 80% 50%, rgba(232,160,32,0.08) 0%, transparent 60%);
}
.about-hero-section .container { position: relative; z-index: 1; }
.ah-tagline { font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.ah-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 20px;
}
.ah-desc { color: var(--text-2); max-width: 500px; font-size: 1rem; line-height: 1.7; }

.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.as-tag { margin-bottom: 16px; }
.as-title {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.as-text { color: var(--text-2); line-height: 1.8; font-size: 0.95rem; }
.as-text + .as-text { margin-top: 14px; }

.as-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.asv-card {
  aspect-ratio: 1;
  border-radius: var(--r);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
}
.asv-card:nth-child(1) { background: linear-gradient(135deg, #1a1510, #0e0b07); }
.asv-card:nth-child(2) { background: linear-gradient(135deg, #0e1015, #080c10); margin-top: 20px; }
.asv-card:nth-child(3) { background: linear-gradient(135deg, #100e1a, #0a0810); margin-top: -20px; }
.asv-card:nth-child(4) { background: linear-gradient(135deg, #0e1508, #090f06); }
.asv-card span { font-size: 0.72rem; color: var(--text-3); margin-top: 8px; font-weight: 600; letter-spacing: 0.06em; }

.features-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.fl-item {
  display: flex; gap: 16px;
  padding: 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color var(--transition);
}
.fl-item:hover { border-color: var(--border-hi); }
.fl-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.fl-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.fl-desc  { font-size: 0.8rem; color: var(--text-2); line-height: 1.55; }

.location-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.lc-row { display: flex; gap: 14px; margin-bottom: 18px; }
.lc-row:last-child { margin-bottom: 0; }
.lc-row-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 1px solid var(--border);
}
.lc-row-label { font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.lc-row-value { font-size: 0.9rem; font-weight: 600; margin-top: 2px; }
.lc-row-value a { transition: color var(--transition); }
.lc-row-value a:hover { color: var(--gold); }

.lc-map-mock {
  height: 100%; min-height: 220px;
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: var(--r); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.lc-map-mock .map-pin { font-size: 2.5rem; }
.lc-map-mock p { font-size: 0.85rem; color: var(--text-2); text-align: center; }
.lc-map-mock span { font-size: 0.75rem; color: var(--text-3); }

/* -- 18. CART PAGE ------------------------------------------ */
.cart-page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, #0e0b06 0%, #0a0a0a 100%);
  padding-bottom: 0;
}
.cph-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 44px 24px 0;
}
.cph-inner h1 {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.02em;
}
.cph-inner p { color: var(--text-2); margin-top: 6px; }

.cart-layout {
  max-width: 1160px; margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid; grid-template-columns: 1fr 380px; gap: 28px;
  align-items: start;
}

.cart-items-list {}
.cart-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cart-section-head h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; }

.cart-item-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 10px; transition: border-color var(--transition);
}
.cart-item-card:hover { border-color: var(--border-hi); }

.cic-emoji {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.cic-info { flex: 1; }
.cic-name  { font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.cic-price { font-size: 0.8rem; color: var(--text-2); }

.cic-actions { display: flex; align-items: center; gap: 10px; }
.cic-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.cic-qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cic-qty-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.cic-qty-num { font-weight: 700; font-size: 0.9rem; min-width: 24px; text-align: center; }
.cic-total { font-weight: 700; color: var(--gold); font-size: 0.95rem; min-width: 52px; text-align: right; }
.cic-remove { font-size: 0.75rem; color: var(--text-3); border: 1px solid transparent; padding: 4px 8px; border-radius: var(--r-sm); transition: all var(--transition); }
.cic-remove:hover { color: var(--red); border-color: rgba(232,88,88,0.3); background: rgba(232,88,88,0.08); }

/* Empty cart */
.empty-cart {
  text-align: center; padding: 80px 24px;
  background: var(--card); border: 1px dashed var(--border);
  border-radius: var(--r);
}
.empty-cart-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.5; }
.empty-cart h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.empty-cart p { color: var(--text-2); margin-bottom: 24px; }

/* Order summary */
.order-summary-card {
  position: sticky; top: calc(var(--nav-h) + 16px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
}
.osc-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

.osc-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; padding: 6px 0; color: var(--text-2);
}
.osc-row.total {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px;
}
.osc-row.total span:last-child { color: var(--gold); font-size: 1.2rem; }

.gst-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-top: 1px solid var(--border); margin-top: 4px;
}
.gst-row label { font-size: 0.85rem; color: var(--text-2); cursor: pointer; user-select: none; }
.gst-toggle-input { display: none; }
.gst-toggle-track {
  width: 40px; height: 22px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  position: relative; cursor: pointer; transition: all var(--transition);
}
.gst-toggle-track::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--text-3); transition: all var(--transition);
}
.gst-toggle-input:checked + .gst-toggle-track { background: var(--gold-dim); border-color: rgba(232,160,32,0.4); }
.gst-toggle-input:checked + .gst-toggle-track::after { background: var(--gold); transform: translateX(18px); }

.osc-form { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.form-row { margin-bottom: 10px; }
.form-row label { display: block; font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 10px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text);
  font-size: 0.85rem; outline: none;
  transition: border-color var(--transition);
}
.form-row input:focus, .form-row textarea:focus { border-color: rgba(232,160,32,0.5); }
.form-row textarea { resize: vertical; min-height: 72px; }

.osc-order-type-display {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; margin-bottom: 10px;
  background: var(--surface); border-radius: var(--r-sm);
  font-size: 0.82rem;
}
.osc-order-type-display a { color: var(--gold); font-size: 0.78rem; }

.btn-wa-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: #25D366; color: #fff;
  border-radius: var(--r); font-size: 0.9rem; font-weight: 700;
  margin-top: 12px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-wa-order:hover { background: #20b858; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

.btn-call-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px;
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--r); font-size: 0.88rem; font-weight: 600;
  margin-top: 8px; transition: all var(--transition);
}
.btn-call-order:hover { border-color: var(--border-hi); color: var(--text); }

/* -- 19. Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid       { grid-template-columns: 1fr 1fr; }
  .popular-grid        { grid-template-columns: 1fr 1fr; }
  .contact-grid        { grid-template-columns: 1fr 1fr; }
  .cart-layout         { grid-template-columns: 1fr; }
  .order-summary-card  { position: static; }
  .location-card       { grid-template-columns: 1fr; }
  .about-story-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-nav-call, .nav-actions .btn-nav-wa { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: 4px; }
  .nav-cart-btn { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .popular-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stat-item     { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .features-list-grid { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .sec-header { margin-bottom: 36px; }
  .menu-items-grid { grid-template-columns: 1fr 1fr; }
  .cat-tabs { padding: 10px 12px; }

  .float-call { bottom: 88px; }
}

@media (max-width: 480px) {
  .popular-grid  { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .hero-buttons  { flex-direction: column; }
  .hero-title    { font-size: 2.8rem; }
  .ot-toggle     { flex-direction: column; border-radius: 16px; }
  .ot-option label { justify-content: center; }
}

/* ── Order Type Pills (Cart) -------------------------------- */
.osc-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 8px; margin-top: 2px;
}
.osc-order-type-pills {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 6px; margin-bottom: 14px;
}
.otp-pill { position: relative; cursor: pointer; }
.otp-pill input[type="radio"] { display: none; }
.otp-pill span {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 9px 4px; border-radius: var(--r-sm);
  font-size: 0.73rem; font-weight: 600; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); transition: all var(--transition);
  cursor: pointer; white-space: nowrap;
}
.otp-pill input:checked + span {
  background: var(--gold-dim);
  border-color: rgba(232,160,32,0.5);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(232,160,32,0.15);
}
.otp-pill span:hover { border-color: var(--border-hi); color: var(--text); }

/* ── Breakdown Box ------------------------------------------ */
.osc-breakdown {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px;
  margin-bottom: 14px;
}
.osc-breakdown .osc-row { border-bottom: 1px solid var(--border); }
.osc-breakdown .osc-row:last-child { border-bottom: none; }

/* Inline input rows */
.osc-inline-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border); gap: 12px;
}
.osc-inline-row label {
  font-size: 0.81rem; color: var(--text-2);
  white-space: nowrap; flex-shrink: 0; cursor: default;
}
.osc-input-wrap {
  display: flex; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color var(--transition);
}
.osc-input-wrap:focus-within { border-color: rgba(232,160,32,0.5); }
.osc-input-prefix {
  padding: 6px 7px; font-size: 0.8rem;
  color: var(--text-3); background: rgba(255,255,255,0.03);
  border-right: 1px solid var(--border);
}
.osc-input-wrap input {
  width: 68px; padding: 6px 8px;
  background: transparent; border: none;
  color: var(--text); font-size: 0.85rem; font-weight: 600;
  outline: none; text-align: right;
}
.osc-input-wrap input::placeholder { color: var(--text-3); font-weight:400; }

/* ── Order Online Section (Zomato / Swiggy) ----------------- */
.order-online-section { padding: 56px 0; }

.order-online-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}

.oos-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 8px; line-height: 1.15;
}
.oos-text p { color: var(--text-2); font-size: 0.9rem; margin-top: 10px; }

.oos-buttons {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}

/* Delivery App Button */
.delivery-app-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-radius: var(--r);
  border: 1px solid var(--border);
  min-width: 220px;
  transition: all 260ms ease;
  position: relative; overflow: hidden;
}
.delivery-app-btn::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 260ms ease;
}
.delivery-app-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Zomato */
.zomato-btn {
  background: rgba(226,55,68,0.08);
  border-color: rgba(226,55,68,0.25);
}
.zomato-btn:hover {
  background: rgba(226,55,68,0.15);
  border-color: rgba(226,55,68,0.5);
  box-shadow: 0 8px 32px rgba(226,55,68,0.2);
}

/* Swiggy */
.swiggy-btn {
  background: rgba(252,128,25,0.08);
  border-color: rgba(252,128,25,0.25);
}
.swiggy-btn:hover {
  background: rgba(252,128,25,0.15);
  border-color: rgba(252,128,25,0.5);
  box-shadow: 0 8px 32px rgba(252,128,25,0.2);
}

.dab-logo { font-size: 1.8rem; flex-shrink: 0; }
.dab-text  { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.dab-sub   { font-size: 0.7rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.dab-name  { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.zomato-btn .dab-name { color: #E23744; }
.swiggy-btn .dab-name { color: #FC8019; }
.dab-arrow { font-size: 1rem; color: var(--text-3); transition: transform 200ms ease; flex-shrink: 0; }
.delivery-app-btn:hover .dab-arrow { transform: translate(2px,-2px); color: var(--text); }

@media (max-width: 768px) {
  .order-online-card {
    grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; text-align: center;
  }
  .oos-buttons { flex-direction: row; justify-content: center; }
  .delivery-app-btn { min-width: 160px; }
}
@media (max-width: 480px) {
  .oos-buttons { flex-direction: column; }
  .delivery-app-btn { min-width: unset; width: 100%; }
}
