/* Icônes Contact & Localisation */
.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--brand-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
/*
 * Styles CSS - Bar La Fierté Restaurant
 * Site vitrine moderne, responsif et accessible
 * Basé sur la charte graphique existante avec améliorations UX/UI
 */

/* ========================================
   CUSTOM PROPERTIES - Variables CSS
   ======================================== */
:root {
  /* Palette de couleurs principale */
  --brand-gold: #d4af37;
  --brand-gold-light: #e6c866;
  --brand-gold-dark: #b8941f;
  --brand-black: #2c2c2c;
  --brand-cream: #faf8f3;
  --brand-cream-light: #fefcf9;
  
  /* CTA et actions */
  --cta-green: #4caf50;
  --cta-green-hover: #45a049;
  --cta-green-dark: #388e3c;
  
  /* MODE LIGHT (par défaut) */
  /* Textes - Contraste optimisé WCAG AAA */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #6a6a6a;
  --text-light: #8a8a8a;
  --text-white: #ffffff;
  
  /* Backgrounds - Palette douce et chaleureuse */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f7f4;
  --bg-tertiary: #f3f0ec;
  --bg-accent: #fff9f0;
  --bg-hover: #fef8f1;
  --bg-overlay: rgba(26, 26, 26, 0.75);
  
  /* Cartes et surfaces */
  --surface-primary: #ffffff;
  --surface-secondary: #fdfcfb;
  --surface-raised: #ffffff;
  
  /* Bordures */
  --border-light: #e8e4df;
  --border-medium: #d4cec4;
  --border-strong: #b8b0a3;
  
  /* Ombres - Douces et naturelles */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
  
  /* Liens et interactions */
  --link-primary: #2563eb;
  --link-hover: #1d4ed8;
  --link-visited: #7c3aed;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', roboto, oxygen, ubuntu, cantarell, sans-serif;
  --font-heading: 'Playfair Display', georgia, serif;
  --font-logo: 'Dancing Script', cursive;
  
  /* Espacements */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 0.75rem;  /* 12px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 50px;
  
  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

/* ========================================
   RESET ET BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--space-md);
  color: var(--text-primary);
  transition: color 0.3s ease;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 var(--space-md);
}

a {
  color: var(--link-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: var(--link-hover);
}

/* ========================================
   LAYOUT ET CONTAINERS
   ======================================== */
.container {
  max-width: var(--bp-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

/* Grid système */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Flexbox utilitaires */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ========================================
   TOPBAR
   ======================================== */
.topbar {
  background-color: var(--brand-black);
  color: var(--text-white);
  padding: var(--space-sm) 0;
  font-size: 0.875rem;
}

/* Topbar adapté au mode dark */
[data-theme="dark"] .topbar,
.theme-dark .topbar {
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-light);
}

.topbar__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.topbar__link {
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color 0.2s ease;
}

.topbar__link:hover {
  color: var(--brand-gold-light);
}

/* ========================================
   HEADER ET NAVIGATION
   ======================================== */
.header {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-medium);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-gold);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.nav__link {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--brand-gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-gold);
  transition: width 0.2s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   BOUTONS ET CTA
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 48px; /* Accessibilité tactile */
}

.btn--primary {
  background-color: var(--cta-green);
  color: var(--text-white);
}

.btn--primary:hover {
  background-color: var(--cta-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}

.btn--secondary:hover {
  background-color: var(--brand-gold);
  color: var(--text-white);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn--outline:hover {
  background-color: var(--text-primary);
  color: var(--text-white);
  border-color: var(--text-primary);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* Boutons d'action flottants */
.floating-cta {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.floating-cta .btn {
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius-full);
  width: 60px;
  height: 60px;
  padding: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-light) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white-black);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CARDS ET COMPOSANTS
   ======================================== */
.card {
  background-color: var(--surface-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--surface-raised);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-weight: 600;
}

.card__content {
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

/* ========================================
   SECTIONS SPÉCIFIQUES
   ======================================== */

/* Bandeau promotion */
.promo-banner {
  background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-light));
  color: #222;
  text-align: center;
  padding: var(--space-lg) 0;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .promo-banner,
.theme-dark .promo-banner {
  background: linear-gradient(45deg, var(--brand-gold-dark), var(--brand-gold));
  color: #fff;
}

/* Zone de livraison */
.delivery-zones {
  background-color: var(--bg-secondary);
}

.delivery-zones__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.delivery-zones__item {
  background-color: var(--bg-primary);
  padding: var(--space-md);
  text-align: center;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-light);
  font-weight: 500;
}

/* Contact et carte */
.btn--primary {
  background-color: var(--cta-green);
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--cta-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}
.btn--secondary {
  background-color: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}
.btn--secondary:hover {
  background-color: var(--brand-gold);
  color: #222;
}
.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}
.btn--outline:hover {
  background-color: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}
[data-theme="dark"] .btn--primary,
.theme-dark .btn--primary {
  background-color: var(--cta-green);
  color: #222;
}
[data-theme="dark"] .btn--primary:hover,
.theme-dark .btn--primary:hover {
  background-color: var(--cta-green-hover);
  color: #222;
}
[data-theme="dark"] .btn--secondary,
.theme-dark .btn--secondary {
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}
[data-theme="dark"] .btn--secondary:hover,
.theme-dark .btn--secondary:hover {
  background-color: var(--brand-gold);
  color: #222;
}
[data-theme="dark"] .btn--outline,
.theme-dark .btn--outline {
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}
[data-theme="dark"] .btn--outline:hover,
.theme-dark .btn--outline:hover {
  background-color: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}
/* Contact & Localisation Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

/* Pour forcer exactement 4 colonnes sur desktop */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 2 colonnes sur tablette */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 colonne sur mobile */
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  border-color: var(--brand-gold);
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--brand-gold-dark);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  height: 100%;
  min-height: 400px;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--surface-primary);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background-color: var(--surface-raised);
}

/* Amélioration du placeholder en mode dark */
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--brand-black);
  color: var(--text-white);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-medium);
}

/* Footer adapté au mode dark */
[data-theme="dark"] .footer,
.theme-dark .footer {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-top: 1px solid var(--border-medium);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__section h3 {
  color: var(--brand-gold);
  margin-bottom: var(--space-md);
}

/* Liens footer en mode dark */
[data-theme="dark"] .footer a,
.theme-dark .footer a {
  color: var(--brand-gold-light);
}

[data-theme="dark"] .footer a:hover,
.theme-dark .footer a:hover {
  color: var(--brand-gold);
}

.footer__link {
  color: var(--text-white);
  display: block;
  margin-bottom: var(--space-sm);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--brand-gold-light);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--bg-accent);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--brand-gold);
  color: var(--text-white);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
}

/* ========================================
   MENU PAGE SPÉCIFIQUE
   ======================================== */
.menu-filters {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================
   MENU PAGE - HERO
   ======================================== */
.menu-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.menu-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.menu-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: patternFloat 20s ease-in-out infinite;
}

.menu-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
}

.menu-hero__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--brand-gold);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
}

.menu-hero__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-light));
}
[data-theme="dark"] .menu-hero__badge,
.theme-dark .menu-hero__badge {
  color: #fff;
  background: linear-gradient(45deg, var(--brand-gold-dark), var(--brand-gold));
}

.menu-hero__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

/* Statistiques du menu */
.menu-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.menu-stat {
  text-align: center;
}

.menu-stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.menu-stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   MENU CONTROLS
   ======================================== */
.menu-controls {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  align-items: center;
  padding: var(--space-lg);
  background: var(--surface-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

/* Recherche */
.menu-search {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.menu-search__icon {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.menu-search__input {
  width: 100%;
  padding: var(--space-md) var(--space-md) var(--space-md) 45px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.menu-search__input:focus {
  outline: none;
  border-color: var(--brand-gold);
}

.menu-search__clear {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.menu-search__clear:hover {
  background: var(--bg-accent);
  color: var(--text-primary);
}

/* Tri */
.menu-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.menu-sort__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.menu-sort__select {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.875rem;
}

/* Toggle Vue */
.menu-view-toggle {
  display: flex;
  gap: var(--space-xs);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.menu-view-btn {
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-view-btn:hover {
  background: var(--bg-hover);
}

.menu-view-btn.active {
  background: var(--brand-gold);
  color: white;
}

/* Résultats de recherche */
.search-results {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg-accent);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--brand-gold);
}

.search-results__text {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

/* ========================================
   MENU FILTERS
   ======================================== */
.menu-hero__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-light));
}
[data-theme="dark"] .menu-hero__badge,
.theme-dark .menu-hero__badge {
  color: #fff;
  background: linear-gradient(45deg, var(--brand-gold-dark), var(--brand-gold));
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}


.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #fffbe7;
  border: 2px solid var(--brand-gold);
  border-radius: 0.75rem;
  color: var(--brand-gold-dark);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  position: relative;
  min-width: 110px;
  outline: none;
}
.filter-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--brand-gold-light), 0 2px 8px rgba(212,175,55,0.10);
  border-color: var(--brand-gold-dark);
}
.filter-btn__icon {
  font-size: 1.35rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}
.filter-btn__text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.filter-btn__count {
  background: var(--brand-gold);
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  border-radius: 0.5em;
  padding: 0.1em 0.6em;
  margin-left: 0.5em;
  box-shadow: 0 1px 4px rgba(212,175,55,0.10);
  display: inline-block;
}
.filter-btn.active,
.filter-btn[aria-selected="true"] {
  background: linear-gradient(90deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
  color: #fff;
  border-color: var(--brand-gold-dark);
  box-shadow: 0 4px 16px rgba(212,175,55,0.18);
  z-index: 1;
}
.filter-btn.active .filter-btn__count,
.filter-btn[aria-selected="true"] .filter-btn__count {
  background: #fff;
  color: var(--brand-gold-dark);
  font-weight: 800;
}
.filter-btn:not(.active):hover,
.filter-btn:not([aria-selected="true"]):hover {
  background: #fffde7;
  border-color: var(--brand-gold-light);
  color: var(--brand-gold-dark);
  box-shadow: 0 2px 12px rgba(212,175,55,0.13);
}
[data-theme="dark"] .filter-btn {
  background: #2c2c1a;
  color: var(--brand-gold);
  border-color: var(--brand-gold-dark);
}
[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .filter-btn[aria-selected="true"] {
  background: linear-gradient(90deg, var(--brand-gold-dark) 0%, var(--brand-gold) 100%);
  color: #222;
  border-color: var(--brand-gold);
}
[data-theme="dark"] .filter-btn__count {
  background: var(--brand-gold);
  color: #222;
}
[data-theme="dark"] .filter-btn.active .filter-btn__count,
[data-theme="dark"] .filter-btn[aria-selected="true"] .filter-btn__count {
  background: #222;
  color: var(--brand-gold);
}

/* ========================================
   GRILLE ET SECTIONS DE CATÉGORIES
   ======================================== */
#menu-items {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Mode liste (1 colonne) */
#menu-items.list-view {
  grid-template-columns: 1fr !important;
}

/* Responsive pour les grilles avec max 4 colonnes */

/* Large desktop - 4 colonnes max (≥1400px) */
@media (min-width: 1400px) {
  #menu-items {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Desktop - 3 colonnes (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
  #menu-items {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Tablette - 2 colonnes (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  #menu-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem;
  }
}

/* Mobile - 1 colonne (≤767px) */
@media (max-width: 767px) {
  #menu-items {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

/* ========================================
   MENU ITEM - STYLE DE BASE
   ======================================== */
.menu-item {
  background: var(--surface-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  overflow: hidden;
  height: 100%;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold-light);
}

/* ========================================
   FORMAT SIMPLE (avec menu-item__info)
   Layout vertical : Image placeholder + Contenu
   ======================================== */
.menu-item:has(.menu-item__info) {
  flex-direction: column;
}

/* Créer un conteneur d'image pour les items sans image */
.menu-item:has(.menu-item__info)::before {
  content: '';
  display: block;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.menu-item__info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.menu-item__info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}

.menu-item__info .menu-item__description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.menu-item:has(.menu-item__info) .menu-item__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-top: auto;
}

.menu-item__price span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  margin-left: 0.25rem;
}

/* ========================================
   FORMAT AVEC IMAGE (nouveau format)
   Layout vertical : Image en haut, Contenu en bas
   ======================================== */
.menu-item:has(.menu-item__image) {
  flex-direction: column;
}

/* Image du plat */
.menu-item__image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-item__image-placeholder {
  font-size: 4.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* Tags sur l'image */
.menu-item__tags {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.menu-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  cursor: help;
  line-height: 1;
}

/* Contenu avec image */
.menu-item__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
  flex: 1;
}

.menu-item__content .menu-item__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__price span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  margin-left: 0.25rem;
}

.menu-item__content .menu-item__description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Bouton Commander */
.menu-item__order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--brand-gold);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.menu-item__order-btn:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ========================================
   VUE LISTE
   ======================================== */
#menu-items.list-view .menu-item:has(.menu-item__image) {
  flex-direction: row;
}

#menu-items.list-view .menu-item__image {
  width: 220px;
  height: auto;
  min-height: 200px;
  flex-shrink: 0;
}

/* ========================================
   ÉTATS
   ======================================== */
/* Items cachés (filtrés) */
.menu-item.hidden {
  display: none;
}

/* ========================================
   MODAL DE COMMANDE
   ======================================== */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.order-modal.active {
  display: flex;
}

.order-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.order-modal__content {
  position: relative;
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 2;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  z-index: 3;
}

.order-modal__close:hover {
  background: var(--brand-gold);
  color: white;
  transform: rotate(90deg);
}

.order-modal__header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.order-modal__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.order-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.order-modal__item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.order-modal__item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-gold);
  white-space: nowrap;
}

.order-modal__body {
  padding: 2rem;
}

.order-modal__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.order-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.order-method:hover {
  border-color: var(--brand-gold);
  background: var(--bg-secondary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.order-method__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.order-method[data-method="whatsapp"] .order-method__icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.order-method[data-method="phone"] .order-method__icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--brand-gold);
}

.order-method[data-method="email"] .order-method__icon {
  background: rgba(234, 67, 53, 0.1);
  color: #EA4335;
}

.order-method[data-method="form"] .order-method__icon {
  background: rgba(66, 133, 244, 0.1);
  color: #4285F4;
}

.order-method:hover .order-method__icon {
  transform: scale(1.1);
}

.order-method__content {
  flex: 1;
}

.order-method__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.order-method__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.order-method__arrow {
  font-size: 1.5rem;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
}

.order-method:hover .order-method__arrow {
  color: var(--brand-gold);
  transform: translateX(5px);
}

/* ========================================
   UTILITAIRES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--brand-black);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slider-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-slide__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.slider-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slider-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  animation: slideContentFadeIn 1s ease-out;
}

@keyframes slideContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-slide.active .slider-slide__content {
  animation: slideContentFadeIn 1s ease-out 0.3s both;
}

.slider-slide__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
}

.slider-slide__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-light));
  backdrop-filter: blur(10px);
}
[data-theme="dark"] .slider-slide__badge,
.theme-dark .slider-slide__badge {
  color: #fff;
  background: linear-gradient(45deg, var(--brand-gold-dark), var(--brand-gold));
}

.slider-slide__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Boutons supplémentaires pour le slider */
.btn--gold {
  background: var(--brand-gold);
  color: var(--brand-black);
  border: 2px solid var(--brand-gold);
}

.btn--gold:hover {
  background: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn--success {
  background: var(--cta-green);
  color: var(--text-white);
  border: 2px solid var(--cta-green);
}

.btn--success:hover {
  background: var(--cta-green-hover);
  border-color: var(--cta-green-hover);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn--outline-white:hover {
  background: var(--text-white);
  color: var(--brand-black);
}

/* Navigation du slider */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-nav__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.slider-nav__btn:hover {
  background: rgba(212, 175, 55, 0.9);
  border-color: var(--brand-gold);
  transform: scale(1.1);
}

.slider-nav__btn--prev {
  left: var(--space-xl);
}

.slider-nav__btn--next {
  right: var(--space-xl);
}

/* Indicateurs */
.slider-indicators {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 10;
}

.slider-indicators__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-indicators__dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-indicators__dot.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  width: 40px;
  border-radius: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes */
@media (max-width: 768px) {
  :root {
    --space-3xl: 3rem;
  }
  
  /* Slider responsive */
  .hero-slider {
    min-height: 500px;
    height: 70vh;
  }
  
  .slider-slide__content {
    padding: var(--space-lg);
  }
  
  .slider-slide__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .slider-slide__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  
  .slider-slide__actions {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .slider-nav__btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-nav__btn--prev {
    left: var(--space-md);
  }
  
  .slider-nav__btn--next {
    right: var(--space-md);
  }
  
  .slider-indicators {
    bottom: var(--space-xl);
  }
  
  .header__content {
    padding: var(--space-sm) 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-medium);
    padding: var(--space-lg);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
  .nav.active {
    transform: translateY(-100%);
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-cta {
    bottom: var(--space-md);
    right: var(--space-md);
  }
  
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  
  .delivery-zones__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  /* Menu page responsive */
  .menu-hero {
    padding: var(--space-2xl) 0;
    min-height: 400px;
  }
  
  .menu-stats {
    gap: var(--space-xl);
  }
  
  .menu-stat__number {
    font-size: 2rem;
  }
  
  .menu-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .menu-search {
    min-width: 100%;
  }
  
  .menu-sort {
    width: 100%;
    justify-content: space-between;
  }
  
  .menu-sort__select {
    flex: 1;
  }
  
  .menu-view-toggle {
    justify-content: center;
  }
  
  .menu-filters {
    gap: var(--space-sm);
  }
  
  .filter-btn {
    min-width: 80px;
    padding: var(--space-sm) var(--space-md);
  }
  
  .filter-btn__icon {
    font-size: 1.25rem;
  }
  
  .filter-btn__text {
    font-size: 0.75rem;
  }
  
  /* Le #menu-items garde sa grille responsive définie plus haut */
  
  #menu-items > .card {
    padding: var(--space-xl);
  }
  
  .card .menu-item {
    margin-bottom: var(--space-lg);
  }
  
  /* Format simple tablette */
  .menu-item:has(.menu-item__info) {
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
  }
  
  .menu-item__info h3 {
    font-size: 1.1rem;
  }
  
  .menu-item__info .menu-item__description {
    font-size: 0.9rem;
  }
  
  .menu-item:has(.menu-item__info) .menu-item__price {
    font-size: 1.25rem;
    min-width: 110px;
  }
  
  /* Format avec image tablette */
  .menu-item__image {
    height: 200px;
  }
  
  .menu-item__content {
    padding: 1.5rem;
  }
  
  .menu-item__name {
    font-size: 1.15rem;
  }
  
  .menu-item__content .menu-item__price {
    font-size: 1.3rem;
  }
  
  #menu-items.list-view .menu-item {
    flex-direction: column;
  }
  
  #menu-items.list-view .menu-item__image {
    width: 100%;
    height: 200px;
  }
}

/* Mobiles */
@media (max-width: 480px) {
  /* Slider mobile */
  .hero-slider {
    min-height: 450px;
    height: 60vh;
  }
  
  .slider-slide__content {
    padding: var(--space-md);
  }
  
  .slider-slide__badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
  }
  
  .slider-slide__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
  }
  
  .slider-slide__subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
  
  .slider-slide__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .slider-nav__btn {
    width: 35px;
    height: 35px;
  }
  
  .slider-nav__btn--prev {
    left: var(--space-sm);
  }
  
  .slider-nav__btn--next {
    right: var(--space-sm);
  }
  
  .slider-indicators {
    bottom: var(--space-lg);
    gap: var(--space-sm);
  }
  
  .slider-indicators__dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-indicators__dot.active {
    width: 30px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .topbar__content {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  /* Menu page mobile */
  .menu-hero {
    padding: var(--space-xl) 0;
    min-height: 350px;
  }
  
  .menu-hero__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
  
  .menu-hero__subtitle {
    font-size: 0.9rem;
  }
  
  .menu-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .menu-hero__actions .btn {
    width: 100%;
  }
  
  .menu-stats {
    gap: var(--space-lg);
  }
  
  .menu-stat__number {
    font-size: 1.75rem;
  }
  
  .menu-stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .menu-stat__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  [data-theme="dark"] .menu-stat__number,
  .theme-dark .menu-stat__number {
    color: var(--brand-gold);
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  [data-theme="dark"] .menu-stat__label,
  .theme-dark .menu-stat__label {
    color: var(--text-secondary);
  }
  .filter-btn {
    flex-shrink: 0;
  }
  
  #menu-items {
    gap: var(--space-lg);
  }
  
  #menu-items > .card {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  #menu-items > .card h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
  }
  
  .card .menu-item {
    margin-bottom: var(--space-lg);
  }
  
  /* Format simple responsive */
  .menu-item:has(.menu-item__info) {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-sm);
  }
  
  .menu-item__info {
    gap: 0.5rem;
  }
  
  .menu-item__info h3 {
    font-size: 1.1rem;
  }
  
  .menu-item__info .menu-item__description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .menu-item:has(.menu-item__info) .menu-item__price {
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
    min-width: auto;
    font-size: 1.25rem;
  }
  
  /* Format avec image responsive */
  #menu-items.list-view .menu-item:has(.menu-item__image) {
    flex-direction: column;
  }
  
  #menu-items.list-view .menu-item__image {
    width: 100%;
    height: 200px;
  }
  
  .menu-item__image {
    height: 180px;
  }
  
  .menu-item__content {
    padding: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    width: 100%;
    max-width: 300px;
  }
  
  .btn--large {
    padding: var(--space-md) var(--space-xl);
  }
  
  .menu-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .menu-item {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }
  
  .menu-item__price {
    margin-left: 0;
  }
  
  .delivery-zones__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Très grands écrans */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--brand-black);
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
  }
  [data-theme="dark"] .hero__title,
  .theme-dark .hero__title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }

  [data-theme="dark"] .hero__subtitle,
  .theme-dark .hero__subtitle {
    color: var(--text-secondary);
  }
}

/* Mode dark explicite via classe */
[data-theme="dark"],
.theme-dark {
  /* Palette de fond sombre - Contraste doux pour réduire la fatigue oculaire */
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --bg-accent: #2a2520;
  --bg-hover: #312b26;
  --bg-overlay: rgba(255, 255, 255, 0.05);
  
  /* Textes - Contraste optimal sans éblouissement */
  --text-primary: #f5f5f5;
  --text-secondary: #d1d1d1;
  --text-tertiary: #a8a8a8;
  --text-light: #8a8a8a;
  --text-white: #ffffff;
  
  /* Surfaces élevées */
  --surface-primary: #1a1a1a;
  --surface-secondary: #242424;
  --surface-raised: #2d2d2d;
  
  /* Bordures douces */
  --border-light: #2d2d2d;
  --border-medium: #3d3d3d;
  --border-strong: #4d4d4d;
  
  /* Or plus lumineux en mode sombre */
  --brand-gold: #f5d76e;
  --brand-gold-light: #fce89a;
  --brand-gold-dark: #d4af37;
  
  /* Ombres adaptées au dark mode */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.7);
  
  /* Liens adaptés */
  --link-primary: #60a5fa;
  --link-hover: #93c5fd;
  --link-visited: #a78bfa;
  
  /* CTA Green avec meilleur contraste */
  --cta-green: #4ade80;
  --cta-green-hover: #6ee7a0;
  --cta-green-dark: #22c55e;
  
  /* Crème remplacé par teinte sombre */
  --brand-cream: #1a1a1a;
  --brand-cream-light: #242424;
}

/* Mode auto - suit la préférence système */
@media (prefers-color-scheme: dark) {
  .theme-auto {
    /* Appliquer les mêmes variables que le mode dark */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --bg-accent: #2a2520;
    --bg-hover: #312b26;
    --bg-overlay: rgba(255, 255, 255, 0.05);
    
    --text-primary: #f5f5f5;
    --text-secondary: #d1d1d1;
    --text-tertiary: #a8a8a8;
    --text-light: #8a8a8a;
    
    --surface-primary: #1a1a1a;
    --surface-secondary: #242424;
    --surface-raised: #2d2d2d;
    
    --border-light: #2d2d2d;
    --border-medium: #3d3d3d;
    --border-strong: #4d4d4d;
    
    --brand-gold: #f5d76e;
    --brand-gold-light: #fce89a;
    --brand-gold-dark: #d4af37;
    
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.7);
    
    --link-primary: #60a5fa;
    --link-hover: #93c5fd;
    --link-visited: #a78bfa;
    
    --cta-green: #4ade80;
    --cta-green-hover: #6ee7a0;
    --cta-green-dark: #22c55e;
    
    --brand-cream: #1a1a1a;
    --brand-cream-light: #242424;
  }
}

/* Mode light explicite */
[data-theme="light"],
.theme-light {
  /* Forcer les valeurs light même si le système est en dark */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f7f4;
  --bg-tertiary: #f3f0ec;
  --bg-accent: #fff9f0;
  --bg-hover: #fef8f1;
  --bg-overlay: rgba(26, 26, 26, 0.75);
  
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #6a6a6a;
  --text-light: #8a8a8a;
  
  --surface-primary: #ffffff;
  --surface-secondary: #fdfcfb;
  --surface-raised: #ffffff;
  
  --border-light: #e8e4df;
  --border-medium: #d4cec4;
  --border-strong: #b8b0a3;
  
  --brand-gold: #d4af37;
  --brand-gold-light: #e6c866;
  --brand-gold-dark: #b8941f;
  
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
  
  --link-primary: #2563eb;
  --link-hover: #1d4ed8;
  --link-visited: #7c3aed;
  
  --cta-green: #4caf50;
  --cta-green-hover: #45a049;
  --cta-green-dark: #388e3c;
  
  --brand-cream: #faf8f3;
  --brand-cream-light: #fefcf9;
}

/* Focus visible pour l'accessibilité */
:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

/* Animation de chargement */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Styles d'impression */
@media print {
  .header,
  .floating-cta,
  .topbar {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid var(--border-light);
  }
}
