:root {
  --bg: #fbf6ec;
  --bg-soft: #f3ead7;
  --card: #ffffff;
  --amber: #c9962e;
  --amber-light: #e0ad4a;
  --text: #241c10;
  --text-muted: #7a6c53;
  --border: #e6d9bd;
  --danger: #c0442c;
  --success: #3f8f5c;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  height: 100%;
}
/* Pied de page collé en bas de l'écran même quand le contenu est court :
   body devient une colonne flex, main (ou le premier bloc après le header)
   prend tout l'espace disponible, footer reste toujours en bas. */
body { display: flex; flex-direction: column; min-height: 100vh; }
/* Empêche les sections de page (elles deviennent des enfants flex directs
   de body) de se comprimer verticalement : par défaut un enfant flex peut
   voir son contenu déborder au lieu d'étirer sa propre hauteur, ce qui
   provoquait un chevauchement entre "Nous trouver" et le pied de page. */
body > * { flex-shrink: 0; }
body > footer { margin-top: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: rgba(251,246,236,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 1.4rem; font-weight: 800; display:flex; align-items:center; }
.logo span { color: var(--amber); }
.logo-img { height: 52px; width: auto; display:block; border-radius:50%; }
.nav { display: flex; gap: 20px; font-size: 0.95rem; color: var(--text-muted); align-items: center; }
.nav a:hover { color: var(--amber); }
.cart-button {
  display: flex; align-items: center; gap: 8px; background: var(--amber); color: #fffaf0;
  font-weight: 700; padding: 10px 16px; border-radius: 999px; border: none; cursor: pointer;
}

/* Hero d'accueil : plein écran immersif, fond sombre avec photo bien
   visible (Ken Burns + léger parallax au scroll), rideau d'ouverture au
   chargement, particules flottantes façon vapeur de cuisine, badges de
   réassurance, CTA double et indicateur de scroll animé — la toute
   première impression doit donner faim et donner envie de rester. */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1c150c;
}
.hero-bg {
  position: absolute; inset: -6% -6% -6% -6%;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-kenburns 26s ease-in-out infinite alternate;
  opacity: 0.62;
  filter: saturate(1.15);
}
@keyframes hero-kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -2.5%); }
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 50% 32%, rgba(28,21,12,0.35), rgba(28,21,12,0.86) 68%),
    linear-gradient(180deg, rgba(28,21,12,0.55) 0%, rgba(28,21,12,0.7) 55%, var(--bg) 100%);
}
/* Rideau d'ouverture : deux panneaux qui se retirent au chargement de la
   page, pour une entrée marquée plutôt qu'un simple fondu. Animés en JS
   (animations.js), masqués par défaut si JS/GSAP indisponible. */
.hero-curtain {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  display: none; /* n'apparaît que si GSAP a bien chargé (voir .gsap-ready ci-dessous) : sans JS, jamais de rideau qui pourrait bloquer le contenu */
}
.gsap-ready .hero-curtain { display: flex; }
.hero-curtain-panel { flex: 1; background: #1c150c; }
.hero-particles {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.hero-particle {
  position: absolute; bottom: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,214,178,0.55), rgba(232,214,178,0));
  animation: hero-particle-float linear infinite;
}
@keyframes hero-particle-float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-115vh) translateX(var(--drift, 30px)); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; padding: 100px 20px 40px; max-width: 740px; }
.hero-badge {
  display: inline-block; background: rgba(232,214,178,0.12); color: var(--amber-light);
  border: 1px solid rgba(232,214,178,0.3); padding: 7px 18px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 4.8rem); margin: 0 0 18px; font-weight: 800; letter-spacing: -0.01em;
  color: #fffaf0; text-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.hero h1 span { color: var(--amber-light); }
.hero p { color: rgba(255,250,240,0.82); font-size: 1.18rem; max-width: 580px; margin: 0 auto 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-secondary-light {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  color: #fffaf0; border-color: rgba(255,250,240,0.35);
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.18); }
.hero-trust {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  color: rgba(255,250,240,0.75); font-size: 0.88rem; font-weight: 600;
}
.hero-scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,250,240,0.4); border-radius: 999px;
}
.hero-scrollcue span {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 9px; border-radius: 999px; background: var(--amber-light);
  animation: hero-scrollcue-move 1.7s ease-in-out infinite;
}
@keyframes hero-scrollcue-move {
  0% { top: 7px; opacity: 1; }
  70% { top: 22px; opacity: 0.3; }
  100% { top: 22px; opacity: 0; }
}
@media (max-width: 640px) {
  .hero-content { padding: 90px 20px 30px; }
  .hero-trust { gap: 14px; font-size: 0.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-particle { display: none; }
}

.btn-primary, .btn-submit {
  display: inline-block; background: var(--amber); color: #fffaf0; font-weight: 700;
  padding: 14px 32px; border-radius: 999px; font-size: 1.05rem; border: none; cursor: pointer;
  box-shadow: 0 8px 20px rgba(201,150,46,0.25);
}
.btn-primary:hover, .btn-submit:hover { background: var(--amber-light); }
.btn-submit { width: 100%; padding: 16px; font-weight: 800; }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--text); font-weight: 600;
  padding: 12px 28px; border-radius: 999px; border: 1px solid var(--border); cursor: pointer;
}

.section-title { font-size: 1.8rem; font-weight: 800; margin: 50px 0 24px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--card); color: var(--text-muted); cursor: pointer; font-size: 0.9rem;
  text-decoration: none;
}
.filter-chip.active { background: var(--amber); color: #fffaf0; border-color: var(--amber); font-weight: 700; }

/* 3 produits par ligne sur ordinateur, 2 sur mobile (voir media query plus bas). */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 60px; }
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .grid { gap: 10px; }
  .card-image { height: 110px; }
  .card-body { padding: 10px; }
  .card-body h3 { font-size: 0.95rem; }
  .card-body p { font-size: 0.8rem; min-height: 30px; }
}
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(36,28,16,0.05); }
.card[data-product-card] { cursor: pointer; } /* seules les cartes du menu ouvrent la fiche produit au clic */
.card:hover { border-color: var(--amber); box-shadow: 0 10px 24px rgba(36,28,16,0.09); }
.card-image { width: 100%; height: 160px; background: linear-gradient(135deg, #f3ead7, #ffffff); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card-body h3 { margin: 0 0 6px; font-size: 1.1rem; }
.card-body p { margin: 0 0 14px; color: var(--text-muted); font-size: 0.9rem; min-height: 40px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 800; color: var(--amber); font-size: 1.05rem; }
.btn-add { background: var(--amber); color: #fffaf0; border: none; font-weight: 700; padding: 8px 14px; border-radius: 999px; cursor: pointer; font-size: 0.9rem; }
.badge { display: inline-block; font-size: 0.7rem; padding: 3px 8px; border-radius: 999px; margin-right: 6px; margin-bottom: 8px; color: #fffaf0; font-weight: 700; }
.unavailable { opacity: 0.45; }
.unavailable-label { color: var(--danger); font-weight: 700; font-size: 0.85rem; }

.form-page { padding: 50px 0 80px; max-width: 480px; margin: 0 auto; }
.form-page h1 { text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--card); color: var(--text); font-size: 1rem;
}
.form-note { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 0.9rem; }
.alert-error { background: rgba(192,68,44,0.1); color: var(--danger); border: 1px solid rgba(192,68,44,0.25); }
.alert-success { background: rgba(63,143,92,0.1); color: var(--success); border: 1px solid rgba(63,143,92,0.25); }

.code-input {
  font-size: 2rem; letter-spacing: 12px; text-align: center; font-weight: 800;
}

.cart-item { display: flex; align-items: center; justify-content: space-between; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; margin-bottom: 14px; }
.cart-item-info h4 { margin: 0 0 4px; }
.cart-item-info p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-controls button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-soft); color: var(--text); cursor: pointer; }
.remove-link { color: var(--danger); font-size: 0.85rem; cursor: pointer; }

.cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-top: 30px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-muted); }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 800; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.promo-row { display: flex; gap: 10px; margin-top: 16px; }
.promo-row input { flex: 1; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); color: var(--text); }
.promo-row button { padding: 10px 16px; border-radius: 8px; border: none; background: var(--amber); color: #fffaf0; font-weight: 700; cursor: pointer; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.mode-toggle { display: flex; gap: 10px; margin-bottom: 24px; }
.mode-toggle button { flex: 1; padding: 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); color: var(--text-muted); cursor: pointer; font-weight: 700; }
.mode-toggle button.active { background: var(--amber); color: #fffaf0; border-color: var(--amber); }

.confirmation { text-align: center; padding: 90px 20px; }
.confirmation .check { font-size: 4rem; margin-bottom: 20px; }
.order-number { display: inline-block; background: var(--card); border: 1px solid var(--border); padding: 12px 24px; border-radius: 12px; font-weight: 800; color: var(--amber); margin-bottom: 30px; }

table.admin-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 12px; overflow: hidden; }
table.admin-table th, table.admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
table.admin-table th { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 220px; background: var(--bg-soft); border-right: 1px solid var(--border); padding: 20px; }
.admin-sidebar a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text-muted); margin-bottom: 4px; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--card); color: var(--text); }
.admin-main { flex: 1; padding: 30px; max-width: 1100px; }
.status-pill { padding: 4px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; margin-bottom: 30px; }
.kpi-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.kpi-card .value { font-size: 1.8rem; font-weight: 800; color: var(--amber); }
.kpi-card .label { color: var(--text-muted); font-size: 0.85rem; }

.btn-small { padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); color: var(--text); cursor: pointer; font-size: 0.85rem; }
.btn-danger { color: var(--danger); border-color: rgba(192,68,44,0.25); }
.tag-swatch { display: inline-block; width: 14px; height: 14px; border-radius: 4px; margin-right: 6px; vertical-align: middle; }
.checkbox-list { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-list label { display: flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px; font-size: 0.9rem; }

footer { border-top: 1px solid var(--border); padding: 30px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Animations au scroll (page d'accueil).
   Par défaut (sans JavaScript, ou si GSAP échoue à se charger), tout le
   contenu reste visible : c'est la classe "gsap-ready", posée uniquement
   par animations.js une fois GSAP chargé avec succès, qui active l'état
   "invisible avant animation". Ainsi un visiteur sans JS voit toujours
   la page complète, jamais des sections bloquées à opacity:0. */
.gsap-ready .reveal { opacity: 0; }
.gsap-ready .hero.reveal { opacity: 1; } /* le hero est animé séparément dès l'entrée */
.gsap-ready .grid .card { opacity: 0; }

.section-block { padding: 50px 0; }

/* Galerie photo (page d'accueil) : grille responsive, chaque photo arrive
   d'une direction différente au scroll (voir animations.js / index.php). */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3ead7, #ffffff);
  border: 1px solid var(--border);
  will-change: transform, opacity;
}
.photo-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-gallery-item:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 1 / 2; }
@media (max-width: 900px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .photo-gallery-item:nth-child(3n+1) { grid-row: span 1; aspect-ratio: 1 / 1; }
}

/* À propos */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.about-text { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.about-image {
  background: linear-gradient(135deg, #f3ead7, #ffffff);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Section immersive plein écran : grande photo cinématique qui zoome PUIS
   dézoome légèrement pendant que la section reste "épinglée" à l'écran le
   temps du scroll (comme un effet Apple/Netflix), avant de laisser
   continuer le défilement normal de la page. La hauteur du conteneur
   extérieur (220vh) donne la distance de scroll nécessaire à l'effet ;
   l'intérieur en sticky reste collé à l'écran pendant cette traversée. */
.fullscreen-zoom-section {
  position: relative;
  height: 220vh;
}
.fullscreen-zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.fullscreen-zoom-image {
  position: absolute; inset: -5%;
  will-change: transform;
}
.fullscreen-zoom-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fullscreen-zoom-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,28,16,0.25), rgba(36,28,16,0.6));
}
.fullscreen-zoom-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  will-change: transform, opacity;
}
.fullscreen-zoom-eyebrow {
  color: var(--amber-light); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 14px;
}
.fullscreen-zoom-text h2 {
  color: #fffaf0; font-size: clamp(2rem, 6vw, 4rem); font-weight: 800;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45); margin: 0; line-height: 1.15;
}
.fullscreen-zoom-scrollcue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,250,240,0.75); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fullscreen-zoom-scrollcue::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,250,240,0.9), transparent);
  animation: scrollcue-pulse 1.8s ease-in-out infinite;
}
@keyframes scrollcue-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Défilement horizontal des plats vedettes (accueil), avec effet de zoom
   marqué au passage devant chaque carte pendant le scroll. */
.showcase-scroller {
  overflow: hidden;
  padding: 20px 0 40px;
}
.showcase-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.showcase-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(36,28,16,0.06);
  transition: box-shadow 0.2s ease;
  will-change: transform;
}
.showcase-image {
  width: 100%; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #f3ead7, #ffffff);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-body { padding: 18px; }
.showcase-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.showcase-body p { margin: 0; color: var(--text-muted); font-size: 0.85rem; }
.showcase-price { color: var(--amber); font-weight: 800; margin-top: 10px; display: block; }

/* Carrousel d'avis */
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-carousel::before, .reviews-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.reviews-carousel::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.reviews-carousel::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.reviews-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.review-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; width: 320px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(36,28,16,0.05);
}
.review-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 14px; min-height: 80px; }
.review-author { color: var(--text-muted); font-size: 0.85rem; font-weight: 700; margin: 0; }

/* Bloc livraison */
.delivery-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.delivery-btn {
  display: inline-block; padding: 16px 32px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  font-weight: 700; font-size: 1rem; transition: border-color 0.15s ease, color 0.15s ease;
  box-shadow: 0 4px 14px rgba(36,28,16,0.05);
}
.delivery-btn:hover { border-color: var(--amber); color: var(--amber); }

/* Bloc Click & Collect / WhatsApp */
.order-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.order-option-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: 0 6px 20px rgba(36,28,16,0.06); }
.order-option-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.order-option-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; }

/* Newsletter */
.newsletter-box {
  background: linear-gradient(135deg, #f3ead7, #fbf6ec);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 18px auto 0; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--text); }
.newsletter-form button { padding: 12px 24px; border-radius: 999px; border: none; background: var(--amber); color: #fffaf0; font-weight: 700; cursor: pointer; }

/* Contact (bloc utilisé sur la page Contact dédiée) */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 4px 16px rgba(36,28,16,0.05); }
.contact-card h3 { margin: 0 0 10px; color: var(--amber); font-size: 1rem; }
.contact-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* "Nous trouver" (page d'accueil) : bandeau immersif sombre pleine largeur,
   carte à gauche, infos pratiques en cartes à droite. */
.find-us {
  background: linear-gradient(155deg, #241c10 0%, #3a2c17 55%, #241c10 100%);
  padding: 70px 0 80px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.find-us::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,150,46,0.25), transparent 70%);
  pointer-events: none;
}
.find-us-inner { position: relative; }
.find-us-header { max-width: 560px; margin-bottom: 40px; }
.find-us-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 700; color: var(--amber-light);
}
.find-us-lead { color: rgba(255,250,240,0.72); font-size: 1.05rem; margin-top: 12px; line-height: 1.6; }
.find-us-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: stretch; }
.find-us-map { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.find-us-map .map-embed { height: 100%; min-height: 340px; }
.find-us-cards { display: flex; flex-direction: column; gap: 16px; }
.find-us-card {
  background: rgba(255,250,240,0.06);
  border: 1px solid rgba(255,250,240,0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.find-us-card:hover {
  background: rgba(255,250,240,0.1);
  border-color: rgba(201,150,46,0.4);
  transform: translateY(-3px);
}
.find-us-icon { font-size: 1.6rem; line-height: 1; margin-top: 2px; }
.find-us-card h3 { margin: 0 0 6px; color: #fffaf0; font-size: 1rem; }
.find-us-card p { margin: 0; color: rgba(255,250,240,0.72); font-size: 0.9rem; line-height: 1.5; }
.find-us-card p a { color: var(--amber-light); }
.find-us-link { display: inline-block; margin-top: 8px; color: var(--amber-light); font-size: 0.85rem; font-weight: 700; }
.find-us-link:hover { text-decoration: underline; }
.map-embed { border-radius: 16px; overflow: hidden; background: var(--bg-soft); }
.map-embed iframe { display: block; }
@media (max-width: 860px) {
  .find-us-grid { grid-template-columns: 1fr; }
  .find-us-map .map-embed { min-height: 260px; }
}

/* Pages À propos / Contact : hero réduit, sans le grand bandeau plein écran */
.hero-inner { padding: 60px 20px 40px; }
.hero-inner h1 { font-size: 2.4rem; }
.hero-inner p { max-width: 620px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.value-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 22px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(36,28,16,0.1); }
.value-icon { font-size: 2.1rem; margin-bottom: 12px; }
.value-card h3 { margin: 0 0 8px; font-size: 1.02rem; }
.value-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* Page Contact dédiée */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: stretch; }
.contact-info-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 34px 30px; box-shadow: 0 8px 24px rgba(36,28,16,0.06);
}
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-row:last-of-type { margin-bottom: 26px; }
.contact-info-icon { font-size: 1.5rem; margin-top: 2px; }
.contact-info-row h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-row p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.contact-map-card { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(36,28,16,0.06); min-height: 340px; }
.map-embed-tall { height: 100%; min-height: 340px; }
@media (max-width: 860px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-map-card { min-height: 280px; }
}

/* Page Mentions légales */
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); line-height: 1.7; margin: 0 0 6px; }
.legal-content a { color: var(--amber); text-decoration: underline; }

/* Navigation secondaire (À propos / Contact) : un peu plus discrète que
   Notre Carte, pour garder la hiérarchie visuelle de la nav. */
.nav-secondary { opacity: 0.85; font-size: 0.9rem; }

/* Pied de page enrichi */
.site-footer { background: #1c150c; color: rgba(255,250,240,0.65); padding: 50px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 36px; }
.footer-brand .logo-img { height: 44px; border-radius: 50%; }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 240px; margin: 10px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fffaf0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 4px; }
.footer-col a, .footer-text { color: rgba(255,250,240,0.65); font-size: 0.88rem; line-height: 1.5; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,250,240,0.1);
  padding: 18px 20px; display: flex; justify-content: center; gap: 24px;
  font-size: 0.8rem; flex-wrap: wrap; text-align: center;
}
.footer-bottom a { color: rgba(255,250,240,0.65); }
.footer-bottom a:hover { color: var(--amber-light); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

/* Modal produit (menu) */
.product-modal-overlay {
  position: fixed; inset: 0; background: rgba(36,28,16,0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 20px;
}
.product-modal-overlay.open { display: flex; }
.product-modal {
  background: var(--card); border-radius: 22px; max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(36,28,16,0.25);
}
.product-modal-image { width: 100%; height: 220px; overflow: hidden; background: linear-gradient(135deg, #f3ead7, #ffffff); border-radius: 22px 22px 0 0; }
.product-modal-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-modal-body { padding: 26px; }
.product-modal-body h3 { margin: 0 0 8px; font-size: 1.3rem; }
.product-modal-body p.desc { color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.product-modal-price { font-size: 1.4rem; font-weight: 800; color: var(--amber); margin-bottom: 20px; display: block; }
.product-modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.product-modal-wrapper { position: relative; }

/* Options de produit dans la modal (ex: Saveur, Taille) */
.option-group { margin-bottom: 18px; }
.option-group h4 { margin: 0 0 10px; font-size: 0.95rem; }
.option-required { color: var(--danger); }
.option-choices { display: flex; flex-direction: column; gap: 8px; }
.option-choice {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg-soft); cursor: pointer; font-size: 0.92rem;
}
.option-choice input { width: auto; }

/* Modal panier */
.cart-modal-overlay {
  position: fixed; inset: 0; background: rgba(36,28,16,0.55);
  display: none; align-items: flex-start; justify-content: flex-end;
  z-index: 210; padding: 0;
}
.cart-modal-overlay.open { display: flex; }
.cart-modal {
  background: var(--card); width: 100%; max-width: 440px; height: 100vh;
  overflow-y: auto; box-shadow: -18px 0 50px rgba(36,28,16,0.2);
  display: flex; flex-direction: column;
}
.cart-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--card); z-index: 2;
}
.cart-modal-header h2 { margin: 0; font-size: 1.3rem; }
.cart-modal-body { padding: 20px 24px 30px; flex: 1; }
@media (max-width: 520px) {
  .cart-modal { max-width: 100%; }
}
