/* ═══════════════════════════════════════════════════════════
   BOUCHERIE ML — Contrecoeur, QC
   Design : Artisanal · Split Hero · Bleu / Noir / Bleu Marine
   Typographie : Playfair Display + DM Sans
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

:root {
  --creme:        #E8EFF7;
  --creme-light:  #F2F6FB;
  --creme-dark:   #D0DCE9;
  --blanc:        #FFFFFF;
  --noir:         #1A1A1A;
  --noir-deep:    #0D0D0D;
  --noir-soft:    #2C2C2C;
  --gris:         #7A7A7A;
  --gris-clair:   #C8D4E0;
  --or:           #1B3F72;
  --or-dark:      #122C52;
  --or-light:     #2E62A8;
  --bord:         1px solid rgba(26,26,26,0.10);
  --bord-fort:    1px solid var(--noir);
  --font:         'DM Sans', system-ui, sans-serif;
  --font-titre:   'Playfair Display', Georgia, serif;
  --tr:           0.25s ease;
  /* Checkout aliases */
  --marine:       #1B3F72;
  --radius:       14px;
  --ombre:        0 4px 24px rgba(0,0,0,0.07);
  --ombre-fort:   0 8px 40px rgba(0,0,0,0.14);
  --transition:   0.25s ease;
  --gris-light:   #E4ECF4;
  --danger:       #C0392B;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--font); background: var(--creme); color: var(--noir); line-height: 1.6; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ═══ NAVBAR ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.navbar.scrolled {
  background: var(--creme);
  box-shadow: 0 1px 0 rgba(26,26,26,0.08);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.navbar-left  { display: flex; align-items: center; gap: 44px; }
.navbar-right { display: flex; align-items: center; gap: 32px; }

/* Marque */
.navbar-brand {
  display: flex; align-items: center;
  transition: opacity var(--tr);
}
.navbar-brand:hover { opacity: 0.8; }
.navbar-brand::after { display: none !important; }
.navbar-logo {
  height: 36px; width: auto;
  object-fit: contain;
  display: block;
}

/* Logo dans le hero — caché sur desktop, visible sur mobile */
.hero-logo {
  height: 120px; width: auto;
  object-fit: contain;
  display: none;
  margin-bottom: 24px;
}

/* Liens nav */
.navbar-left a:not(.navbar-brand),
.navbar-right a:not(.btn-panier) {
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gris);
  position: relative; padding-bottom: 2px;
  transition: color var(--tr);
}
.navbar-left a:not(.navbar-brand):hover,
.navbar-right a:not(.btn-panier):hover { color: var(--noir); }
.navbar-left a:not(.navbar-brand)::after,
.navbar-right a:not(.btn-panier)::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--or);
  transition: width 0.3s ease;
}
.navbar-left a:not(.navbar-brand):hover::after,
.navbar-right a:not(.btn-panier):hover::after { width: 100%; }

/* Bouton panier */
.btn-panier {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; position: relative;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--noir); border: 1.5px solid var(--noir);
  transition: background var(--tr), color var(--tr);
}
.btn-panier:hover { background: var(--noir); color: var(--creme); }
.panier-count {
  position: absolute; top: -7px; right: -7px;
  background: var(--or); color: var(--blanc);
  width: 19px; height: 19px; border-radius: 50%;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.panier-count.hidden { display: none; }

/* Hamburger */
.btn-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
}
.btn-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--noir); transition: all 0.3s ease;
}
.btn-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-burger.open span:nth-child(2) { opacity: 0; }
.btn-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--creme); padding: 0 48px 24px;
  border-bottom: var(--bord);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px; font-weight: 500; color: var(--noir);
  padding: 14px 0; border-bottom: var(--bord);
  letter-spacing: 0.5px;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--or-dark); font-weight: 600; }

/* ═══ HERO ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: #EBF1F8;
}

/* Image plein écran */
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  z-index: 0;
}

/* Dégradé blanc à gauche — sans blur, text lisible */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(232,239,247,0.72) 0%,
    rgba(232,239,247,0.50) 30%,
    rgba(232,239,247,0.18) 55%,
    transparent 72%
  );
  z-index: 1;
}

/* Contenu texte — à gauche sur le dégradé */
.hero-content {
  position: relative; z-index: 2;
  padding: 140px 48px 120px;
  max-width: 560px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 44px; height: 1.5px; background: var(--or); }
.hero-eyebrow-label {
  font-size: 11px; font-weight: 600; color: var(--noir);
  letter-spacing: 3.5px; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(255,255,255,0.95), 0 0 24px rgba(255,255,255,0.8);
}

/* Titre */
.hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700; line-height: 1.0;
  color: var(--noir); margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.9), 2px 2px 0 rgba(255,255,255,0.6);
}
.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--marine);
  text-shadow: none;
  display: inline-block;
  transform: skewX(-6deg);
  transform-origin: left bottom;
}

/* Description */
.hero-desc {
  font-size: 16px; color: var(--noir-soft);
  max-width: 400px; margin-bottom: 40px;
  font-weight: 500; line-height: 1.8;
  text-shadow: 0 1px 12px rgba(255,255,255,1), 0 0 28px rgba(255,255,255,0.85);
}

/* Boutons */
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--noir); color: var(--creme);
  padding: 16px 40px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: background var(--tr), color var(--tr);
}
.btn-hero-primary:hover { background: var(--or-dark); color: var(--blanc); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--noir); font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1.5px solid var(--noir); padding-bottom: 3px;
  transition: color var(--tr), border-color var(--tr);
}
.btn-hero-secondary:hover { color: var(--or-dark); border-color: var(--or-dark); }

/* Hero bottom bar */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 24px 48px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
}
.hero-hours {
  font-size: 11px; color: var(--noir-soft);
  letter-spacing: 1px; text-transform: uppercase; line-height: 2;
}
.hero-hours strong {
  color: var(--noir); display: block;
  font-size: 10px; letter-spacing: 1.5px; margin-bottom: 2px;
}
.hero-tel {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 600; color: var(--noir);
  display: flex; flex-direction: column; align-items: flex-end;
}
.hero-tel small {
  font-family: var(--font); font-size: 10px; color: var(--or-dark);
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
}
.hero-tel a { color: var(--noir); transition: color var(--tr); }
.hero-tel a:hover { color: var(--or-dark); }

/* ═══ INFO STRIP ═══════════════════════════════════════ */
.info-strip { background: var(--blanc); border-bottom: var(--bord); border-top: var(--bord); }
.info-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.strip-item {
  display: flex; align-items: center; gap: 18px;
  padding: 30px 32px 30px 0; border-right: var(--bord);
}
.strip-item:first-child { padding-left: 0; }
.strip-item + .strip-item { padding-left: 32px; }
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gris-clair);
  display: flex; align-items: center; justify-content: center;
  color: var(--or-dark); flex-shrink: 0;
  border-radius: 50%;
  background: var(--creme-light);
}
.strip-text span {
  display: block; font-size: 12px;
  color: var(--gris); font-weight: 400; margin-bottom: 3px;
}
.strip-text strong { font-size: 14.5px; font-weight: 600; color: var(--noir); }

/* ═══ EYEBROW COMMUN ══════════════════════════════════ */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.eyebrow-line { width: 32px; height: 1.5px; background: var(--or); }
.eyebrow-text {
  font-size: 11px; font-weight: 500; color: var(--or-dark);
  letter-spacing: 3px; text-transform: uppercase;
}
.section-h2 {
  font-family: var(--font-titre);
  font-size: clamp(34px, 4.5vw, 54px); font-weight: 700;
  color: var(--noir); line-height: 1.08; letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15.5px; color: var(--gris); font-weight: 400;
  max-width: 440px; line-height: 1.8;
}

/* ═══ CATÉGORIES ══════════════════════════════════════ */
.section-categories { padding: 100px 0; background: var(--blanc); }
.categories-header { text-align: center; margin-bottom: 60px; }
.categories-header .eyebrow { justify-content: center; }
.categories-header .section-sub { margin: 0 auto; }

.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
}
.categorie-card {
  position: relative; display: block; aspect-ratio: 3/4;
  overflow: hidden; cursor: pointer; background: var(--noir);
}
.categorie-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.5) saturate(0.85);
}
.categorie-card:hover .categorie-img {
  transform: scale(1.06);
  filter: brightness(0.35) saturate(0.7);
}
.categorie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(13,13,13,0.90) 0%,
    rgba(13,13,13,0.25) 50%,
    transparent 100%
  );
}
.categorie-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--or);
  transform: scaleX(0); transition: transform 0.35s ease;
  z-index: 2;
}
.categorie-card:hover::before { transform: scaleX(1); }

.categorie-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; z-index: 1;
}
.categorie-svg { color: var(--or); margin-bottom: 10px; }
.categorie-nom {
  font-family: var(--font-titre);
  font-size: 28px; font-weight: 700;
  color: var(--blanc); margin-bottom: 4px; line-height: 1.1;
}
.categorie-sous { font-size: 12px; color: rgba(255,255,255,0.50); font-weight: 400; }
.categorie-arrow {
  position: absolute; bottom: 24px; right: 18px;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60); transition: all 0.28s ease; z-index: 1;
}
.categorie-card:hover .categorie-arrow {
  background: var(--or); border-color: var(--or);
  color: var(--noir);
}

/* ═══ MENU / PRODUITS ═════════════════════════════════ */
.menu-section { padding: 100px 0; background: var(--creme); }
.menu-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}
/* ── Barre de recherche produits ── */
.recherche-produits {
  position: relative;
  display: flex; align-items: center;
  max-width: 420px;
  margin-bottom: 24px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s;
}
.recherche-produits:focus-within {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(27,63,114,.08);
}
.recherche-icon {
  position: absolute; left: 14px;
  color: #9ca3af; pointer-events: none;
  flex-shrink: 0;
}
.recherche-produits input[type="search"] {
  width: 100%;
  padding: 11px 40px 11px 40px;
  border: none; background: transparent;
  font-size: 14px; color: var(--noir);
  outline: none;
}
.recherche-produits input[type="search"]::-webkit-search-cancel-button { display: none; }
.recherche-clear {
  position: absolute; right: 10px;
  background: none; border: none;
  color: #9ca3af; cursor: pointer;
  font-size: 14px; line-height: 1;
  padding: 4px;
}
.recherche-clear:hover { color: var(--noir); }

.categories-filtres {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1.5px solid var(--noir); width: fit-content; margin-bottom: 44px;
}
.filtre-btn {
  padding: 11px 28px;
  border-right: 1.5px solid var(--noir);
  background: transparent; color: var(--noir);
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  transition: background var(--tr), color var(--tr); cursor: pointer;
}
.filtre-btn:last-child { border-right: none; }
.filtre-btn:hover, .filtre-btn.actif { background: var(--noir); color: var(--creme); }

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2px; background: var(--gris-clair);
}
.produit-card {
  background: var(--blanc); overflow: hidden;
  display: flex; flex-direction: column;
  transition: background var(--tr);
}
.produit-card:hover { background: var(--creme-light); }
.produit-img {
  width: 100%; height: 220px;
  background: var(--creme-light); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.produit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.produit-card:hover .produit-img img { transform: scale(1.04); }
.produit-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.produit-categorie {
  font-size: 10px; font-weight: 600; color: var(--or-dark);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 8px;
}
.produit-nom {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 600; color: var(--noir);
  margin-bottom: 8px; line-height: 1.15;
}
.produit-desc {
  font-size: 13.5px; color: var(--gris); flex: 1;
  margin-bottom: 18px; line-height: 1.65; font-weight: 400;
}
.produit-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: var(--bord);
}
.produit-prix {
  font-family: var(--font-titre); font-size: 28px;
  font-weight: 700; color: var(--noir);
}
.produit-unite { font-size: 11.5px; color: var(--gris); font-weight: 400; }
.btn-ajouter {
  background: var(--noir); color: var(--creme);
  padding: 10px 20px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background var(--tr), color var(--tr);
}
.btn-ajouter:hover { background: var(--or-dark); color: var(--blanc); }
.produit-vedette { position: relative; }
.produit-vedette::before {
  content: '★ VEDETTE'; position: absolute; top: 14px; left: 14px;
  background: var(--or); color: var(--blanc);
  font-size: 9px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; letter-spacing: 1.5px; z-index: 1;
}

/* ═══ PANIER ══════════════════════════════════════════ */
.panier-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.28s;
}
.panier-overlay.open { opacity: 1; pointer-events: all; }
.panier-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--creme-light); z-index: 201;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  border-left: var(--bord-fort);
}
.panier-sidebar.open { transform: translateX(0); }
.panier-header {
  padding: 22px 24px; border-bottom: var(--bord-fort);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--noir);
}
.panier-header h3 {
  font-family: var(--font-titre); font-size: 20px; font-weight: 600;
  color: var(--creme); display: flex; align-items: center; gap: 10px;
}
.btn-fermer-panier {
  color: var(--creme); width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--tr);
}
.btn-fermer-panier:hover { opacity: 0.65; }
.panier-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.panier-vide { text-align: center; padding: 64px 0; color: var(--gris); }
.panier-vide svg { margin: 0 auto 14px; opacity: 0.35; }
.panier-vide p { font-size: 14px; font-weight: 400; }
.panier-item { position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 0 14px 4px; border-bottom: var(--bord); }
.panier-item-suppr {
  position: absolute; top: 8px; right: 0;
  background: none; border: none; font-size: 17px; line-height: 1;
  color: #c4c4c4; cursor: pointer; padding: 2px 4px; border-radius: 4px;
  transition: color .15s, background .15s;
}
.panier-item-suppr:hover { color: #ef4444; background: #fee2e2; }
.panier-item-info { flex: 1; }
.panier-item-nom { font-size: 14px; font-weight: 600; color: var(--noir); }
.panier-item-prix { font-size: 12px; color: var(--gris); margin-top: 2px; }
.panier-item-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 30px; height: 30px; border: 1.5px solid var(--gris-clair);
  color: var(--noir); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.qty-btn:hover { background: var(--noir); color: var(--creme); border-color: var(--noir); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; color: var(--noir); }
.panier-item-total {
  font-family: var(--font-titre); font-size: 18px; font-weight: 600; color: var(--noir);
  min-width: 62px; text-align: right;
}
.panier-footer { padding: 20px 24px; border-top: var(--bord-fort); background: var(--blanc); }
.panier-sous-total { display: flex; justify-content: space-between; font-size: 13px; color: var(--gris); margin-bottom: 8px; }
.panier-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-titre); font-size: 22px; font-weight: 700;
  color: var(--noir); margin-bottom: 20px;
}
.btn-commander {
  width: 100%; padding: 16px; background: var(--noir); color: var(--creme);
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; text-align: center;
  transition: background var(--tr); display: block;
}
.btn-commander:hover { background: var(--or-dark); color: var(--blanc); }

/* ═══ TOAST ═══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--noir); color: var(--creme);
  padding: 14px 28px; font-size: 13.5px; font-weight: 500;
  z-index: 999; transition: transform 0.3s ease;
  white-space: nowrap; border-left: 3px solid var(--or);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══ BOUTIQUE ════════════════════════════════════════ */
.section-boutique { padding: 100px 0; background: var(--blanc); border-top: var(--bord); }
.boutique-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.boutique-info-col > p {
  font-size: 15.5px; color: var(--gris);
  margin-bottom: 44px; font-weight: 400; line-height: 1.85;
}
.boutique-infos-liste { display: flex; flex-direction: column; }
.boutique-info-ligne {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: var(--bord);
}
.boutique-info-ligne:first-child { border-top: var(--bord); }
.boutique-ico {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gris-clair);
  display: flex; align-items: center; justify-content: center;
  color: var(--or-dark); flex-shrink: 0;
  background: var(--creme-light);
}
.boutique-info-text h3 {
  font-size: 10.5px; font-weight: 600; color: var(--or-dark);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px;
}
.boutique-info-text p, .boutique-info-text a {
  font-size: 14.5px; color: var(--gris); line-height: 1.75; font-weight: 400;
}
.boutique-info-text a:hover { color: var(--noir); }
.btn-map {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; font-size: 10.5px; font-weight: 600;
  color: var(--noir); letter-spacing: 1.2px; text-transform: uppercase;
  border-bottom: 1.5px solid var(--or); padding-bottom: 2px;
  transition: color var(--tr);
}
.btn-map:hover { color: var(--or-dark); }

.boutique-photos-col {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px; gap: 6px;
}
.boutique-photo { overflow: hidden; }
.boutique-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.boutique-photo:hover img { transform: scale(1.04); }
.boutique-photo.large { grid-column: 1/2; grid-row: 1/2; }
.boutique-photo.tall  { grid-column: 2/3; grid-row: 1/3; }

/* ═══ FOOTER ══════════════════════════════════════════ */
footer {
  background: var(--noir-deep);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(201,169,110,0.30);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 10px; margin-bottom: 18px;
}
.footer-logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline {
  font-size: 11px; color: var(--or);
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
}
.footer-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.35);
  line-height: 1.85; font-weight: 400; margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--font-titre);
  font-size: 16px; font-weight: 600; color: var(--blanc);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-col p, .footer-col a {
  font-size: 13.5px; color: rgba(255,255,255,0.40);
  line-height: 2.1; display: block; font-weight: 400;
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--or-light); }
.footer-bottom {
  text-align: center; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: rgba(255,255,255,0.20); letter-spacing: 0.3px;
}

/* ═══ SKELETON ════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--creme-dark) 25%, var(--creme) 50%, var(--creme-dark) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ═══ RESPONSIVE ═══════════════════════════════════════ */

/* --- LARGE TABLET (≤1100px) --- */
@media (max-width: 1100px) {
  .navbar-left a:not(.navbar-brand):nth-child(n+4) { display: none; }
  .hero-content { padding: 120px 36px 100px; }
}

/* --- TABLET (≤1024px) --- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .hero-bg { object-position: 60% center; }
  .hero-content { padding: 110px 28px 90px; max-width: 500px; }
  .hero h1 { font-size: clamp(40px, 5vw, 60px); }
  .hero-bottom { padding: 20px 28px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* --- MOBILE (≤768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Navbar mobile — burger gauche | logo centre | panier droite */
  .navbar-inner {
    padding: 0 16px; height: 68px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .btn-burger {
    display: flex;
    grid-column: 1;
    justify-self: start;
  }
  .navbar-left {
    grid-column: 2;
    justify-content: center;
    gap: 0;
  }
  .navbar-left a:not(.navbar-brand) { display: none; }
  .navbar-brand {
    display: flex;
    justify-content: center;
  }
  .navbar-logo { height: 52px; width: auto; }
  .navbar-right {
    grid-column: 3;
    justify-self: end;
    gap: 0;
  }
  .navbar-tel { display: none; }
  .btn-panier { padding: 7px 10px; font-size: 10px; border-width: 1px; }
  .panier-label { display: none; }
  .mobile-menu { padding: 0 20px 20px; }

  /* Hero mobile — split : texte gauche | steak droite */
  .hero {
    min-height: 100vh; min-height: 100svh;
    justify-content: flex-start;
    background: var(--creme-light);
  }
  /* Image uniquement sur la moitié droite */
  .hero-bg {
    inset: 0 0 0 50%;
    width: 50%; height: 100%;
    object-fit: cover; object-position: 62% center;
  }
  /* Pas de filtre blanc */
  .hero::after { display: none; }
  /* Contenu sur la moitié gauche */
  .hero-content {
    padding: 90px 8px 60px 16px;
    max-width: 50%;
    align-items: flex-start; text-align: left;
    display: flex; flex-direction: column;
  }
  .hero-eyebrow { justify-content: flex-start; margin-bottom: 16px; }
  .hero-eyebrow-label { font-size: 10px; letter-spacing: 2px; }
  .hero h1 {
    font-size: clamp(24px, 6.5vw, 36px);
    text-align: left; margin-bottom: 14px;
  }
  .hero-desc {
    text-align: left; max-width: 100%;
    font-size: 13px; margin-bottom: 22px; line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column; align-items: flex-start;
    gap: 10px; width: 100%;
  }
  .btn-hero-primary {
    padding: 12px 14px; font-size: 11px;
    justify-content: center; width: 100%;
  }
  .btn-hero-secondary { justify-content: flex-start; font-size: 11px; }

  .hero-bottom {
    padding: 16px 20px;
    flex-direction: column; align-items: center; gap: 8px; text-align: center;
  }
  .hero-tel { align-items: center; }
  .hero-tel a { font-size: 22px; }
  .hero-hours { text-align: center; font-size: 10px; }

  /* Info strip mobile */
  .info-strip-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .strip-item {
    border-right: none; border-bottom: var(--bord);
    padding: 16px 0 !important;
  }
  .strip-item:first-child { padding-left: 0; }
  .strip-item + .strip-item { padding-left: 0; }
  .strip-item:last-child { border-bottom: none; }

  /* Sections */
  .section-categories, .menu-section, .section-boutique { padding: 56px 0; }
  .section-h2 { font-size: clamp(26px, 7vw, 36px); }
  .section-sub { font-size: 14px; max-width: 100%; }
  .categories-header { margin-bottom: 36px; }

  /* Catégories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .categorie-card { aspect-ratio: 3/4; }
  .categorie-nom { font-size: 22px; }
  .categorie-sous { font-size: 11px; }
  .categorie-content { padding: 20px 16px; }
  .categorie-arrow { bottom: 16px; right: 12px; width: 28px; height: 28px; }

  /* Menu / Produits */
  .menu-top { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .categories-filtres {
    width: 100%; border: none;
    gap: 6px; margin-bottom: 28px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap; padding-bottom: 4px;
  }
  .filtre-btn {
    padding: 9px 18px; font-size: 10px;
    border: 1.5px solid var(--noir); border-right: 1.5px solid var(--noir);
    white-space: nowrap; flex-shrink: 0;
  }
  .produits-grid {
    grid-template-columns: repeat(2, 1fr); gap: 2px;
  }
  .produit-img { height: 160px; }
  .produit-nom { font-size: 17px; }
  .produit-prix { font-size: 20px; }
  .produit-body { padding: 14px; }
  .produit-desc { font-size: 12.5px; margin-bottom: 14px; }
  .produit-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-ajouter { width: 100%; justify-content: center; padding: 10px 16px; }

  /* Boutique */
  .boutique-layout { grid-template-columns: 1fr; gap: 40px; }
  .boutique-photos-col {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px; gap: 4px;
  }

  /* Panier */
  .panier-sidebar { width: 100vw; border-left: none; }

  /* Footer */
  footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-logo-circle { margin: 0 auto 16px; }
  .footer-col h4 { border-bottom: none; padding-bottom: 0; }
}

/* --- SMALL MOBILE (≤480px) --- */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-content { padding: 90px 16px 80px; }
  .hero-hours { display: none; }
  .hero-desc { font-size: 13px; }
  .hero-desc br { display: none; }

  .categorie-card { aspect-ratio: 1/1.2; }
  .categorie-nom { font-size: 18px; }
  .categorie-content { padding: 14px 12px; }

  .produits-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .produit-img { height: 130px; }
  .produit-body { padding: 12px; }
  .produit-nom { font-size: 15px; }
  .produit-prix { font-size: 18px; }
  .btn-ajouter { padding: 8px 12px; font-size: 9.5px; }

  .boutique-photos-col { grid-template-columns: 1fr; grid-template-rows: auto; }
  .boutique-photo.large, .boutique-photo.tall { grid-column: auto; grid-row: auto; }
  .boutique-photo img { height: 200px; }
  .boutique-info-col > p { font-size: 14px; }
}

/* --- VERY SMALL (≤360px) --- */
@media (max-width: 360px) {
  .navbar-logo { height: 42px; }
  .hero h1 { font-size: 24px; }
  .hero-content { padding: 80px 14px 70px; }
  .navbar-logo { height: 22px; width: auto; }
  .btn-hero-primary { padding: 12px 20px; font-size: 10px; }
  .hero-desc { font-size: 12.5px; max-width: 260px; }
  .categorie-nom { font-size: 16px; }
}
