/**
 * landing-critical.css
 * Self-contained CSS for the TableFlow landing page (index.html).
 * Extracted from main.css — includes :root vars, resets, base typography,
 * .btn system, accessibility helpers, custom-dropdown, sticky search,
 * and all body.landing-page scoped styles.
 *
 * Generated 2026-03-27
 */

/* ============================================
   1. CSS Custom Properties (:root)
   ============================================ */
@charset "UTF-8";
:root {
  --space-base: 0.25rem;
  --space-1: calc(var(--space-base) * 1);
  --space-2: calc(var(--space-base) * 2);
  --space-3: calc(var(--space-base) * 3);
  --space-4: calc(var(--space-base) * 4);
  --space-5: calc(var(--space-base) * 5);
  --space-6: calc(var(--space-base) * 6);
  --space-7: calc(var(--space-base) * 7);
  --space-8: calc(var(--space-base) * 8);
  --space-10: calc(var(--space-base) * 10);
  --space-12: calc(var(--space-base) * 12);
  --space-14: calc(var(--space-base) * 14);
  --space-16: calc(var(--space-base) * 16);
  --space-20: calc(var(--space-base) * 20);
  --space-24: calc(var(--space-base) * 24);
  --space-32: calc(var(--space-base) * 32);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --color-primary-50: #EFF6FF;
  --color-primary-100: #DBEAFE;
  --color-primary-500: #3B82F6;
  --color-primary-600: #2563EB;
  --color-primary-700: #1D4ED8;
  --color-primary-900: #1E3A8A;
  --color-secondary-50: #F5F3FF;
  --color-secondary-100: #EDE9FE;
  --color-secondary-500: #8B5CF6;
  --color-secondary-600: #7C3AED;
  --color-secondary-700: #6D28D9;
  --color-accent-orange: #F97316;
  --color-accent-green: #059669;
  --color-accent-red: #DC2626;
  --color-neutral-50: #F9FAFB;
  --color-neutral-100: #F3F4F6;
  --color-neutral-200: #E5E7EB;
  --color-neutral-300: #D1D5DB;
  --color-neutral-400: #9CA3AF;
  --color-neutral-500: #6B7280;
  --color-neutral-600: #4B5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1F2937;
  --color-neutral-900: #111827;
  --color-background: #FFFFFF;
  --color-surface: var(--color-neutral-50);
  --color-surface-elevated: var(--color-background);
  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-700);
  --color-text-muted: var(--color-neutral-500);
  --color-border: var(--color-neutral-200);
  --color-border-strong: var(--color-neutral-300);
  --color-focus: var(--color-primary-600);
  --color-error: var(--color-accent-red);
  --color-warning: #D97706;
  --color-success: var(--color-accent-green);
  --radius-none: 0;
  --radius-xs: var(--space-1);
  --radius-sm: var(--space-2);
  --radius-md: var(--space-3);
  --radius-lg: var(--space-4);
  --radius-xl: var(--space-6);
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --min-touch-target: calc(var(--space-base) * 11);
  --focus-ring-width: var(--space-1);
  --focus-ring-offset: var(--space-1);
  --duration-instant: 0ms;
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-family-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-mono: "SF Mono", Monaco, "Cascadia Code", monospace;
}

/* ============================================
   2. CSS Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  line-height: var(--line-height-normal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
button:disabled {
  cursor: not-allowed;
}
ul, ol {
  list-style: none;
}
:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus);
  outline-offset: var(--focus-ring-offset);
}
@media (prefers-contrast: high) {
  :focus-visible {
    outline-width: 0.1875rem;
  }
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}
h1 { font-size: var(--font-size-5xl); font-weight: 700; margin-bottom: var(--space-8); }
h2 { font-size: var(--font-size-3xl); margin-bottom: var(--space-6); }
h3 { font-size: var(--font-size-xl); margin-bottom: var(--space-4); }
h4 { font-size: var(--font-size-lg); margin-bottom: var(--space-4); }
h5 { font-size: var(--font-size-base); margin-bottom: var(--space-3); }
h6 { font-size: var(--font-size-sm); margin-bottom: var(--space-3); }
p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  max-width: 45rem;
}

/* ============================================
   4. Button System (.btn)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 0.0625rem solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease-in-out;
  min-height: var(--min-touch-target);
  min-width: var(--min-touch-target);
}
@media (max-width: 768px) {
  .btn {
    padding: var(--space-4) var(--space-6);
    min-height: 2.75rem;
  }
}
.btn:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus);
  outline-offset: var(--focus-ring-offset);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}
.btn:disabled::before, .btn[aria-disabled=true]::before {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn::before {
    display: none;
  }
  .btn--cta {
    animation: none;
  }
  .btn:hover:not(:disabled) {
    transform: none;
  }
  .btn:active:not(:disabled) {
    transform: none;
  }
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-secondary-600) 100%);
  border: none;
  color: var(--color-background);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left var(--duration-slow) ease-out;
}
.btn--primary:hover:not(:disabled) {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary-600) 90%, white) 0%, color-mix(in srgb, var(--color-secondary-600) 90%, white) 100%);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover:not(:disabled)::before {
  left: 100%;
}
.btn--primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn--cta {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, color-mix(in srgb, var(--color-accent-orange) 80%, var(--color-accent-red)) 100%);
  border: none;
  color: var(--color-background);
  font-weight: 600;
  font-size: var(--font-size-lg);
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(249, 115, 22, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.025em;
  animation: subtle-pulse 2s ease-in-out infinite;
}
.btn--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left var(--duration-slow) ease-out;
}
.btn--cta:hover:not(:disabled) {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-accent-orange) 85%, white) 0%, color-mix(in srgb, var(--color-accent-red) 85%, white) 100%);
  transform: translateY(-0.1875rem);
  box-shadow: var(--shadow-xl), 0 0 0 0.25rem rgba(249, 115, 22, 0.2);
  animation: none;
}
.btn--cta:hover:not(:disabled)::before {
  left: 100%;
}
.btn--cta:active:not(:disabled) {
  transform: translateY(-0.0625rem);
}
.btn--cta:focus-visible {
  box-shadow: var(--shadow-lg), 0 0 0 0.25rem rgba(249, 115, 22, 0.4), 0 0 0 0.375rem var(--color-background), 0 0 0 0.5rem var(--color-focus);
}
.btn--secondary {
  background-color: var(--color-surface);
  border: 0.0625rem solid var(--color-border);
  color: var(--color-text-primary);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover:not(:disabled) {
  background-color: var(--color-surface-hover, var(--color-surface));
  border-color: var(--color-accent, #f97316);
  color: white;
  transform: translateY(-0.0625rem);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background-color: transparent;
  border: 0.0625rem solid var(--color-border);
  color: var(--color-text-primary);
}
.btn--ghost:hover:not(:disabled) {
  background-color: var(--color-surface);
  border-color: var(--color-primary-600);
  color: var(--color-primary-600);
}
.btn--small, .btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  min-height: calc(var(--space-base) * 9);
}
.btn--medium {
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
}
.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
  min-height: calc(var(--space-base) * 12);
}
.btn--xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-xl);
  min-height: calc(var(--space-base) * 14);
}
.btn--icon-only {
  padding: var(--space-3);
  width: var(--min-touch-target);
  justify-content: center;
}
.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.btn--icon i {
  flex-shrink: 0;
  font-size: 1.125em;
}
.btn .btn__icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--loading {
  position: relative;
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -0.625rem;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: button-loading 0.8s linear infinite;
}
.btn-group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}
@keyframes subtle-pulse {
  0%, 100% {
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: var(--shadow-lg), 0 0 0 0.375rem rgba(249, 115, 22, 0.1);
  }
}
@keyframes button-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   5. Accessibility — skip-to-content, visually-hidden
   ============================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  z-index: 1070;
  transition: top 0.2s;
  white-space: nowrap;
}
.skip-to-content:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.skip-to-content:hover {
  background: #2563eb;
  text-decoration: underline;
}
@media (prefers-contrast: high) {
  .skip-to-content {
    border: 2px solid #fff;
  }
  .skip-to-content:focus {
    outline-width: 3px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visually-hidden:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ============================================
   6. Spinner & Loading
   ============================================ */
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary-600);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
}
.loading-state p {
  color: var(--text-secondary);
}
.loading-state .spinner {
  border: 0.1875rem solid var(--background-secondary);
  border-top: 0.1875rem solid var(--accent);
  border-radius: var(--radius-full);
  width: 3.125rem;
  height: 3.125rem;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

/* ============================================
   7. Results Count & View All
   ============================================ */
.results-count {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.view-all-btn-container {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   8. Custom Dropdown
   ============================================ */
.custom-dropdown {
  --dropdown-bg: rgba(255, 255, 255, 0.98);
  --dropdown-border: var(--color-primary-600);
  --dropdown-shadow: 0 0.625rem 2.5rem rgba(98, 83, 216, 0.2);
  --option-hover: linear-gradient(135deg, #6253D8 0%, #8B7FE8 100%);
  --option-selected: var(--color-primary-50);
  --option-text-hover: var(--color-background);
  position: relative;
  width: 100%;
}
.custom-dropdown .dropdown-trigger {
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  user-select: none;
}
.custom-dropdown .dropdown-trigger:hover {
  border-color: var(--color-primary-600);
  box-shadow: 0 0.25rem 0.75rem rgba(98, 83, 216, 0.1);
}
.custom-dropdown .dropdown-trigger:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 0.25rem rgba(98, 83, 216, 0.1);
}
.custom-dropdown .dropdown-trigger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-dropdown .dropdown-trigger .dropdown-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.custom-dropdown .dropdown-trigger .dropdown-value.placeholder {
  color: var(--color-text-muted);
}
.custom-dropdown .dropdown-trigger .dropdown-value[title]::after {
  content: attr(title);
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.5rem);
  background: var(--color-neutral-900);
  color: var(--color-background);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
  z-index: 1001;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  max-width: 15rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-dropdown .dropdown-trigger .dropdown-value[title]:hover::after {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}
.custom-dropdown .dropdown-trigger .dropdown-icon {
  color: var(--color-primary-600);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.custom-dropdown .dropdown-trigger .chevron {
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.custom-dropdown .dropdown-trigger[aria-expanded=true] {
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 0.25rem rgba(98, 83, 216, 0.1);
}
.custom-dropdown .dropdown-trigger[aria-expanded=true] .chevron {
  transform: rotate(180deg);
}
.custom-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--dropdown-bg);
  border: 2px solid var(--dropdown-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--dropdown-shadow);
  backdrop-filter: blur(0.625rem);
  max-height: 25rem;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity var(--duration-fast) ease, transform var(--duration-fast) ease, visibility var(--duration-fast) ease;
}
.custom-dropdown .dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 0.5rem;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--color-neutral-300);
  border-radius: var(--radius-full);
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--color-neutral-400);
}
.custom-dropdown .dropdown-search {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--dropdown-bg);
  backdrop-filter: blur(0.625rem);
  z-index: 10;
}
.custom-dropdown .dropdown-search input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--color-background);
  transition: all var(--duration-fast) ease;
}
.custom-dropdown .dropdown-search input:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 0.1875rem rgba(98, 83, 216, 0.1);
}
.custom-dropdown .dropdown-search input::placeholder {
  color: var(--color-text-muted);
}
.custom-dropdown .dropdown-options {
  padding: 0.5rem;
}
.custom-dropdown .dropdown-option {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
  position: relative;
}
.custom-dropdown .dropdown-option::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  background: var(--color-neutral-900);
  color: var(--color-background);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
  z-index: 1001;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-dropdown .dropdown-option::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.25rem);
  transform: translateX(-50%);
  border: 0.375rem solid transparent;
  border-top-color: var(--color-neutral-900);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
  z-index: 1001;
}
.custom-dropdown .dropdown-option:hover::after, .custom-dropdown .dropdown-option:hover::before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}
.custom-dropdown .dropdown-option:hover {
  background: var(--option-hover);
  color: var(--option-text-hover);
}
.custom-dropdown .dropdown-option:hover .option-icon {
  color: var(--option-text-hover);
}
.custom-dropdown .dropdown-option:focus {
  outline: none;
  background: var(--option-hover);
  color: var(--option-text-hover);
}
.custom-dropdown .dropdown-option.selected {
  background: var(--option-selected);
  color: var(--color-primary-700);
  font-weight: 600;
}
.custom-dropdown .dropdown-option.selected .option-check {
  opacity: 1;
}
.custom-dropdown .dropdown-option[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-dropdown .dropdown-option .option-icon {
  color: var(--color-primary-600);
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}
.custom-dropdown .dropdown-option .option-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-dropdown .dropdown-option .option-description {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.125rem;
}
.custom-dropdown .dropdown-option .option-check {
  color: var(--color-primary-600);
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
  flex-shrink: 0;
}
.custom-dropdown .dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.5rem 0.75rem;
}
.custom-dropdown .dropdown-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.custom-dropdown .dropdown-empty i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.custom-dropdown .dropdown-custom-input {
  padding: 0.75rem;
}
.custom-dropdown .dropdown-custom-input .custom-value-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--color-background);
  color: var(--color-text-primary);
  transition: all var(--duration-fast) ease;
}
.custom-dropdown .dropdown-custom-input .custom-value-input:hover {
  border-color: var(--color-primary-400);
}
.custom-dropdown .dropdown-custom-input .custom-value-input:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 0.1875rem rgba(98, 83, 216, 0.15);
}
.custom-dropdown .dropdown-custom-input .custom-value-input::placeholder {
  color: var(--color-text-muted);
}
.custom-dropdown .dropdown-custom-input.dropdown-custom-input-top {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--dropdown-bg);
  z-index: 5;
}
.custom-dropdown.dropdown-sm .dropdown-trigger {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
}
.custom-dropdown.dropdown-sm .dropdown-option {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.custom-dropdown.dropup .dropdown-menu {
  top: auto;
  bottom: calc(100% + 0.5rem);
  transform: translateY(0.5rem);
}
.custom-dropdown.dropup .dropdown-menu.open {
  transform: translateY(0);
}
/* Dropdown in search bar */
.search-field .custom-dropdown.inline-dropdown .dropdown-trigger {
  background: transparent;
  border: none;
  padding: 0;
}
.search-field .custom-dropdown.inline-dropdown .dropdown-trigger:hover,
.search-field .custom-dropdown.inline-dropdown .dropdown-trigger:focus {
  background: transparent;
  border: none;
  box-shadow: none;
}
.search-field .custom-dropdown.inline-dropdown .dropdown-menu {
  min-width: 15rem;
}
@media (max-width: 768px) {
  .custom-dropdown .dropdown-menu {
    max-height: 18.75rem;
  }
  .custom-dropdown .dropdown-option {
    padding: 0.875rem 1rem;
  }
}
/* Dropdown loading */
.dropdown-loading {
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.dropdown-loading .spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary-600);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}
@keyframes dropdownSlideIn {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   9. Skeleton / Shimmer (restaurant cards)
   ============================================ */
.restaurant-card-skeleton {
  background: var(--color-background);
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: skeletonFadeIn 0.3s ease;
}
.restaurant-card-skeleton .skeleton-image {
  width: 100%;
  height: 15rem;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.restaurant-card-skeleton .skeleton-content { padding: 1.25rem; }
.restaurant-card-skeleton .skeleton-title {
  height: 1.5rem; width: 70%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  animation: shimmer 1.5s infinite;
}
.restaurant-card-skeleton .skeleton-rating {
  height: 1.25rem; width: 40%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  animation: shimmer 1.5s infinite 0.1s;
}
.restaurant-card-skeleton .skeleton-meta {
  height: 1rem; width: 60%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  animation: shimmer 1.5s infinite 0.2s;
}
.restaurant-card-skeleton .skeleton-description {
  height: 1rem; width: 100%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  animation: shimmer 1.5s infinite 0.3s;
}
.restaurant-card-skeleton .skeleton-description.short {
  width: 80%;
  margin-bottom: 1rem;
}
.restaurant-card-skeleton .skeleton-button {
  height: 2.75rem; width: 100%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  border-radius: var(--radius-lg);
  animation: shimmer 1.5s infinite 0.4s;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes skeletonFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Infinite scroll sentinel */
.infinite-scroll-sentinel {
  width: 100%;
  margin: 2rem 0;
}
.infinite-scroll-loading {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}
.infinite-scroll-loading .spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid var(--color-border);
  border-top-color: var(--color-primary-600);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
  margin-right: 0.75rem;
}

/* ============================================
   10. Sticky Search Bar
   ============================================ */
.sticky-search-bar {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 998;
  transform: translateY(-150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}
.sticky-search-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-search-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .sticky-search-container {
    padding: 0 2rem;
  }
}
.sticky-search-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1rem;
  animation: stickySlideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .sticky-search-card {
    padding: 1rem 1.25rem;
  }
}
@keyframes stickySlideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.sticky-search-card--branded {
  background: rgba(37, 99, 235, 0.02);
  border-color: rgba(37, 99, 235, 0.1);
}
.sticky-search-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 500;
  min-height: 2.75rem;
}
@media (min-width: 768px) {
  .sticky-search-toggle {
    display: none;
  }
}
.sticky-search-toggle .toggle-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-search-toggle .toggle-label i {
  color: #2563eb;
  font-size: 1.125rem;
}
.sticky-search-toggle .toggle-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e40af;
  color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}
.sticky-search-toggle .toggle-icon.expanded {
  transform: rotate(180deg);
}
.sticky-search-fields {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.sticky-search-fields.expanded {
  display: flex;
  animation: expandFields 0.3s ease;
}
@media (min-width: 768px) {
  .sticky-search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 0.75rem;
    margin-top: 0;
    align-items: center;
  }
}
@keyframes expandFields {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}
.sticky-search-field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sticky-search-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.sticky-search-field label i {
  color: #2563eb;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .sticky-search-field label {
    display: none;
  }
}
.sticky-search-field input.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.2s ease;
  min-height: 2.75rem;
}
.sticky-search-field input.search-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.sticky-search-field input.search-input::placeholder {
  color: #94a3b8;
}
.sticky-search-field .custom-dropdown {
  width: 100%;
}
.sticky-search-field .custom-dropdown .dropdown-trigger {
  width: 100%;
  min-height: 2.75rem !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  background: #ffffff !important;
  font-size: 1rem !important;
  color: #1e293b !important;
  transition: all 0.2s ease !important;
}
.sticky-search-field .custom-dropdown .dropdown-trigger:hover {
  border-color: #2563eb !important;
}
.sticky-search-field .custom-dropdown .dropdown-trigger:focus,
.sticky-search-field .custom-dropdown .dropdown-trigger.active,
.sticky-search-field .custom-dropdown .dropdown-trigger[aria-expanded=true] {
  outline: none !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}
.sticky-search-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}
.sticky-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.sticky-search-button:active {
  transform: translateY(0);
}
.sticky-search-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2), 0 4px 12px rgba(102, 126, 234, 0.25);
}
.sticky-search-button i {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sticky-search-button {
    width: auto;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
  }
}
/* Sticky voice button */
.sticky-voice-button {
  width: auto;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem !important;
  background: #ffffff !important;
  color: #2563eb !important;
  border: 2px solid #2563eb !important;
  border-radius: 0.75rem !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.sticky-voice-button i {
  font-size: 1.125rem !important;
}
.sticky-voice-button:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(98, 83, 216, 0.3);
}
.sticky-voice-button:active, .sticky-voice-button.listening {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: #ffffff !important;
  animation: voicePulse 1.5s infinite;
  transform: none !important;
}
.sticky-voice-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
@media (min-width: 768px) {
  .sticky-voice-button {
    margin-left: 0.75rem;
  }
}
@keyframes voicePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.sticky-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sticky-search-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .sticky-search-overlay {
    display: none;
  }
}
/* Sticky expand button */
button.sticky-expand-btn.sticky-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f59e0b !important;
  background: #f59e0b !important;
  border: none;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
button.sticky-expand-btn.sticky-expand-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
button.sticky-expand-btn.sticky-expand-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
button.sticky-expand-btn.sticky-expand-btn.active i {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  button.sticky-expand-btn.sticky-expand-btn {
    display: none;
  }
}
/* Sticky advanced filters */
.sticky-advanced-filters {
  display: none;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 1rem;
  animation: stickySlideDown 0.3s ease;
}
.sticky-advanced-filters.expanded {
  display: block;
}
@media (max-width: 768px) {
  .sticky-advanced-filters {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
}
.sticky-filters-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.sticky-filters-row .sticky-search-field {
  flex: 1 1 auto;
  min-width: 150px;
  max-width: 280px;
}
.sticky-filters-row .sticky-search-field .custom-dropdown {
  width: 100%;
}
@media (max-width: 767px) {
  .sticky-filters-row {
    gap: 0.5rem;
  }
  .sticky-filters-row .sticky-search-field {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }
}
.sticky-quick-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0.75rem;
}
/* Quick filter icon buttons */
button.quick-filter-icon.quick-filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #666 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
button.quick-filter-icon.quick-filter-icon i {
  font-size: 1.1rem;
  color: #666 !important;
}
button.quick-filter-icon.quick-filter-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem;
  background: #1e293b;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
  pointer-events: none;
}
button.quick-filter-icon.quick-filter-icon:hover::after,
button.quick-filter-icon.quick-filter-icon:focus::after {
  opacity: 1;
  visibility: visible;
}
button.quick-filter-icon.quick-filter-icon:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  color: #667eea;
}
button.quick-filter-icon.quick-filter-icon.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}
button.quick-filter-icon.quick-filter-icon.active i {
  color: #ffffff !important;
}
@media (max-width: 768px) {
  button.quick-filter-icon.quick-filter-icon {
    width: 34px;
    height: 34px;
  }
  button.quick-filter-icon.quick-filter-icon i {
    font-size: 0.85rem;
  }
}

/* ============================================
   11. Nav Language Selector
   ============================================ */
.nav-language-selector {
  position: relative;
  z-index: 1003;
  display: flex;
  align-items: center;
}
.nav-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  min-height: 40px;
  background: #2d3240;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  color: #ffffff;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav-lang__trigger:hover {
  background: #3a4050;
  border-color: rgba(255, 255, 255, 0.35);
}
.nav-lang__trigger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-lang__globe {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.nav-lang__current {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-lang__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-lang__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  max-width: 300px;
  max-height: 320px;
  overflow-y: auto;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 0.25rem 0;
  margin: 0;
  list-style: none;
  z-index: 1004;
}
.nav-lang__dropdown--open {
  display: block;
  animation: navLangFadeIn 0.15s ease-out;
}
.nav-lang__dropdown::-webkit-scrollbar { width: 4px; }
.nav-lang__dropdown::-webkit-scrollbar-track { background: transparent; }
.nav-lang__dropdown::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  .nav-lang__dropdown--open { animation: none; }
}
@keyframes navLangFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-lang__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  list-style: none;
}
.nav-lang__option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.nav-lang__option:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;
  border-radius: 0.375rem;
}
.nav-lang__option--active {
  color: #ffffff;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.2);
}
.nav-lang__option-name {
  flex: 1;
  min-width: 0;
}
.nav-lang__check {
  flex-shrink: 0;
  margin-left: 0.5rem;
  color: #a5b4fc;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .nav-language-selector { order: 2; }
  .nav-lang__dropdown { right: 0; left: auto; }
}
@media (max-width: 768px) {
  .nav-lang__trigger { padding: 8px 12px; font-size: 0.8125rem; gap: 6px; }
  .nav-lang__chevron { display: none; }
}

/* ============================================
   12. Landing Page — body.landing-page scope
   ============================================ */
body.landing-page {
  font-family: "Inter", -apple-system, sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* --- Navbar --- */
body.landing-page .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
body.landing-page .navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
body.landing-page .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.landing-page .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
body.landing-page .nav-brand i {
  color: #B8960F;
  font-size: 1.5rem;
}
body.landing-page .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
body.landing-page .nav-hamburger .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
body.landing-page .nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.landing-page .nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
body.landing-page .nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
body.landing-page .nav-menu {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  padding: 0 !important;
  flex: initial !important;
}
body.landing-page .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
body.landing-page .nav-link:hover {
  color: #ffd700;
}
body.landing-page .nav-business {
  background: transparent;
  color: white;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md, 8px);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
body.landing-page .nav-business:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

/* --- Video Hero --- */
body.landing-page .video-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  margin-top: 60px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.landing-page .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
body.landing-page .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.landing-page .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
  z-index: 1;
}
body.landing-page .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}
body.landing-page .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
body.landing-page .hero-title .highlight {
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}
body.landing-page .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: none !important;
}

/* --- Hero Search --- */
body.landing-page .hero-search {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}
body.landing-page .search-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
body.landing-page .search-row:last-child {
  margin-bottom: 0;
  align-items: center;
}
body.landing-page .search-row--actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
body.landing-page .search-row--actions .search-button {
  flex: 1;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  border: none !important;
  padding: 0.75rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.landing-page .search-row--actions .search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
body.landing-page .search-field {
  flex: 1;
  min-width: 140px;
  position: relative;
}
body.landing-page .search-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.landing-page .search-input,
body.landing-page .search-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  color: #1a1a1f;
}
body.landing-page .search-input:focus,
body.landing-page .search-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
body.landing-page .search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  margin-top: 10px;
}
body.landing-page .search-field:has(.search-select) .search-icon {
  right: 1.6rem;
}
body.landing-page input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 2.5rem;
  height: 100%;
  cursor: pointer;
}
body.landing-page .search-field:has(input[type=date]) .search-icon {
  right: 0.8rem;
  pointer-events: none;
  margin-top: 8px;
}
body.landing-page .search-row .search-field .custom-dropdown .dropdown-trigger {
  background: white !important;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  height: auto !important;
  min-height: 45px !important;
}
body.landing-page .search-row .search-field .custom-dropdown .dropdown-trigger:hover {
  border-color: #667eea !important;
}
body.landing-page .search-row .search-field .custom-dropdown .dropdown-trigger:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}
body.landing-page .search-button {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  border: none !important;
  padding: 0.75rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin-top: 0 !important;
  height: 48px !important;
  font-size: 0.95rem !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}
body.landing-page .search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* --- Voice Search --- */
body.landing-page .voice-search-button {
  background: white !important;
  color: var(--color-primary, #6253D8) !important;
  border: 2px solid var(--color-primary, #6253D8) !important;
  padding: 0.75rem !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  margin-left: 0.75rem !important;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
}
body.landing-page .voice-search-button i {
  font-size: 1.1rem !important;
}
body.landing-page .voice-search-button:hover {
  background: var(--color-primary, #6253D8) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(98, 83, 216, 0.3);
}
body.landing-page .voice-search-button:active,
body.landing-page .voice-search-button.listening {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  animation: pulse 1.5s infinite;
  transform: none !important;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- Quick Filters --- */
body.landing-page .hero-quick-filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
}
body.landing-page .hero-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #334155;
  min-height: 44px;
}
body.landing-page .hero-filter-chip i {
  font-size: 0.9rem;
  color: #667eea;
}
body.landing-page .hero-filter-chip:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
  color: #334155;
}
body.landing-page .hero-filter-chip[aria-pressed="true"],
body.landing-page .hero-filter-chip.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}
body.landing-page .hero-filter-chip[aria-pressed="true"] i,
body.landing-page .hero-filter-chip.active i {
  color: white;
}

/* --- Section Separator & Waves --- */
body.landing-page .section-separator {
  height: 80px;
  position: relative;
  overflow: hidden;
}
body.landing-page .wave-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
}
body.landing-page .wave-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 0%, 100% 30%, 100% 100%, 0% 100%);
}

/* --- Features Section --- */
body.landing-page .features-section {
  padding: 100px 2rem;
  background: #ffffff;
  position: relative;
}
body.landing-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
body.landing-page .section-label {
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
body.landing-page .section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1f;
  margin-bottom: 1rem;
}
body.landing-page .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
body.landing-page .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1920px;
  margin: 0 auto;
}
body.landing-page .feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
body.landing-page .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}
body.landing-page .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}
body.landing-page .feature-card h3 {
  font-size: 1.3rem;
  color: #1a1a1f;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
body.landing-page .feature-card p {
  color: #666;
  line-height: 1.6;
}
body.landing-page .feature-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
body.landing-page .feature-card--coming-soon {
  position: relative;
}
body.landing-page .feature-card--coming-soon .feature-icon {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
}

/* --- Restaurants Section --- */
body.landing-page .restaurants-section {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #1a1a1f, #2d2d3a);
  position: relative;
}
body.landing-page .restaurants-section .section-title {
  color: #ffffff;
}
body.landing-page .restaurants-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
body.landing-page .restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1900px;
  margin: 0 auto;
}
body.landing-page .restaurant-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
body.landing-page .restaurant-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
body.landing-page .restaurant-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
body.landing-page .restaurant-content {
  padding: 1.5rem;
}
body.landing-page .restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}
body.landing-page .restaurant-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1f;
}
body.landing-page .restaurant-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffd700;
  font-weight: 600;
}
body.landing-page .restaurant-details {
  display: flex;
  gap: 1rem;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
body.landing-page .restaurant-details span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.landing-page .availability-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
body.landing-page .time-slot {
  padding: 0.4rem 0.8rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #667eea;
  transition: all 0.3s ease;
  cursor: pointer;
}
body.landing-page .time-slot:hover {
  background: #667eea;
  color: white;
}

/* --- Reviews Section --- */
body.landing-page .reviews-section {
  padding: 100px 2rem;
  background: #f8f9fa;
  position: relative;
}
body.landing-page .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 1024px) {
  body.landing-page .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}
@media (max-width: 640px) {
  body.landing-page .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
body.landing-page .review-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
body.landing-page .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}
body.landing-page .review-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
body.landing-page .review-card-header--gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}
body.landing-page .review-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
body.landing-page .review-card-icon i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}
body.landing-page .review-card-icon--emoji {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
}
body.landing-page .review-card-icon .cuisine-emoji {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
body.landing-page .review-restaurant-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.landing-page .review-badge-best {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.landing-page .review-card-content {
  padding: 1.5rem;
}
body.landing-page .review-restaurant-info {
  margin-bottom: 1.5rem;
}
body.landing-page .review-restaurant-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1f;
  margin-bottom: 0.5rem;
}
body.landing-page .review-restaurant-meta {
  display: flex;
  gap: 1rem;
  color: #666;
  font-size: 0.9rem;
}
body.landing-page .review-restaurant-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.landing-page .review-aggregate {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
body.landing-page .aggregate-score {
  text-align: center;
  margin-bottom: 1.5rem;
}
body.landing-page .score-number {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}
body.landing-page .score-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
body.landing-page .score-count {
  color: #666;
  font-size: 0.9rem;
}
body.landing-page .review-sources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
body.landing-page .source-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: white;
  border-radius: 10px;
  font-size: 0.85rem;
}
body.landing-page .source-logo {
  width: 20px;
  height: 20px;
}
body.landing-page .source-score {
  font-weight: 700;
  color: #1a1a1f;
}
body.landing-page .source-count {
  color: #666;
  font-size: 0.8rem;
}
body.landing-page .tableflow-native {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid #667eea;
  position: relative;
}
body.landing-page .tableflow-native i {
  color: #667eea;
}
body.landing-page .source-name {
  font-weight: 600;
  color: #667eea;
}
body.landing-page .verified-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #22c55e;
  font-weight: 600;
}

/* --- Featured Review --- */
body.landing-page .featured-review {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
body.landing-page .review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}
body.landing-page .reviewer-info {
  display: flex;
  gap: 0.75rem;
}
body.landing-page .reviewer-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
body.landing-page .reviewer-name {
  font-weight: 600;
  color: #1a1a1f;
  margin-bottom: 0.25rem;
}
body.landing-page .reviewer-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #666;
}
body.landing-page .verified-diner {
  color: #16a34a;
  font-weight: 500;
}
body.landing-page .review-rating {
  color: #ffd700;
  display: flex;
  gap: 0.1rem;
}
body.landing-page .review-text {
  color: #1a1a1f;
  line-height: 1.6;
  font-style: italic;
}
body.landing-page .book-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
body.landing-page .book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
body.landing-page .view-all-btn {
  background: white;
  color: #4f46e5;
  border: 2px solid #4f46e5;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
body.landing-page .view-all-btn:hover {
  background: #667eea;
  color: white;
  transform: translateX(5px);
}

/* --- How It Works --- */
body.landing-page .how-section {
  padding: 100px 2rem;
  background: #ffffff;
}
body.landing-page .steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
body.landing-page .step {
  text-align: center;
  position: relative;
}
body.landing-page .step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
body.landing-page .step h3 {
  font-size: 1.2rem;
  color: #1a1a1f;
  margin-bottom: 0.75rem;
}
body.landing-page .step p {
  color: #666;
  line-height: 1.6;
}
body.landing-page .coming-soon-text {
  color: #F49609;
  font-weight: 600;
}

/* --- CTA Section --- */
body.landing-page .cta-section {
  padding: 150px 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  text-align: center;
}
body.landing-page .cta-content {
  max-width: 800px;
  margin: 0 auto;
}
body.landing-page .cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}
body.landing-page .cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
body.landing-page .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
body.landing-page .btn-cta {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
body.landing-page .btn-cta-primary {
  background: white;
  color: #4f46e5;
}
body.landing-page .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
body.landing-page .btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
body.landing-page .btn-cta-secondary:hover {
  background: white;
  color: #667eea;
}

/* --- Footer --- */
body.landing-page footer {
  background: #0f0f11;
  padding: 3rem 2rem 2rem;
  color: #ffffff;
}
body.landing-page .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}
body.landing-page .footer-section h3 {
  margin-bottom: 1rem;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
}
body.landing-page .footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
body.landing-page .footer-section a:hover {
  color: white;
}
body.landing-page .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

/* --- Footer link button (cookie settings etc.) --- */
.footer-link-button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-link-button:hover {
  color: white;
}

/* ============================================
   13. Responsive — Landing Page
   ============================================ */
@media (max-width: 968px) {
  .search-row {
    flex-direction: column;
  }
  .search-field {
    width: 100%;
  }
  .search-button {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 968px) {
  body.landing-page .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  body.landing-page .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 17, 0.98);
    flex-direction: column;
    padding: 1.5rem 0 !important;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  body.landing-page .nav-menu.active {
    display: flex;
  }
  body.landing-page .nav-menu .nav-link {
    padding: 1.25rem 2rem;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
  }
  body.landing-page .nav-menu .nav-business {
    margin: 1.5rem 2rem;
    width: calc(100% - 4rem);
    text-align: center;
    border-radius: var(--border-radius-md, 8px);
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    white-space: normal;
  }
  .hero-search {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .video-hero {
    height: 100vh;
    min-height: 100vh;
  }
  .hero-search {
    margin: 0 1rem;
    padding: 1rem;
  }
  .restaurants-grid {
    grid-template-columns: 1fr;
  }
  .hero-quick-filters {
    justify-content: center;
  }
  .features-section {
    display: none;
  }
}

/* ============================================
   14. Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* a11y: footer copyright text was overridden to #64748b (4.13:1 on the near-black
   footer). Restore the footer-bottom's intended light tone (WCAG AA). 2026-06-05 */
body.landing-page .footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
}
