/* ═══════════════════════════════════════════════════════════════
   RISE & ROAST BAKERY — Dark Gold Design System
   Brand: Luxury · Futuristic · Bilingual EN/AR
═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ── */
:root {
  /* Brand Colors — Dark Gold Palette */
  --c-dark:         #0A0A0A;
  --c-dark-2:       #111111;
  --c-dark-3:       #181818;
  --c-dark-4:       #222222;
  --c-card:         #141414;
  --c-gold:         #D4A853;
  --c-gold-light:   #F0C878;
  --c-gold-dim:     #A07830;
  --c-orange:       #F5A623;
  --c-orange-dim:   #C07810;
  --c-white:        #FFFFFF;
  --c-off-white:    #F5F0E8;
  --c-gray-100:     #1E1E1E;
  --c-gray-200:     #2A2A2A;
  --c-gray-300:     #333333;
  --c-gray-500:     #666666;
  --c-gray-700:     #999999;
  --c-text-light:   #E8E0D0;
  --c-text-muted:   #888888;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-arabic:  'Cairo', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:      0 1px 3px rgba(0,0,0,0.4);
  --shadow-sm:      0 4px 12px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.6);
  --shadow-xl:      0 24px 64px rgba(0,0,0,0.7);
  --shadow-gold:    0 0 30px rgba(212,168,83,0.25);
  --shadow-gold-lg: 0 0 60px rgba(212,168,83,0.35);
  --glow-gold:      0 0 20px rgba(212,168,83,0.4), 0 0 60px rgba(212,168,83,0.15);
  --glow-orange:    0 0 20px rgba(245,166,35,0.4), 0 0 60px rgba(245,166,35,0.15);

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out:  cubic-bezier(0.42, 0, 0.58, 1);
  --t-fast:   0.15s var(--ease-smooth);
  --t-normal: 0.3s var(--ease-smooth);
  --t-slow:   0.6s var(--ease-smooth);

  /* Navbar */
  --navbar-h: 72px;

  /* Gold Gradients */
  --grad-gold:        linear-gradient(135deg, #D4A853, #F0C878, #D4A853);
  --grad-gold-h:      linear-gradient(90deg, #D4A853, #F5A623);
  --grad-gold-text:   linear-gradient(135deg, #D4A853 0%, #F5A623 50%, #F0C878 100%);
  --grad-dark:        linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  --grad-card:        linear-gradient(145deg, #141414, #1A1A1A);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text-light);
  background: var(--c-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Arabic support */
[dir="rtl"] body,
[dir="rtl"] .lang-ar {
  font-family: var(--font-arabic);
  text-align: right;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

img { max-width: 100%; display: block; }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-normal);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── 3. Typography Scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--c-white);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: var(--font-arabic);
  font-weight: 700;
}

.display-1 { font-size: clamp(2.5rem, 6vw, 5rem);  letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2rem,  5vw, 4rem);   letter-spacing: -0.02em; }
.heading-1 { font-size: clamp(1.8rem, 4vw, 3rem);  letter-spacing: -0.01em; }
.heading-2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.heading-3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
.text-lg   { font-size: 1.125rem; }
.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.75rem; }

.text-gold   { color: var(--c-gold); }
.text-orange { color: var(--c-orange); }
.text-muted  { color: var(--c-text-muted); }
.text-white  { color: var(--c-white); }
.text-center { text-align: center; }

.text-gradient-gold {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 4. Layout ── */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--c-dark);
}

.main-content { flex: 1; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section    { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }

/* ── 5. Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(212,168,83,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform var(--t-normal), filter var(--t-normal);
}

.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212,168,83,0.5));
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-normal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--grad-gold-h);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-toggle {
  background: rgba(212,168,83,0.1);
  color: var(--c-gold);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--t-normal);
  cursor: pointer;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-dark);
  box-shadow: var(--glow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}

.hamburger:hover { background: rgba(212,168,83,0.1); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all var(--t-normal);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 6. Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(212,168,83,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
  animation: heroBgShift 20s ease-in-out infinite alternate;
}

/* Subtle grid pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes heroBgShift {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.06); }
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.particle:nth-child(1)  { width:4px;  height:4px;  left:10%; animation-duration:18s; animation-delay:0s;    background:rgba(212,168,83,0.6); }
.particle:nth-child(2)  { width:6px;  height:6px;  left:20%; animation-duration:22s; animation-delay:2s;    background:rgba(245,166,35,0.4); }
.particle:nth-child(3)  { width:3px;  height:3px;  left:30%; animation-duration:15s; animation-delay:4s;    background:rgba(212,168,83,0.5); }
.particle:nth-child(4)  { width:8px;  height:8px;  left:40%; animation-duration:25s; animation-delay:1s;    background:rgba(245,166,35,0.2); }
.particle:nth-child(5)  { width:5px;  height:5px;  left:55%; animation-duration:19s; animation-delay:3s;    background:rgba(212,168,83,0.5); }
.particle:nth-child(6)  { width:4px;  height:4px;  left:65%; animation-duration:21s; animation-delay:5s;    background:rgba(245,166,35,0.3); }
.particle:nth-child(7)  { width:7px;  height:7px;  left:75%; animation-duration:17s; animation-delay:0.5s;  background:rgba(212,168,83,0.4); }
.particle:nth-child(8)  { width:3px;  height:3px;  left:85%; animation-duration:23s; animation-delay:2.5s;  background:rgba(245,166,35,0.5); }
.particle:nth-child(9)  { width:5px;  height:5px;  left:5%;  animation-duration:20s; animation-delay:7s;    background:rgba(212,168,83,0.6); }
.particle:nth-child(10) { width:4px;  height:4px;  left:92%; animation-duration:16s; animation-delay:6s;    background:rgba(245,166,35,0.3); }
.particle:nth-child(11) { width:9px;  height:9px;  left:48%; animation-duration:28s; animation-delay:9s;    background:rgba(212,168,83,0.2); }
.particle:nth-child(12) { width:3px;  height:3px;  left:25%; animation-duration:14s; animation-delay:11s;   background:rgba(245,166,35,0.6); }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 820px;
}

.hero-logo {
  width: clamp(100px, 16vw, 180px);
  height: auto;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  transform: scale(0.85);
  animation: heroLogoIn 0.9s var(--ease-out) 0.3s forwards;
  filter: drop-shadow(0 0 30px rgba(212,168,83,0.4));
}

@keyframes heroLogoIn {
  to { opacity: 1; transform: scale(1); }
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.7s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.9s forwards;
}

[dir="rtl"] .hero-title { font-family: var(--font-arabic); }

.hero-title span {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212,168,83,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.8s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,168,83,0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 7. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.btn:hover::before { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: var(--grad-gold);
  color: var(--c-dark);
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(212,168,83,0.4);
}

.btn-outline:hover {
  background: rgba(212,168,83,0.08);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* ── 8. Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-badge {
  display: inline-block;
  background: rgba(212,168,83,0.1);
  color: var(--c-gold);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold-h);
  border-radius: var(--radius-full);
  margin: var(--space-sm) auto;
}

.section-desc {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 9. Feature Cards ── */
.features-section {
  background: var(--c-dark-2);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212,168,83,0.08);
  border-bottom: 1px solid rgba(212,168,83,0.08);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(212,168,83,0.1);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold-h);
  opacity: 0.7;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,168,83,0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.feature-desc {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── 10. Menu Preview Section ── */
.menu-preview-section {
  background: var(--c-dark);
  padding: var(--space-2xl) 0;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* ── 11. Menu Page — Futuristic Dark Gold ── */
.menu-page {
  min-height: 100vh;
  background: var(--c-dark);
  padding-bottom: var(--space-2xl);
}

/* Menu Hero */
.menu-hero-future {
  position: relative;
  padding: calc(var(--navbar-h) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  overflow: hidden;
  background: var(--c-dark);
}

.menu-hero-future::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,168,83,0.05) 0%, transparent 50%);
}

/* Animated grid lines */
.menu-hero-future::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.menu-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.menu-hero-title span {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[dir="rtl"] .menu-hero-title { font-family: var(--font-arabic); }

.menu-hero-subtitle {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

/* Futuristic Search Bar */
.menu-search-future {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.menu-search-future input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,168,83,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  color: var(--c-white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all var(--t-normal);
}

.menu-search-future input::placeholder { color: rgba(212,168,83,0.4); }

.menu-search-future input:focus {
  border-color: rgba(212,168,83,0.6);
  background: rgba(212,168,83,0.05);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.08), var(--shadow-gold);
}

.menu-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212,168,83,0.6);
  font-size: 1rem;
  pointer-events: none;
}

/* Category Filter — Centered & Beautiful */
.category-filter-bar {
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid rgba(212,168,83,0.06);
  border-bottom: 1px solid rgba(212,168,83,0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 1rem 0 0.9rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.5);
}

/* Centered pill container */
.category-filter-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.45rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Individual pill */
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212,168,83,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t-normal);
  font-family: inherit;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.cat-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,168,83,0);
  transition: background var(--t-fast);
}

.cat-btn:hover {
  border-color: rgba(212,168,83,0.4);
  color: var(--c-gold-light);
  background: rgba(212,168,83,0.07);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,168,83,0.2);
}

.cat-btn.active {
  background: linear-gradient(135deg, #D4A853 0%, #F5A623 55%, #F0C878 100%);
  color: #080808;
  border-color: transparent;
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(212,168,83,0.4),
    0 0 0 1px rgba(240,200,120,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.cat-btn.active .cat-emoji {
  filter: grayscale(0) brightness(0.8);
}

.cat-emoji { font-size: 0.9rem; line-height: 1; }

/* Menu Grid Container */
.menu-grid-container {
  padding: var(--space-lg) 0;
}

.menu-category-section { margin-bottom: var(--space-xl); }

/* Section Header — Gold Line Style */
.menu-category-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--c-white);
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,168,83,0.2);
  position: relative;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--grad-gold-h);
}

.menu-category-title .cat-title-emoji {
  font-size: 1.4rem;
}

.menu-category-title .cat-title-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-category-subtitle {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  margin-left: auto;
  -webkit-text-fill-color: var(--c-text-muted);
  background: none;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

/* ── 12. Menu Item Card — Dark Gold ── */
.menu-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(212,168,83,0.1);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-gold-h);
  opacity: 0;
  transition: opacity var(--t-normal);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,168,83,0.3);
}

.menu-card:hover::before { opacity: 1; }

.menu-card-number {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-gold-dim);
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.45rem;
  flex-shrink: 0;
  min-width: 2rem;
  text-align: center;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.menu-card-body {
  flex: 1;
  min-width: 0;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.3;
}

[dir="rtl"] .menu-card-name { font-family: var(--font-arabic); }

.menu-card-name-ar {
  font-family: var(--font-arabic);
  font-size: 0.82rem;
  color: rgba(212,168,83,0.6);
  margin-top: 1px;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.menu-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-veg     { background: rgba(100,200,100,0.12); color: #7ec87e; border: 1px solid rgba(100,200,100,0.2); }
.badge-spicy   { background: rgba(220,60,60,0.12);   color: #e87878; border: 1px solid rgba(220,60,60,0.2); }
.badge-popular { background: rgba(212,168,83,0.15);  color: var(--c-gold); border: 1px solid rgba(212,168,83,0.3); }
.badge-size    { background: rgba(255,255,255,0.06);  color: var(--c-gray-700); border: 1px solid rgba(255,255,255,0.08); }

/* Price display */
.menu-card-price {
  flex-shrink: 0;
  text-align: right;
}

.price-single {
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-dual {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.price-label-tag {
  font-size: 0.62rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.price-value {
  font-weight: 700;
  color: var(--c-gold);
}

/* ── 13. Unified Page Hero (About / Contact / inner pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--navbar-h) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  overflow: hidden;
  background: var(--c-dark);
}

/* Radial gold glow */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,168,83,0.11) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,83,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow label */
.page-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
  opacity: 0;
  animation: heroFadeUp 0.6s var(--ease-out) 0.3s forwards;
}

/* Main title */
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.5s forwards;
}

[dir="rtl"] .page-hero-title {
  font-family: var(--font-arabic);
}

/* Gold highlighted word */
.page-hero-title span {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* Subtitle */
.page-hero-subtitle {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.7s forwards;
}

/* Bottom fade into page */
.page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-dark));
  pointer-events: none;
  z-index: 3;
}

/* Keep old classes working (fallback) */
.about-hero  { background: var(--c-dark); }
.contact-hero { background: var(--c-dark); }

.about-content {
  padding: var(--space-2xl) 0;
  background: var(--c-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--c-dark-3), var(--c-dark-4));
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-text-block .section-badge { display: inline-block; }

.about-text-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--c-white);
  margin: var(--space-sm) 0;
}

.about-text-block p {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-card {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: transform var(--t-normal), border-color var(--t-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.3);
}

.value-card .icon { font-size: 2rem; margin-bottom: var(--space-xs); }
.value-card h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--c-white); }
.value-card p  { font-size: 0.85rem; color: var(--c-text-muted); }

/* ── 14. Contact Page ── */
.contact-hero {
  background: var(--c-dark);
  padding: calc(var(--navbar-h) + var(--space-xl)) 0 var(--space-2xl);
  color: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,168,83,0.07) 0%, transparent 60%);
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--c-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.contact-info-card {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(212,168,83,0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--c-text-light);
  font-size: 0.95rem;
}

.contact-info-text a:hover { color: var(--c-gold); }

.map-container {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--c-text-muted);
  padding: var(--space-xl);
}

.map-placeholder .icon { font-size: 3rem; margin-bottom: var(--space-sm); }

/* ── 15. Footer ── */
.footer {
  background: var(--c-dark-2);
  border-top: 1px solid rgba(212,168,83,0.1);
  color: rgba(255,255,255,0.55);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h5 {
  color: var(--c-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--c-gold); }

.footer-links li {
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(212,168,83,0.08);
  font-size: 0.8rem;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: var(--c-gold);
  font-weight: 600;
}

/* ── 16. Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 17. Allergen Legend ── */
.allergen-legend {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.allergen-legend strong {
  color: var(--c-gold);
  margin-right: 0.5rem;
}

/* ── 18. No Results ── */
.no-results {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--c-text-muted);
}

.no-results .icon { font-size: 3rem; margin-bottom: var(--space-sm); }

/* ── 19. Loading Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--c-card) 25%, var(--c-dark-3) 50%, var(--c-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 20. Blazor Error UI ── */
#blazor-error-ui {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #7b1212;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-size: 0.88rem;
  border: 1px solid rgba(255,100,100,0.3);
}

#blazor-error-ui.blazor-error-show { display: flex; gap: 1rem; align-items: center; }
#blazor-error-ui a { color: rgba(255,255,255,0.8); }
#blazor-error-ui .dismiss { cursor: pointer; }

/* ── 21. Utilities ── */
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-sm       { gap: var(--space-sm); }
.mt-sm        { margin-top: var(--space-sm); }
.mt-md        { margin-top: var(--space-md); }
.mt-lg        { margin-top: var(--space-lg); }
.mb-sm        { margin-bottom: var(--space-sm); }
.mb-md        { margin-bottom: var(--space-md); }
.w-full       { width: 100%; }

/* ── 22. Responsive ── */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,168,83,0.12);
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--t-normal), opacity var(--t-normal);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .menu-items-grid { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .menu-preview-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   §23. Real Restaurant Menu — List Layout
══════════════════════════════════════════════════════════════ */

/* ── Ornamental Section Header ── */
.menu-section-header {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-md);
}

.msh-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.msh-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,168,83,0.3) 25%,
    rgba(212,168,83,0.45) 50%,
    rgba(212,168,83,0.3) 75%,
    transparent 100%);
}

.msh-deco {
  color: var(--c-gold);
  font-size: 0.48rem;
  opacity: 0.7;
  flex-shrink: 0;
  line-height: 1;
}

.msh-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.msh-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.22em;
  white-space: nowrap;
  flex-shrink: 0;
}

[dir="rtl"] .msh-name {
  font-family: var(--font-arabic);
  letter-spacing: 0.03em;
}

.msh-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(212,168,83,0.5);
  margin-top: 0.3rem;
  font-family: var(--font-arabic);
  letter-spacing: 0.04em;
}

[dir="rtl"] .msh-sub {
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.msh-note {
  display: block;
  font-size: 0.68rem;
  color: rgba(212,168,83,0.38);
  margin-top: 0.25rem;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* ── Category Section Separator ── */
.menu-category-section {
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xs);
  position: relative;
}

.menu-category-section + .menu-category-section {
  border-top: 1px solid rgba(212,168,83,0.06);
}

/* ── Two-column list grid ── */
.menu-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-xl);
}

/* ── Single list item ── */
.menu-list-item {
  padding: 1rem 0.6rem 1rem 0.2rem;
  border-bottom: 1px solid rgba(212,168,83,0.07);
  transition: background var(--t-fast), padding-left var(--t-fast);
  cursor: default;
}

[dir="rtl"] .menu-list-item {
  padding: 1rem 0.2rem 1rem 0.6rem;
}

.menu-list-item:hover {
  background: rgba(212,168,83,0.03);
  border-radius: var(--radius-sm);
  padding-left: 0.6rem;
}

[dir="rtl"] .menu-list-item:hover {
  padding-left: 0.2rem;
  padding-right: 0.6rem;
}

/* Row: [num] [names] [leader dots] [price] */
.mli-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.mli-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--c-gold-dim);
  font-family: var(--font-body);
  flex-shrink: 0;
  min-width: 1.5rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
  padding-top: 2px;
}

.mli-names {
  display: flex;
  flex-direction: column;
  gap: 0.07rem;
  flex-shrink: 0;
  min-width: 0;
  max-width: 54%;
}

.mli-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.25;
}

[dir="rtl"] .mli-name {
  font-family: var(--font-arabic);
}

.mli-name-ar {
  font-family: var(--font-arabic);
  font-size: 0.82rem;
  color: rgba(212,168,83,0.48);
  line-height: 1.25;
}

/* Dotted leader line */
.mli-leader {
  flex: 1;
  min-width: 1.5rem;
  border: none;
  border-bottom: 2px dotted rgba(212,168,83,0.14);
  align-self: flex-end;
  margin-bottom: 5px;
}

/* Price block */
.mli-price {
  flex-shrink: 0;
  text-align: right;
}

.mli-price-val {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--c-gold);
  white-space: nowrap;
  font-style: italic;
}

.mli-price-dual {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-align: right;
}

.mli-price-dual span {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.mli-price-dual strong {
  color: var(--c-gold);
  font-weight: 700;
}

.mli-price-lbl {
  font-size: 0.62rem;
  color: var(--c-text-muted);
  font-weight: 400;
  font-style: italic;
}

/* Description */
.mli-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-top: 0.35rem;
  font-style: italic;
  padding-left: 1.8rem;
}

[dir="rtl"] .mli-desc {
  padding-left: 0;
  padding-right: 1.8rem;
}

.mli-skewer {
  color: rgba(212,168,83,0.65) !important;
  font-style: normal !important;
  font-weight: 500;
}

.mli-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
  padding-left: 1.8rem;
}

[dir="rtl"] .mli-badges {
  padding-left: 0;
  padding-right: 1.8rem;
}

/* Responsive: single column on tablet/mobile */
@media (max-width: 900px) {
  .menu-items-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .msh-name { font-size: 0.88rem; letter-spacing: 0.12em; }
  .msh-emoji { font-size: 1.1rem; }
  .mli-names { max-width: 48%; }
}

/* ══════════════════════════════════════════════════════
   §24. Floating Buttons (WhatsApp + Back to Top)
══════════════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 950;
}

[dir="rtl"] .floating-buttons {
  right: auto;
  left: 1.75rem;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.fab:hover { transform: scale(1.1) translateY(-2px); }

.fab-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
}

.fab-whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,0.6), 0 2px 8px rgba(0,0,0,0.3);
}

.fab-top {
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.fab-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-top:hover {
  box-shadow: 0 6px 24px rgba(212,168,83,0.25), 0 2px 8px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════════════════
   §25. Cookie Consent Banner (GDPR)
══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(212,168,83,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.cookie-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.cookie-text p {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 1rem 1.25rem; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ══════════════════════════════════════════════════════
   §26. Delivery Strip (Home page)
══════════════════════════════════════════════════════ */
.delivery-strip {
  background: #0D0D0D;
  border-top: 1px solid rgba(212,168,83,0.08);
  border-bottom: 1px solid rgba(212,168,83,0.08);
  padding: 1rem 0;
}

.delivery-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.delivery-strip-label {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 500;
}

.delivery-platforms { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.delivery-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--c-text-light);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.delivery-platform-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

.dp-justeat:hover  { border-color: rgba(255,112,0,0.4); color: #ff7000; }
.dp-deliveroo:hover { border-color: rgba(0,204,204,0.4); color: #00cccc; }
.dp-uber:hover    { border-color: rgba(180,180,180,0.4); color: #ccc; }
.dp-whatsapp:hover { border-color: rgba(37,211,102,0.4); color: #25D366; }

/* ══════════════════════════════════════════════════════
   §27. Footer Enhancements
══════════════════════════════════════════════════════ */
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-delivery { margin-top: 1rem; }

.footer-delivery-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-delivery-icons { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--c-text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.delivery-pill:hover { color: var(--c-white); border-color: rgba(255,255,255,0.2); }

.footer-hours { list-style: none; }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-hours-open {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  color: #4ade80 !important;
  font-weight: 600;
  font-size: 0.8rem !important;
  border-bottom: none !important;
  margin-top: 0.4rem;
}

.open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.footer-whatsapp-link { color: #25D366 !important; font-weight: 600; }
.footer-whatsapp-link:hover { color: #1da851 !important; }

/* ══════════════════════════════════════════════════════
   §28. Reviews Section (Home page)
══════════════════════════════════════════════════════ */
.reviews-section {
  padding: var(--space-2xl) 0;
  background: #0D0D0D;
  border-top: 1px solid rgba(212,168,83,0.06);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
  border-color: rgba(212,168,83,0.2);
  transform: translateY(-3px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(212,168,83,0.08);
  line-height: 1;
  pointer-events: none;
}

[dir="rtl"] .review-card::before { right: auto; left: 1.25rem; }

.review-stars {
  color: var(--c-gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #080808;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-white);
}

.review-source {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 0.1rem;
}

/* ══════════════════════════════════════════════════════
   §29. QR Code Card (Contact page)
══════════════════════════════════════════════════════ */
.qr-card {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
}

.qr-card-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .qr-card-inner { flex-direction: column; text-align: center; }
}

.qr-image {
  border: 3px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  background: #141414;
  flex-shrink: 0;
}

.qr-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 0.4rem;
}

.qr-text p {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-whatsapp-link {
  color: #25D366 !important;
  font-weight: 600;
  font-size: 1rem;
}

.contact-whatsapp-link:hover { color: #1da851 !important; }

/* ══════════════════════════════════════════════════════
   §30. Cart Drawer & Cart UI
══════════════════════════════════════════════════════ */

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

/* Drawer panel */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: #111214;
  border-left: 1px solid rgba(212,168,83,0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
[dir="rtl"] .cart-drawer {
  right: auto; left: 0;
  border-left: none;
  border-right: 1px solid rgba(212,168,83,0.15);
  transform: translateX(-110%);
}
.cart-drawer.open { transform: translateX(0); }

/* Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(212,168,83,0.1);
  flex-shrink: 0;
  background: rgba(212,168,83,0.03);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-header-count {
  background: var(--c-gold);
  color: #080808;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.cart-close:hover { color: var(--c-white); background: rgba(255,255,255,0.06); }

/* Items list */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.25rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,83,0.2) transparent;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.cart-item:hover { background: rgba(255,255,255,0.02); }
.cart-item-info {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}
.cart-item-num {
  font-size: 0.68rem;
  color: var(--c-gold);
  font-weight: 700;
  min-width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-variant {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  margin-top: 1px;
}
.cart-item-unit-price {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.3);
  background: transparent;
  color: var(--c-gold);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.cart-qty-btn:hover { background: rgba(212,168,83,0.15); border-color: var(--c-gold); }
.cart-qty-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-white);
  min-width: 18px;
  text-align: center;
}
.cart-item-total {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-gold);
  min-width: 54px;
  text-align: right;
  font-style: italic;
}

/* Total row */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border-top: 1px solid rgba(212,168,83,0.12);
  flex-shrink: 0;
  background: rgba(212,168,83,0.04);
}
.cart-total > span:first-child {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-total-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
}

/* Order form */
.cart-form {
  padding: 1rem 1.4rem 1.4rem;
  flex-shrink: 0;
  background: #0f1012;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cart-form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-required { color: var(--c-gold); }
.cart-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-md);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 0.6rem 0.85rem;
  resize: none;
  transition: border-color 0.2s;
}
.cart-textarea:focus { outline: none; border-color: rgba(212,168,83,0.5); }
.cart-textarea::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }
.cart-error {
  color: #f87171;
  font-size: 0.78rem;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}
.cart-order-btn {
  width: 100%;
  margin-top: 0.9rem;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  padding: 0.8rem;
}

/* Spinner */
.cart-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cart-spin 0.65s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes cart-spin { to { transform: rotate(360deg); } }

/* Empty state */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--space-xl);
  text-align: center;
}
.cart-empty-icon { font-size: 3rem; }
.cart-empty p { color: var(--c-text-muted); }

/* Success state */
.cart-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--space-xl);
  text-align: center;
}
.cart-success-icon { font-size: 3.5rem; }
.cart-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #4ade80;
}
.cart-success p { color: var(--c-text-muted); max-width: 280px; line-height: 1.65; }

/* ── Add to Cart Button ─────────────────────────────── */
.btn-add-cart {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,83,0.4);
  background: transparent;
  color: var(--c-gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-add-cart:hover {
  background: rgba(212,168,83,0.18);
  border-color: var(--c-gold);
  transform: scale(1.1);
}
.btn-add-cart:active { transform: scale(0.95); }

/* Smaller variant for dual-price items */
.btn-add-sm {
  width: auto;
  height: 26px;
  border-radius: var(--radius-md);
  padding: 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.mli-add-dual {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
  align-items: center;
}

/* Cart button in navbar */
.cart-nav-btn {
  position: relative;
  background: none;
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-full);
  color: var(--c-text-light);
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.cart-nav-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212,168,83,0.06);
}
.cart-badge {
  background: var(--c-gold);
  color: #080808;
  font-size: 0.62rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* menu-card footer row (badges + add button) */
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}
.menu-card-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; flex: 1; }

/* ── Cart body (scrollable wrapper replacing flex:1 on items alone) ── */
.cart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,83,0.2) transparent;
}

/* Override old cart-items scroll — now done by cart-body */
.cart-items {
  overflow-y: unset;
}

/* Text input (single-line) in cart form */
.cart-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-md);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 0.55rem 0.85rem;
  transition: border-color 0.2s;
}
.cart-input:focus { outline: none; border-color: rgba(212,168,83,0.5); }
.cart-input::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }

/* Error state */
.input-error { border-color: rgba(248,113,113,0.5) !important; }
.input-error:focus { border-color: #f87171 !important; }

.cart-field-error {
  display: block;
  color: #f87171;
  font-size: 0.74rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Optional label hint */
.cart-optional {
  color: var(--c-text-muted);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}

/* ── §31 · Inquiry / Contact Form ─────────────────────────────────────────── */
.inquiry-section {
  padding: var(--space-xl) 0 calc(var(--space-xl) * 1.5);
  background: linear-gradient(180deg, rgba(212,168,83,0.03) 0%, transparent 100%);
  border-top: 1px solid rgba(212,168,83,0.08);
}

.inq-form-card {
  background: var(--c-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

.inq-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.35rem;
}

.inq-input,
.inq-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-md);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 0.55rem 0.85rem;
  transition: border-color 0.2s;
  appearance: none;
}
.inq-input:focus,
.inq-textarea:focus { outline: none; border-color: rgba(212,168,83,0.5); }
.inq-input::placeholder,
.inq-textarea::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }
.inq-textarea { resize: vertical; min-height: 100px; }

/* Styled select arrow */
select.inq-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A853' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
select.inq-input option { background: #1a1a1a; color: var(--c-white); }

.inq-submit-btn {
  margin-top: var(--space-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}

/* Success state */
.inq-success {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  background: var(--c-card);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.inq-success-icon { font-size: 3rem; margin-bottom: var(--space-sm); }
.inq-success h4 { color: #4ade80; font-size: 1.2rem; margin-bottom: 0.5rem; }
.inq-success p  { color: var(--c-text-muted); margin-bottom: var(--space-sm); }

@media (max-width: 600px) {
  .inq-form-card { padding: var(--space-md); }
}
