/* ═══════════════════════════════════════════════════════════════
   BOUCHERIE SOUK EL NOUR — Premium CSS
   Palette: #000 | #fff | #ce1d21 | #992325 | #F90806
   Fonts: EB Garamond (titres) | Montserrat (texte)
═══════════════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #ce1d21;
  --red-dark:   #992325;
  --red-vivid:  #F90806;
  --red-grad:   linear-gradient(135deg, #992325, #ce1d21, #F90806);
  --red-grad-h: linear-gradient(135deg, #F90806, #ce1d21, #992325);
  --black:      #000000;
  --white:      #ffffff;
  --off-white:  #f5f0eb;

  /* Dark theme (default) */
  --bg:         #080808;
  --bg-card:    #111111;
  --bg-card2:   #181818;
  --bg-section: #0d0d0d;
  --text:       #e8e0d5;
  --text-muted: #8a7d72;
  --text-dim:   #5a5048;
  --border:     rgba(206, 29, 33, 0.18);
  --border-sub: rgba(255,255,255,0.06);
  --shadow:     rgba(0,0,0,0.8);
  --glow:       rgba(206,29,33,0.15);
  --header-bg:  rgba(0,0,0,0);

  --font-title: 'EB Garamond', Georgia, serif;
  --font-body:  'Montserrat', system-ui, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 100px;
}

[data-theme="light"] {
  --bg:         #f8f4f0;
  --bg-card:    #ffffff;
  --bg-card2:   #f0ebe4;
  --bg-section: #efe9e2;
  --text:       #1a1008;
  --text-muted: #6b5e52;
  --text-dim:   #9a8c80;
  --border:     rgba(206, 29, 33, 0.22);
  --border-sub: rgba(0,0,0,0.08);
  --shadow:     rgba(0,0,0,0.15);
  --glow:       rgba(206,29,33,0.08);
  --header-bg:  rgba(0,0,0,0);
}

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: var(--font-title); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
em { font-style: normal; color: var(--red); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; letter-spacing: -0.01em; }
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── PHOTO DISCLAIMER ─── */
.photo-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.5;
  margin-top: -36px;
  margin-bottom: 40px;
  font-style: italic;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--red-grad);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(206,29,33,0.35);
}
.btn--primary:hover {
  background: var(--red-grad-h);
  box-shadow: 0 6px 32px rgba(206,29,33,0.55);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(206,29,33,0.06);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="50"].reveal { transition-delay: 50ms; }
[data-delay="100"].reveal { transition-delay: 100ms; }
[data-delay="150"].reveal { transition-delay: 150ms; }
[data-delay="200"].reveal { transition-delay: 200ms; }
[data-delay="250"].reveal { transition-delay: 250ms; }
[data-delay="300"].reveal { transition-delay: 300ms; }
[data-delay="400"].reveal { transition-delay: 400ms; }
[data-delay="450"].reveal { transition-delay: 450ms; }
[data-delay="500"].reveal { transition-delay: 500ms; }

/* ═══════════════════════════════════════════════════
   FLOATING CALL BUTTON
═══════════════════════════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--red-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(206,29,33,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-call svg { width: 26px; height: 26px; fill: white; position: relative; z-index: 2; }
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(206,29,33,0.7); }
.float-call__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(206,29,33,0.45);
  animation: pulse-breathe 3s ease-in-out infinite;
}
.float-call__pulse--2 { animation-delay: 1.5s; }
@keyframes pulse-breathe {
  0%   { transform: scale(1);    opacity: 0.55; }
  50%  { transform: scale(1.32); opacity: 0.1;  }
  100% { transform: scale(1);    opacity: 0.55; }
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: rgba(206,29,33,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Header always dark — nav text stays light */
.header .header__nav a,
.header .logo-text__name,
.header .header__cta-btn {
  color: rgba(232,224,213,0.9);
}
.header .header__nav a:hover { color: #fff; }
[data-theme="light"] .header .logo-text__name { color: rgba(232,224,213,0.9); }
[data-theme="light"] .header .header__nav a { color: rgba(232,224,213,0.85); }
[data-theme="light"] .header .header__nav a:hover { color: #fff; }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Logo Emblem */
.logo-emblem {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.logo-emblem--sm { width: 64px; height: 64px; }
.logo-emblem__ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(206,29,33,0.08);
  position: relative;
}
.logo-emblem__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px;
}
.logo-emblem__star { font-size: 0.45rem; color: var(--red); line-height: 1; }
.logo-emblem__title { font-size: 0.28rem; font-weight: 800; letter-spacing: 0.08em; color: var(--text); line-height: 1; text-align: center; }
.logo-emblem__sub { font-size: 0.22rem; letter-spacing: 0.05em; color: var(--text-muted); line-height: 1; text-align: center; }
.logo-emblem__crescent { font-size: 0.55rem; color: var(--red); line-height: 1; }

.logo-emblem--sm .logo-emblem__title { font-size: 0.35rem; }
.logo-emblem--sm .logo-emblem__sub { font-size: 0.27rem; }
.logo-emblem--sm .logo-emblem__star { font-size: 0.55rem; }
.logo-emblem--sm .logo-emblem__crescent { font-size: 0.65rem; }

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text__name {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
}
.logo-text__sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.header__nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav__link:hover { color: var(--red); background: rgba(206,29,33,0.08); }
.nav__link.active { color: var(--red); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #992325, #CE1D21, #F90806);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link.active::after {
  transform: scaleX(1);
}

/* Header Right */
.header__right { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(232,224,213,0.85);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: rgba(206,29,33,0.5);
  background: rgba(206,29,33,0.1);
  color: #fff;
}
.theme-toggle__icon { display: none; }
.theme-toggle__icon svg { display: block; }
[data-theme="dark"] .theme-toggle__icon--moon { display: flex; }
[data-theme="light"] .theme-toggle__icon--sun { display: flex; }

/* Btn Call (header) */
.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--red-grad);
  color: white;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(206,29,33,0.3);
  transition: all var(--transition);
}
.btn-call svg { width: 15px; height: 15px; fill: white; }
.btn-call:hover { box-shadow: 0 4px 20px rgba(206,29,33,0.5); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border-sub);
  background: var(--header-bg);
  animation: slideDown 0.3s ease;
}
.mobile-nav.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav__link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-sub);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--red); }
.mobile-nav__call {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  background: var(--red-grad);
  color: white;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: center;
}
.mobile-nav__call svg { width: 20px; height: 20px; fill: white; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('viande-hero.jpg'); /* fallback */
  background-image: -webkit-image-set(url('viande-hero.webp') 1x, url('viande-hero.jpg') 1x);
  background-image: image-set(url('viande-hero.webp') type("image/webp"), url('viande-hero.jpg') type("image/jpeg"));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  /* Lueur rouge subtile sur la photo */
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(153,35,37,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(206,29,33,0.08) 0%, transparent 60%);
}
.hero__meat-pattern {
  display: none; /* inutile avec une vraie photo */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.68)
  );
}

/* Hero — overlay conservé en mode clair */
[data-theme="light"] .hero__bg {
  background-image: url('viande-hero.jpg'); /* fallback */
  background-image: -webkit-image-set(url('viande-hero.webp') 1x, url('viande-hero.jpg') 1x);
  background-image: image-set(url('viande-hero.webp') type("image/webp"), url('viande-hero.jpg') type("image/jpeg"));
  background-size: cover;
  background-position: center center;
}
[data-theme="light"] .hero__overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.62),
    rgba(0, 0, 0, 0.72)
  );
}

/* ── Hero two-column layout ── */
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__left {
  flex: 0 0 52%;
  min-width: 0;
}
.hero__right {
  flex: 0 0 44%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(206,29,33,0.2);
  position: relative;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1;
  border-radius: 20px;
  pointer-events: none;
}
[data-theme="light"] .hero__image-wrap::before {
  background: rgba(0,0,0,0.45);
}
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 2;
}
.hero__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero__photo-fallback {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #3a0a0a 0%, #1a0202 30%, #0d0d0d 70%, #1a0a00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__photo-fallback-icon {
  font-size: 4rem;
  opacity: 0.3;
}
.hero__photo-fallback-text {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Badges */
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: flex-start; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid;
}
.badge--halal { background: rgba(206,29,33,0.15); border-color: rgba(206,29,33,0.4); color: #ff9090; }
.badge--hygiene { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); color: #6ee7a0; }
.badge--google { background: rgba(255,180,0,0.1); border-color: rgba(255,180,0,0.3); color: #fcd34d; }

/* Hero Title */
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__title em { color: var(--red-vivid); }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.75;
}

/* Hero title block — nouveau layout */
.hero__title-block { margin-bottom: 16px; }
.hero__main-boucherie {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  font-style: normal;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__main-sen {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.hero__main-sub {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Subtitle structure */
.hero__sub-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__sub-red {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--red-vivid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__sub-white {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; justify-content: flex-start; }

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin: 0;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num small { font-size: 1rem; color: var(--red); }
.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll — hidden */
.hero__scroll {
  display: none;
}
.hero__scroll span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: bounce-dot 1.4s ease infinite;
}
.hero__scroll span:nth-child(2) { animation-delay: 0.2s; }
.hero__scroll span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce-dot {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ═══════════════════════════════════════════════════
   CTA BLOCKS
═══════════════════════════════════════════════════ */
.cta-block {
  padding: 48px 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--bg-section);
}
.cta-block--alt { background: var(--bg-card2); }
.cta-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-block__text h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 8px;
}
.cta-block__text p { color: var(--text-muted); font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════════════ */
.about { padding: var(--section-pad) 0; }
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red-grad);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.about__card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.about__card:hover::before { transform: scaleX(1); }
.about__icon { display: none; }
.about__card h3 { margin-bottom: 12px; }
.about__card p { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════
   NOS VIANDES
═══════════════════════════════════════════════════ */
.viandes { padding: var(--section-pad) 0; background: var(--bg-section); }
.viandes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.viande-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.viande-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: var(--border); }
.viande-card--featured { grid-column: span 1; border-color: rgba(206,29,33,0.3); }

/* Card visual (gradient backgrounds simulating meat) */
.viande-card__visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  overflow: hidden;
}
.viande-card__visual--boeuf      { background: linear-gradient(145deg, #1a0505 0%, #3d0e0e 40%, #8b1a1a 100%); }
.viande-card__visual--agneau     { background: linear-gradient(145deg, #0d0d1a 0%, #1a1a3d 40%, #2d2d7a 100%); }
.viande-card__visual--volaille   { background: linear-gradient(145deg, #1a1200 0%, #3d2a00 40%, #8b6a00 100%); }
.viande-card__visual--marinade   { background: linear-gradient(145deg, #1a0800 0%, #3d1500 40%, #992200 100%); }
.viande-card__visual--merguez    { background: linear-gradient(145deg, #1a0505 0%, #400808 40%, #7a1010 100%); }
.viande-card__visual--preparations { background: linear-gradient(145deg, #050a0a 0%, #0a2020 40%, #1a4040 100%); }

.viande-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
}
.viande-card:hover .viande-card__photo { transform: scale(1.05); }

.viande-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
}
.viande-card__emoji {
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.viande-card:hover .viande-card__emoji { transform: translate(-50%, -65%) scale(1.1); opacity: 1; transition: all var(--transition); }

.viande-card__badge {
  position: relative;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(206,29,33,0.7);
  border: 1px solid rgba(206,29,33,0.5);
  border-radius: 100px;
  color: white;
  align-self: flex-start;
}
.viande-card__badge--featured { background: rgba(206,29,33,0.9); }

.viande-card__body { padding: 24px; }
.viande-card__body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.viande-card__body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }

.viande-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.viande-card__tags li {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--border-sub);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   NOS PRODUITS
═══════════════════════════════════════════════════ */
.produits { padding: var(--section-pad) 0; }
.produits__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(100px, 1fr));
  gap: 14px;
  overflow-x: auto;
}
.produit-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.produit-item {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  height: 220px;
  width: 100%;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.produit-item:hover {
  border-color: rgba(206, 29, 33, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow), 0 0 22px rgba(206, 29, 33, 0.18);
}
.produit-item__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.produit-item:hover .produit-item__img { transform: scale(1.06); }
.produit-wrap .btn { font-size: 0.78rem; padding: 10px 14px; gap: 0; width: 100%; justify-content: center; }
.produit-wrap .btn svg { display: none; }

/* ═══════════════════════════════════════════════════
   TRAÇABILITÉ
═══════════════════════════════════════════════════ */
.tracabilite {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.tracabilite__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(153,35,37,0.08), transparent);
  pointer-events: none;
}
.tracabilite__steps { display: flex; flex-direction: column; gap: 0; }
.tracabilite__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-sub);
}
.tracabilite__step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.step__content h3 { margin-bottom: 10px; font-size: 1.3rem; }
.step__content p { color: var(--text-muted); max-width: 600px; }

/* ═══════════════════════════════════════════════════
   ENGAGEMENTS
═══════════════════════════════════════════════════ */
.engagements { padding: var(--section-pad) 0; background: var(--bg-card2); }
.engagements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.engagement-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.engagement-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.engagement-card__icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}
.engagement-card h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--red); }
.engagement-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════
   HYGIÈNE
═══════════════════════════════════════════════════ */
.hygiene { padding: var(--section-pad) 0; }
.hygiene__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hygiene__left .section-tag { display: inline-block; margin-bottom: 16px; }
.hygiene__left .section-title { text-align: left; margin-bottom: 20px; }
.hygiene__left p { color: var(--text-muted); margin-bottom: 16px; }
.hygiene__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.hygiene__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.hygiene__list li span {
  width: 22px;
  height: 22px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #6ee7a0;
  flex-shrink: 0;
}

/* Score Card */
.hygiene__score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(206,29,33,0.1);
  position: relative;
}
.hygiene__score-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--red-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.hygiene__score-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}
.hygiene__score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.hygiene__score-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 8;
}
.hygiene__score-fill {
  fill: none;
  stroke: url(#redGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: calc(339.3 - (339.3 * var(--pct) / 100));
  stroke: #ce1d21;
  filter: drop-shadow(0 0 6px rgba(206,29,33,0.6));
  transition: stroke-dashoffset 1.5s ease;
}
.hygiene__score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hygiene__score-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hygiene__score-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.hygiene__score-info { margin-bottom: 16px; }
.hygiene__score-title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.hygiene__score-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.hygiene__score-stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 8px; }
.hygiene__score-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 8px 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  display: inline-block;
}

.hygiene__badges-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hygiene__mini-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(206,29,33,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════════ */
.galerie { padding: var(--section-pad) 0; background: var(--bg-section); }
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.galerie__item--large { grid-column: span 2; }
.galerie__item--wide  { grid-column: span 2; }

.galerie__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.galerie__item--large .galerie__visual,
.galerie__item--wide  .galerie__visual { aspect-ratio: 16/9; }

/* Galerie — vraies photos */
.galerie__visual--facade,
.galerie__visual--vitrine,
.galerie__visual--marinade,
.galerie__visual--merguez2,
.galerie__visual--rayon,
.galerie__visual--interieur { background: #111; }

.galerie__visual::after { content: none; }

.galerie__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.galerie__visual:hover .galerie__photo { transform: scale(1.04); }

/* Hover galerie : zoom photo uniquement, aucun overlay */

.galerie__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.galerie__visual:hover .galerie__caption { transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   AVIS
═══════════════════════════════════════════════════ */
.avis { padding: var(--section-pad) 0; }

.avis__global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 40px rgba(206,29,33,0.1);
}
.avis__global-score {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.avis__global-stars { font-size: 1.5rem; color: #fbbf24; letter-spacing: 3px; margin-bottom: 6px; }
.avis__global-count { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.avis__global-note {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.avis-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.avis-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 10px 30px var(--shadow); }
.avis-card__stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.avis-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.avis-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avis-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.avis-card__name { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.avis-card__name span { color: var(--text-dim); font-weight: 400; font-size: 0.78rem; white-space: nowrap; }

.avis__cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════ */
.location { padding: var(--section-pad) 0; background: var(--bg-section); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location__facade { margin-bottom: 28px; }
.location__facade-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
}
.location__facade-placeholder {
  height: 200px;
  background: linear-gradient(145deg, #0a0808 0%, #1a0808 40%, #3d1515 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.facade-icon { display: none; }
.facade-name { display: none; }
.facade-addr { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* Location facade — nouveau style */
.location__logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}
.facade-name-premium {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

/* Location detail icons — SVG */
.location__detail-icon {
  font-size: 0;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.location__detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}

.location__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.location__detail { display: flex; gap: 16px; align-items: flex-start; }
.location__detail-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.location__detail strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.location__detail p { color: var(--text-muted); font-size: 0.88rem; }
.location__detail a { color: var(--red); font-weight: 600; font-size: 1rem; }

.horaires { display: flex; flex-direction: column; gap: 4px; }
.horaire-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--text-muted); }
.horaire-row--closed span:last-child { color: var(--red); font-weight: 600; }

.location__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-sub);
  height: 450px;
  box-shadow: 0 8px 40px var(--shadow);
}
.location__map iframe { border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { padding: var(--section-pad) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.form-group input, .form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(206,29,33,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }

.contact__quick {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 0 30px rgba(206,29,33,0.08);
}
.contact__quick h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact__quick p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }
.contact__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--red-grad);
  color: white;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(206,29,33,0.4);
  transition: all var(--transition);
}
.contact__phone-btn svg { width: 22px; height: 22px; fill: white; }
.contact__phone-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(206,29,33,0.6); }

.contact__info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact__info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
}
.contact__info-card > span { font-size: 1.2rem; margin-top: 2px; }
.contact__info-card strong { display: block; font-size: 0.82rem; margin-bottom: 4px; }
.contact__info-card p { color: var(--text-muted); font-size: 0.82rem; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(153,35,37,0.3) 0%, transparent 70%),
    #0a0a0a;
}
.cta-final__inner { position: relative; z-index: 2; }
.cta-final__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-final__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.cta-final__sub {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--red);
  margin-bottom: 24px;
}
.cta-final__text {
  max-width: 520px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-final__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--red-grad);
  color: white;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(206,29,33,0.35);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.cta-final__btn svg { width: 24px; height: 24px; fill: white; }
.cta-final__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(206,29,33,0.55); background: var(--red-grad-h); }
.cta-final__btn-pulse { display: none; }
.cta-final__btn-pulse--2 { display: none; }

.cta-final__addr {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: #050505; }
.footer__top { padding: 64px 0 40px; border-top: 1px solid rgba(206,29,33,0.2); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo-emblem { margin-bottom: 0; }
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
}
.footer__social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer__social-link:hover { border-color: var(--red); color: var(--red); background: rgba(206,29,33,0.08); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--red); }

.footer__horaires { display: flex; flex-direction: column; gap: 6px; }
.footer__horaire { display: flex; justify-content: space-between; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.footer__horaire--closed span:last-child { color: rgba(206,29,33,0.7); }

.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer__contact svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: var(--red); font-weight: 600; display: flex; align-items: center; gap: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer__bottom strong { color: var(--red); }

/* ═══════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
═══════════════════════════════════════════════════ */
[data-theme="light"] .hero {
  background: linear-gradient(to bottom, #1a0202 0%, #0a0a0a 100%);
}
[data-theme="light"] .footer { background: #f0ebe4; }
[data-theme="light"] .footer__bottom { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .footer__bottom p { color: var(--text-muted); }
[data-theme="light"] .cta-final__title { color: var(--text); }
[data-theme="light"] .avis__global-score { color: var(--text); }
[data-theme="light"] .hygiene__score-num { color: var(--text); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .viandes__grid { grid-template-columns: repeat(2, 1fr); }
  .hygiene__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { height: 300px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__right { margin-left: auto; }

  .hero { padding: 120px 0 60px; }
  .hero__stats {
    gap: 16px;
    padding: 14px 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .hero__stat-num { font-size: 1.5rem; }

  .viandes__grid { grid-template-columns: 1fr; }
  .galerie__grid { grid-template-columns: 1fr 1fr; }
  .galerie__item--large { grid-column: span 2; }
  .galerie__item--wide  { grid-column: span 2; }

  .avis__grid { grid-template-columns: 1fr; }
  .avis__global { flex-direction: column; text-align: center; padding: 24px; }
  .avis__global-score { font-size: 3.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-block__inner { flex-direction: column; text-align: center; }
  .cta-block__inner .btn { width: 100%; justify-content: center; }

  .hygiene__score-card { padding: 28px 20px; }

  .tracabilite__step { flex-direction: column; gap: 12px; }
  .step__num { font-size: 2.5rem; width: auto; }

  .location__map { height: 260px; }
  .location__actions { flex-direction: column; }
  .location__actions .btn { justify-content: center; }

  .cta-final__btn { font-size: 1.1rem; padding: 14px 28px; }
  .cta-final__btn svg { width: 18px; height: 18px; }

  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__horaire { font-size: 0.75rem; }

  /* Produits complémentaires — responsive tablette */
  .produits__grid {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }

  /* Hero — recadrage mobile */
  .hero__bg { background-position: 60% center; }
  [data-theme="light"] .hero__bg { background-position: 60% center; }
}

@media (max-width: 480px) {
  .galerie__grid { grid-template-columns: 1fr; }
  .galerie__item--large { grid-column: span 1; }
  .galerie__item--wide  { grid-column: span 1; }
  .logo-text { display: none; }
  /* Mission 6 — float button: safe area insets pour les téléphones à encoche */
  .float-call {
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    left: max(20px, calc(env(safe-area-inset-left, 0px) + 16px));
    width: 52px;
    height: 52px;
  }
  .float-call svg { width: 22px; height: 22px; }
  .btn-call { padding: 8px 14px; font-size: 0.78rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  /* Mission 3 — bouton "Voir toutes nos viandes & tarifs" : supprime le scroll horizontal */
  .viandes__cta-wrap { width: 100%; }
  .btn--viandes-all {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 14px 20px;
    justify-content: center;
  }

  /* Produits complémentaires — responsive mobile */
  .produits__grid { grid-template-columns: repeat(2, 1fr); }
  .produit-item { height: 155px; }
  .produit-wrap .btn { font-size: 0.72rem; padding: 8px 10px; }
}

/* ═══════════════════════════════════════════════════
   COMPLÉMENTS — logo image, avis header, PJ, mobile close
═══════════════════════════════════════════════════ */

/* Logo image header */
.header__logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer logo image */
.footer__brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
}

/* Mobile nav close button */
.mobile-nav__close {
  display: flex;
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--red); }

/* Avis card header row (stars + google icon) */
.avis-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.avis-card__header .avis-card__stars {
  margin-bottom: 0;
}
.avis-card__google-icon {
  opacity: 0.6;
  flex-shrink: 0;
  width: 40px;
  height: auto;
}

/* Avis global — platforms dual layout */
.avis__global-platforms {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.avis__platform {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avis__platform-sep {
  width: 1px;
  height: 60px;
  background: var(--border-sub);
  flex-shrink: 0;
}
.avis__global-logo svg {
  display: block;
  opacity: 0.8;
  width: 72px;
  height: auto;
}
.avis__global-label-pj {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Eurofins auditor info */
.hygiene__score-auditor {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Reveal animation base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* Float call transition for hide/show */
.float-call {
  transition: opacity 0.3s ease, transform 0.2s ease;
}

/* Header scrolled state enhancement */
.header.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.6);
}

/* ═══════════════════════════════════════════════════
   SECTION BACKGROUND ALTERNATION — NOIR / BLANC
═══════════════════════════════════════════════════ */

/* Sections sombres — nuances de noir profondes */
.viandes    { background: #000000; }
.tracabilite { background: #090909; }
.hygiene    { background: #111111; }
.avis       { background: #080808; }
.cta-block  { background: #0d0d0d; border-top-color: rgba(255,255,255,0.04); border-bottom-color: rgba(255,255,255,0.04); }
.cta-block--alt { background: #161616; }
.cta-block .btn--primary:hover,
.cta-block .btn--outline:hover {
  box-shadow: 0 0 30px rgba(206,29,33,0.4), 0 6px 24px rgba(206,29,33,0.3);
}

/* Light mode — sections à fond clair */
[data-theme="light"] .viandes    { background: #f3f3f3; }
[data-theme="light"] .tracabilite { background: #f8f8f8; }
[data-theme="light"] .hygiene    { background: #ffffff; }
[data-theme="light"] .avis       { background: #f3f3f3; }
[data-theme="light"] .cta-block  { background: var(--bg-section); border-top-color: rgba(0,0,0,0.06); border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .cta-block--alt { background: var(--bg-card2); }

/* CTA Final — toujours sombre quel que soit le mode */
[data-theme="light"] .cta-final__bg {
  background: #0a0a0a;
}
[data-theme="light"] .cta-final__title { color: #ffffff; }
[data-theme="light"] .cta-final__sub   { color: var(--red); }
[data-theme="light"] .cta-final__text  { color: rgba(255,255,255,0.6); }
[data-theme="light"] .cta-final__addr  { color: rgba(255,255,255,0.35); }

/* Carte — toujours sombre en mode clair */
[data-theme="light"] .location__map iframe {
  filter: brightness(0.65) contrast(1.15) saturate(0.7);
}

/* Hygiène — certificat placeholder */
.hygiene__cert {
  margin-top: 22px;
  text-align: center;
}
.hygiene__cert-btn {
  font-size: 0.82rem;
  padding: 10px 24px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   ENGAGEMENT CARDS — VISUAL GRADIENTS
═══════════════════════════════════════════════════ */
.engagement-card__visual {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.engagement-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
}
/* Halal — rouge profond */
.engagement-card__visual--halal {
  background: linear-gradient(135deg, #7a0a0a 0%, #b42020 50%, #8b0000 100%);
  box-shadow: 0 8px 24px rgba(180,40,40,0.35);
}
.engagement-card__visual--halal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='12' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.5'/%3E%3Cpath d='M20 8 L20 32 M8 20 L32 20' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E") center / 70% no-repeat;
}
/* Fraîcheur — vert frais */
.engagement-card__visual--fraicheur {
  background: linear-gradient(135deg, #0a3a1a 0%, #1a6b35 50%, #0d4a22 100%);
  box-shadow: 0 8px 24px rgba(26,107,53,0.35);
}
.engagement-card__visual--fraicheur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='10' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='20' r='5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") center / 80% no-repeat;
}
/* Hygiène — bleu glacé */
.engagement-card__visual--hygiene {
  background: linear-gradient(135deg, #0a1a3a 0%, #1a3a7a 50%, #0d2255 100%);
  box-shadow: 0 8px 24px rgba(26,58,122,0.35);
}
.engagement-card__visual--hygiene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Crect x='12' y='8' width='16' height='24' rx='3' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1.5'/%3E%3Cpath d='M15 16 L25 16 M15 20 L22 20' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E") center / 75% no-repeat;
}
/* Service — or chaud */
.engagement-card__visual--service {
  background: linear-gradient(135deg, #3a2a0a 0%, #7a5a1a 50%, #5a3d0a 100%);
  box-shadow: 0 8px 24px rgba(122,90,26,0.35);
}
.engagement-card__visual--service::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='14' r='6' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1.5'/%3E%3Cpath d='M10 34 Q20 24 30 34' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1.5'/%3E%3C/svg%3E") center / 80% no-repeat;
}

/* ═══════════════════════════════════════════════════
   ENGAGEMENT CARDS — CUSTOM ICON IMAGES
═══════════════════════════════════════════════════ */
.engagement-card__img {
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   GOOGLE TEXT LOGO (replace broken SVG)
═══════════════════════════════════════════════════ */
.google-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.avis-card__google-icon.google-text {
  font-size: 0.85rem;
  opacity: 1;
  width: auto;
}
.avis__global-logo .google-text {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════
   CONTACT ICONS — SVG minimal
═══════════════════════════════════════════════════ */
.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--red);
  margin-top: 2px;
}
.contact__info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__info-card > .contact-icon {
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════
   CTA FINAL — PHONE NUMBER ENHANCED
═══════════════════════════════════════════════════ */
.cta-final__phone-num {
  font-family: var(--font-title);
  font-size: 1.4em;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   HERO — RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__container {
    flex-direction: column;
    gap: 40px;
    padding: 120px 20px 60px;
    text-align: center;
  }
  .hero__left { flex: none; width: 100%; }
  .hero__right { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .hero__badges { justify-content: center; }
  .hero__sub-line { justify-content: center; }
  .hero__address { text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__stats { margin: 0 auto; }
  .hero__photo { height: 360px; }
  .hero__photo-fallback { height: 360px; }
}

@media (max-width: 480px) {
  .hero__photo { height: 260px; }
  .hero__photo-fallback { height: 260px; }
}

/* ═══════════════════════════════════════════════════
   VIANDES — NAV TOP LINK & CTA BUTTON
═══════════════════════════════════════════════════ */
.viandes__nav-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.viandes__tarifs-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(206,29,33,0.3);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.viandes__tarifs-link:hover {
  color: var(--red-vivid);
  border-color: var(--red-vivid);
}

.viandes__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.btn--viandes-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red-grad);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(206,29,33,0.35);
}
.btn--viandes-all:hover {
  background: var(--red-grad-h);
  box-shadow: 0 8px 32px rgba(206,29,33,0.55);
  transform: translateY(-2px);
}
.btn--viandes-all svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.btn--viandes-all:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   HERO PROMO TEASER — petit bloc sous le héros
═══════════════════════════════════════════════════ */
.hero-promo-teaser {
  padding: 48px 0 52px;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url('promotion fond.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}
.hero-promo-teaser::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206,29,33,0.25), transparent);
}
.hero-promo-teaser__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.hero-promo-teaser__title {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.15;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   NOS PROMOTIONS SECTION
═══════════════════════════════════════════════════ */
.promotions {
  padding: var(--section-pad) 0;
  background: var(--bg-section);
  position: relative;
}
.promotions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
}

/* Titre section promotions — blanc, une ligne, Garamond, majuscules */
.promotions__title {
  color: #fff !important;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Grid 5 colonnes desktop */
.promos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

/* Carte promo */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(206,29,33,0.15);
  border-color: rgba(206,29,33,0.35);
}

/* Zone image */
.promo-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-card2);
}
.promo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.promo-card:hover .promo-card__img { transform: scale(1.05); }
.promo-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-card2);
  text-align: center;
  padding: 8px;
}

/* Corps texte */
.promo-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.promo-card__body h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}
.promo-card__qty {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.promo-card__price {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-top: 6px;
}
.promo-card__price span {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

/* Responsive promos */
@media (max-width: 1100px) { .promos__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .promos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .promos__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 380px)  { .promos__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   VIANDES TARIFS PAGE — CATALOGUE
═══════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
}
.page-hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(206,29,33,0.1);
  border: 1px solid rgba(206,29,33,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero__title em {
  font-style: italic;
  background: var(--red-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Catalogue section */
.catalogue {
  padding: 80px 0 var(--section-pad);
  background: var(--bg);
}
.catalogue__category {
  margin-bottom: 60px;
}
.catalogue__cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.catalogue__cat-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
}
.catalogue__cat-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red-grad);
  border-radius: 2px;
  margin-top: 6px;
}
.catalogue__cat-count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(206,29,33,0.1);
  border: 1px solid rgba(206,29,33,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Grille produits catalogue */
.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

/* Carte produit */
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(206,29,33,0.12);
  border-color: rgba(206,29,33,0.3);
}
.cat-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  position: relative;
  overflow: hidden;
}
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card__img { transform: scale(1.05); }
.cat-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  padding: 8px;
  line-height: 1.4;
}
.cat-card__body {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.cat-card__name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.cat-card__price {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-card__price-unit {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  text-align: right;
  margin-top: 1px;
}

/* Responsive catalogue */
@media (max-width: 860px) {
  .catalogue__grid { grid-template-columns: repeat(auto-fill, mi
}

}

/* ── Titre NOS PROMOTIONS — mode clair UNIQUEMENT ──────────────────────────
   Règle définitive : toutes propriétés en !important + display:inline-block
   Cible UNIQUEMENT .promotions__title, ne touche aucun autre titre du site.
   ───────────────────────────────────────────────────────────────────────── */
[data-theme="light"] .promotions__title {
  display: inline-block !important;
  background: var(--red-grad) !important;
  background-image: var(--red-grad) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
