/* ═══════════════════════════════════════════════════════════════
   KING MEAT & CHICKEN — style.css  v2
   Palette : Noir #0A0A0A · Rouge #C8102E · Blanc #F5F5F0 · Or #C9A84C
   Typo    : Playfair Display (titres) · Inter (corps) · Oswald (labels)
═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:      #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --gold:       #C9A84C;
  --gold-light: #E2C26A;
  --white:      #F5F5F0;
  --gray-light: #E8E8E3;
  --gray-mid:   #9A9A95;
  --text-dark:  #1A1A1A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-label:   'Oswald', sans-serif;

  --container: 1200px;
  --radius:    4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(245,245,240,0.4); }
.btn--outline:hover { border-color: var(--white); background: rgba(245,245,240,0.08); }

.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }
.section--dark { background: var(--black-soft); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-header__label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header__desc {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ─── GRIDS ─── */
.grid { display: grid; gap: 1.5rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ═══════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS — fallback premium noir/rouge/or
   Utilisation : ajouter class="img-placeholder" à la div qui
   contient l'<img> quand l'image n'est pas encore disponible.
   Fonctionne aussi via le fallback JS automatique (onerror).
═══════════════════════════════════════════════════════════════ */

/* Wrapper de base pour tous les blocs image */
.card__img-wrap,
.labo__img-wrap,
.grossiste__visual,
.hero__bg {
  /* Fond de secours affiché AVANT que l'image charge */
  background: linear-gradient(
    135deg,
    #0f0f0f 0%,
    #1a0608 40%,
    #200c0c 70%,
    #0f0f0f 100%
  );
}

/* Placeholder appliqué via JS (onerror) ou classe manuelle */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1c0507 35%,
    #2a0a0c 65%,
    #0a0a0a 100%
  );
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

.img-placeholder__icon {
  font-size: 2.2rem;
  opacity: 0.5;
  line-height: 1;
}
.img-placeholder__text {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  text-align: center;
  padding: 0 1rem;
}

/* Ligne décorative or au-dessus du texte placeholder */
.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}

/* ─── LOGO ─── */
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo__king {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
}
.logo__sub {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ─── NAV ─── */
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--white); background: rgba(255,255,255,0.06); }

.header__cta { margin-left: 0.5rem; }

/* ─── BURGER ─── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO — CORRECTIONS v2
   • min-height réduit à 85vh : évite le vide excessif sans image
   • padding vertical contrôlé pour ne pas gonfler si image absente
   • fond de secours premium intégré dans .hero__bg
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;          /* ← était 100vh, réduit pour éviter le vide */
  display: flex;
  align-items: center;
  padding-top: 70px;         /* compense le header fixed */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Fond de secours visible AVANT chargement image ou si absente */
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,16,46,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #130305 50%, #0a0a0a 100%);
}

/* Ligne décorative or en bas du hero quand pas d'image */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.hero__img { object-position: center; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 55%,
    rgba(10,10,10,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 3.5rem 1.5rem;    /* ← réduit légèrement depuis 4rem */
}

.hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;       /* ← réduit depuis 1.2rem */
}

/* HERO TITLE — clamp plus serré, évite le trop grand sur tablette */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem); /* ← était clamp(2rem,5vw,3.8rem) */
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;       /* ← réduit depuis 1.2rem */
}
.hero__title span { color: var(--red); }

.hero__subtitle {
  font-size: 1rem;           /* ← réduit depuis 1.05rem */
  color: rgba(245,245,240,0.75);
  margin-bottom: 2rem;       /* ← réduit depuis 2.2rem */
  max-width: 560px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;     /* ← réduit depuis 2.5rem */
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-family: var(--font-label);
  letter-spacing: 0.05em;
  color: var(--white);
}
.badge__icon { color: var(--gold); font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS — v2
   Belles même sans image : hauteur min garantie, gradient de fond,
   titre visible avec ligne décorative rouge, hover subtil.
═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  /* Fond premium affiché si image absente */
  background: linear-gradient(
    135deg,
    #111 0%,
    #1c0507 45%,
    #110 100%
  );
}

/* Ligne rouge en bas du bloc image — toujours visible, donne du premium */
.card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 2;
}

.card__img { transition: transform 0.5s ease; }
.card:hover .card__img { transform: scale(1.05); }

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.1) 60%);
}

.card__body { padding: 1.4rem 1.5rem 1.6rem; }

.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.card__desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   LABORATOIRE
═══════════════════════════════════════════════════════════════ */
.labo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.labo__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(201,168,76,0.2);
  /* Fond secours */
  background: linear-gradient(135deg, #0f0f0f 0%, #1c0507 50%, #0f0f0f 100%);
}

.labo__badge-float {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-label);
  z-index: 3;
}
.labo__badge-num  { font-size: 2rem; font-weight: 600; display: block; line-height: 1; }
.labo__badge-text { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.labo__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}

/* Sections sur fond blanc */
.section:not(.section--dark):not(.section--aid) {
  background: var(--white);
  color: var(--text-dark);
}
.section:not(.section--dark):not(.section--aid) .section-header__title { color: var(--text-dark); }
.section:not(.section--dark):not(.section--aid) .section-header__desc  { color: #666; }

.labo__text { font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; color: #444; }
.labo__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  color: #333;
}
.labo__list li { font-size: 0.9rem; font-family: var(--font-label); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════════════════════
   B2B
═══════════════════════════════════════════════════════════════ */
.b2b__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1rem;
}
.b2b__subtitle {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.b2b__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.tag {
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.3);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}
.tag--gold {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}

.advantages-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.advantages-list li { display: flex; gap: 1rem; align-items: flex-start; }
.adv-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.advantages-list strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.advantages-list p { font-size: 0.82rem; color: var(--gray-mid); }

/* ═══════════════════════════════════════════════════════════════
   GROSSISTE
═══════════════════════════════════════════════════════════════ */
.grossiste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.grossiste__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}
.grossiste__text { font-size: 1rem; color: #444; line-height: 1.75; margin-bottom: 1.5rem; }
.grossiste__targets { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.grossiste__visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(201,168,76,0.2);
  /* Fond secours */
  background: linear-gradient(135deg, #f0ede8 0%, #e8e0d8 50%, #f0ede8 100%);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   ÉVÉNEMENTS
═══════════════════════════════════════════════════════════════ */
.events__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.event-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.event-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.event-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.event-card p { font-size: 0.85rem; color: var(--gray-mid); }

/* ═══════════════════════════════════════════════════════════════
   AID EL KEBIR
═══════════════════════════════════════════════════════════════ */
.section--aid {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  /* Fond de secours si image aid.jpg absente */
  background: linear-gradient(135deg, #0a0a0a 0%, #1e0408 50%, #0a0a0a 100%);
}
.aid__bg { position: absolute; inset: 0; overflow: hidden; }
.aid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(200,16,46,0.6) 100%);
}
.aid__content { position: relative; z-index: 1; text-align: center; }
.aid__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin: 0.6rem 0 0.8rem;
}
.aid__subtitle { font-size: 1rem; color: rgba(245,245,240,0.75); margin-bottom: 2.5rem; }
.aid__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.aid__service {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   BOUTIQUES
═══════════════════════════════════════════════════════════════ */
.shop-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.shop-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-3px); }
.shop-card--gold:hover { border-color: rgba(201,168,76,0.5); }

.shop-card__num {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.shop-card--gold .shop-card__num { color: var(--gold); }
.shop-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.shop-card__spec {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.shop-card__info { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.shop-card__info p { font-size: 0.83rem; color: var(--gray-mid); line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}
.contact__text { font-size: 1rem; color: #444; line-height: 1.75; margin-bottom: 2rem; }
.contact__btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.contact__info-title {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.contact__list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact__list strong {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.2rem;
}
.contact__list p, .contact__list a { font-size: 0.92rem; color: #555; transition: color var(--transition); }
.contact__list a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #060606;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}
.footer__brand .logo { margin-bottom: 1rem; }
.footer__desc { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.8rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 0.7rem;
  font-family: var(--font-label);
  color: var(--gray-mid);
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__links ul  { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a   { font-size: 0.85rem; color: var(--gray-mid); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.8; margin-bottom: 0.8rem; }
.footer__contact a { color: var(--gray-mid); transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.2rem 1.5rem; text-align: center; }
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(154,154,149,0.6);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid--4          { grid-template-columns: repeat(2, 1fr); }
  .events__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
  .labo             { gap: 3rem; }
  .grossiste        { gap: 3rem; }
  .b2b__grid        { grid-template-columns: 1fr; }
  .advantages-list  { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   Corrections v2 : hero compact, boutons pleine largeur,
   spacing serré, placeholder visible
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav.open  { transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
  }
  .burger       { display: flex; }
  .header__cta  { display: none; }

  /* ── Sections ── */
  .section { padding: 3.5rem 0; }     /* ← 4rem → 3.5rem */
  .grid--4       { grid-template-columns: 1fr; }
  .events__grid  { grid-template-columns: 1fr; }

  /* ── Hero MOBILE — v2 ── */
  .hero {
    min-height: 100svh;               /* full screen sur mobile = attendu */
    min-height: 100vh;                /* fallback */
    align-items: flex-end;            /* contenu collé en bas de l'écran */
  }

  .hero__content {
    padding: 2rem 1.5rem 3rem;        /* ← réduit considérablement */
    max-width: 100%;
  }

  .hero__eyebrow { margin-bottom: 0.6rem; font-size: 0.7rem; }

  /* Titre mobile : taille fixe contrôlée, pas de clamp qui déborde */
  .hero__title {
    font-size: 1.65rem;               /* ← fixe, était clamp(2rem...) */
    line-height: 1.15;
    margin-bottom: 0.9rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
  }
  /* Boutons pleine largeur sur mobile */
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.88rem;
  }

  .trust-badges  { gap: 0.4rem; }
  .badge         { font-size: 0.72rem; padding: 0.35rem 0.75rem; }

  /* ── Labo ── */
  .labo             { grid-template-columns: 1fr; gap: 2rem; }
  .labo__img-col    { order: -1; }
  .labo__img-wrap   { height: 260px; }           /* ← réduit depuis 300px */
  .labo__list       { grid-template-columns: 1fr; }

  /* ── Grossiste ── */
  .grossiste          { grid-template-columns: 1fr; gap: 2rem; }
  .grossiste__visual  { height: 240px; }         /* ← réduit depuis 260px */

  /* ── B2B ── */
  .advantages-list { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* ── WhatsApp ── */
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }

  /* ── Placeholder visible sur mobile ── */
  .img-placeholder__text { font-size: 0.65rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title           { font-size: 1.45rem; }
  .section-header__title { font-size: 1.5rem; }
  .aid__title            { font-size: 1.6rem; }
  .labo__title,
  .grossiste__title,
  .contact__title        { font-size: 1.5rem; }
  .badge                 { font-size: 0.68rem; padding: 0.3rem 0.6rem; }
  /* Cartes produit : image légèrement moins haute */
  .card__img-wrap        { height: 180px; }
}

.hero__brands {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  width: fit-content;
  max-width: 100%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 2rem;
}
.hero__brand-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.4rem;
  padding: 0 1.2rem;
}
.hero__brand-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 100px !important;
  object-fit: contain !important;
}
.hero__brand-name {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.hero__brand-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero__brands { padding: 0.6rem 0.8rem; }
  .hero__brand-item { padding: 0 0.6rem; }
  .hero__brand-logo { height: 36px !important; max-width: 70px !important; }
  .hero__brand-name { font-size: 0.58rem; }
  .hero__brand-divider { height: 32px; }
}

/* ── FIX HEADER LOGOS ── */
.header-logos {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  overflow: hidden;
  max-width: 220px;
}
.header-logo-img {
  height: 32px !important;
  width: auto !important;
  max-width: 65px !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

/* ── FIX FOOTER LOGOS ── */
.footer-logos {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-logo-img {
  height: 44px !important;
  width: auto !important;
  max-width: 80px !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .header-logos { max-width: 160px; gap: 5px !important; }
  .header-logo-img { height: 24px !important; max-width: 48px !important; }
  .footer-logos { max-width: 220px; gap: 8px !important; }
  .footer-logo-img { height: 34px !important; max-width: 65px !important; }
}
