/* ==========================================================================
   VID TOUT — Débarras & Nettoyage
   Design premium 2026 : alternance de sections claires / sombres pour plus
   de respiration, identité noir + jaune + blanc conservée. Le jaune reste
   une couleur d'ACCENT (boutons, titres clés, chiffres, icônes) — jamais
   une couleur de fond dominante. Le rouge reste réservé au logo.
   ========================================================================== */

:root {
  /* Fonds sombres */
  --bg: #0b0b0b;
  --bg-elevated: #161616;
  --card-border-dark: rgba(255, 255, 255, 0.09);

  /* Fonds clairs */
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #efece5;
  --card-border-light: rgba(23, 21, 18, 0.08);

  /* Texte */
  --text: #f5f2ec;           /* texte principal sur fond sombre */
  --text-muted: #b7b1a7;     /* texte secondaire sur fond sombre */
  --ink: #17140f;            /* texte principal sur fond clair */
  --ink-soft: #55504a;       /* texte secondaire sur fond clair */

  /* Accent jaune VID'TOUT */
  --yellow: #e8a000;
  --yellow-bright: #ffc94d;
  --yellow-ink: #96600a;     /* variante foncée du jaune, lisible sur fond clair */

  --red: #ed1b2f;            /* réservé au logo */

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 9px;
  --container: 1180px;

  --shadow-card: 0 10px 30px rgba(23, 21, 18, 0.07), 0 2px 8px rgba(23, 21, 18, 0.05);
  --shadow-card-hover: 0 18px 40px rgba(23, 21, 18, 0.12);
  --shadow-card-dark: 0 14px 34px rgba(0, 0, 0, 0.35);

  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Oswald", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: "Anton", "Oswald", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--text);
}
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: 0.02em; }
p { margin: 0 0 12px; color: var(--text-muted); font-weight: 300; }

.text-yellow { color: var(--yellow-bright); }

.eyebrow {
  color: var(--yellow-bright);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-sub { max-width: 620px; margin-bottom: 52px; font-size: 1.05rem; color: var(--text-muted); }

.tagline-heading {
  font-style: italic;
  color: var(--yellow-bright);
  position: relative;
  display: inline-block;
}

/* ==========================================================================
   Thèmes de section (alternance clair / sombre pour la respiration)
   ========================================================================== */
.theme-light      { background: var(--off-white); }
.theme-light-alt  { background: var(--light-gray); }
.theme-white      { background: var(--white); }
.theme-dark       { background: var(--bg); }

.theme-light h1, .theme-light h2, .theme-light h3,
.theme-light-alt h1, .theme-light-alt h2, .theme-light-alt h3,
.theme-white h1, .theme-white h2, .theme-white h3 { color: var(--ink); }

.theme-light p, .theme-light .section-sub,
.theme-light-alt p, .theme-light-alt .section-sub,
.theme-white p, .theme-white .section-sub { color: var(--ink-soft); }

.theme-light .eyebrow,
.theme-light-alt .eyebrow,
.theme-white .eyebrow { color: var(--yellow-ink); }

.theme-light .tagline-heading,
.theme-light-alt .tagline-heading,
.theme-white .tagline-heading { color: var(--yellow-ink); }

.theme-light .step-number,
.theme-light-alt .step-number,
.theme-white .step-number { -webkit-text-stroke-color: var(--yellow-ink); }

/* Cartes sur fond clair : blanc, ombre légère, coins arrondis */
.theme-light .service-card, .theme-light-alt .service-card, .theme-white .service-card,
.theme-light .trust-badge, .theme-light-alt .trust-badge, .theme-white .trust-badge,
.theme-light .review-card, .theme-light-alt .review-card, .theme-white .review-card,
.theme-light .contact-item, .theme-light-alt .contact-item, .theme-white .contact-item,
.theme-light .devis-form, .theme-light-alt .devis-form, .theme-white .devis-form {
  background: var(--white);
  border: 1px solid var(--card-border-light);
  box-shadow: var(--shadow-card);
}
.theme-light .service-card:hover, .theme-light-alt .service-card:hover, .theme-white .service-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 160, 0, 0.4);
}

.theme-light .service-card h3, .theme-light-alt .service-card h3, .theme-white .service-card h3,
.theme-light .trust-badge strong, .theme-light-alt .trust-badge strong, .theme-white .trust-badge strong,
.theme-light .contact-item strong, .theme-light-alt .contact-item strong, .theme-white .contact-item strong,
.theme-light .review-author, .theme-light-alt .review-author, .theme-white .review-author { color: var(--ink); }

.theme-light .service-card p, .theme-light-alt .service-card p, .theme-white .service-card p,
.theme-light .trust-badge span, .theme-light-alt .trust-badge span, .theme-white .trust-badge span,
.theme-light .review-card p, .theme-light-alt .review-card p, .theme-white .review-card p,
.theme-light .contact-note, .theme-light-alt .contact-note, .theme-white .contact-note { color: var(--ink-soft); }

.theme-light .contact-item a, .theme-light-alt .contact-item a, .theme-white .contact-item a { color: var(--yellow-ink); }

.theme-light .stars, .theme-light-alt .stars, .theme-white .stars { color: var(--yellow-ink); }

.theme-light .devis-form label, .theme-light-alt .devis-form label, .theme-white .devis-form label { color: var(--ink-soft); }
.theme-light .devis-form input, .theme-light .devis-form select, .theme-light .devis-form textarea,
.theme-light-alt .devis-form input, .theme-light-alt .devis-form select, .theme-light-alt .devis-form textarea,
.theme-white .devis-form input, .theme-white .devis-form select, .theme-white .devis-form textarea {
  background: var(--off-white);
  border: 1px solid var(--card-border-light);
  color: var(--ink);
}
.theme-light .devis-form input:focus, .theme-light .devis-form select:focus, .theme-light .devis-form textarea:focus,
.theme-light-alt .devis-form input:focus, .theme-light-alt .devis-form select:focus, .theme-light-alt .devis-form textarea:focus,
.theme-white .devis-form input:focus, .theme-white .devis-form select:focus, .theme-white .devis-form textarea:focus {
  border-color: var(--yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  font-size: 0.92rem;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  color: #1a1400;
  box-shadow: 0 10px 28px rgba(232, 160, 0, 0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: var(--yellow-bright); color: var(--yellow-bright); }

.btn-dark {
  background: #0a0a0a;
  color: var(--yellow-bright);
  border: 2px solid #0a0a0a;
}

.btn-full { width: 100%; justify-content: center; margin-top: 4px; }
.btn-nav { display: inline-flex; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: repeating-linear-gradient(-45deg, var(--yellow) 0 10px, #0b0b0b 10px 20px) 3;
}

.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; border-radius: 6px; background: #fff; padding: 4px 8px; }

.main-nav { display: flex; gap: 28px; margin-left: auto; font-weight: 600; text-transform: uppercase; font-size: 0.88rem; letter-spacing: 0.05em; }
.main-nav a { color: var(--text-muted); }
.main-nav a:hover { color: var(--yellow-bright); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(232, 160, 0, 0.16), transparent 50%),
    var(--bg);
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.72) 55%, rgba(8,8,8,0.82) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.1) 45%, rgba(8,8,8,0.1) 100%);
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-bottom: 64px; }

.hero-visual {
  position: relative;
  background: transparent;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  margin-top: -40px;
}
.hero-glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(circle, rgba(232,160,0,0.45) 0%, rgba(232,160,0,0) 70%);
  filter: blur(10px);
  animation: pulse-glow 3.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero-logo-img { width: 100%; position: relative; }
.hero-logo-round { max-width: 100%; width: 100%; filter: drop-shadow(0 20px 45px rgba(0,0,0,0.6)); }
.hero-visual-tagline {
  text-align: center;
  color: var(--yellow-bright);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 14px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 0, 0.16);
  color: var(--yellow-bright);
  border: 1px solid rgba(232, 160, 0, 0.5);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.hero h1 { color: var(--text); text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.hero-slogan {
  font-family: "Anton", sans-serif;
  font-style: italic;
  color: var(--yellow-bright);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin: 4px 0 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

.hero-text { font-size: 1.08rem; max-width: 520px; color: #d8d3ca; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 26px 0 40px; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 420px; }
.stat-card {
  background: rgba(22, 22, 22, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--card-border-dark);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
.stat-number { font-family: "Anton", sans-serif; font-size: 1.6rem; color: var(--yellow-bright); letter-spacing: 0.02em; }
.stat-label { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }

.tape-divider {
  position: relative;
  z-index: 1;
  height: 16px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, #0b0b0b 18px 36px);
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-md);
  padding: 30px;
  padding-top: 36px;
  position: relative;
  overflow: visible;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card::before {
  content: attr(data-tag);
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--yellow);
  color: #1a1400;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 5px;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,160,0,0.15); }
.service-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.service-card h3 { text-transform: none; font-family: "Oswald", sans-serif; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.process-step { position: relative; padding-top: 8px; }
.step-number {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 3.2rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.95rem; }

/* ---------- Before / After ---------- */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.ba-card { background: var(--bg-elevated); border: 1px solid var(--card-border-dark); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card-dark); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--yellow); }
.ba-img { position: relative; height: 220px; overflow: hidden; background: #0d0d0d; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-img span {
  position: absolute; top: 10px; left: 10px;
  background: rgba(10,10,10,0.85); color: var(--yellow-bright);
  font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.7rem; padding: 4px 10px; border-radius: 999px;
}
.ba-img:last-child span { color: #1a1400; background: var(--yellow-bright); }
.ba-card h3, .ba-card p { padding-left: 22px; padding-right: 22px; }
.ba-card h3 { margin-top: 18px; }
.ba-card p { font-size: 0.92rem; padding-bottom: 22px; margin-bottom: 0; }
.placeholder-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* ---------- Trust badges ---------- */
.trust-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-badge {
  flex: 1 1 200px; background: var(--bg-elevated); border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-md); padding: 22px; display: flex; flex-direction: column; gap: 4px;
}
.trust-badge strong { color: var(--text); letter-spacing: 0.04em; font-family: "Oswald", sans-serif; }
.trust-badge span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: var(--bg-elevated); border: 1px solid var(--card-border-dark); border-radius: var(--radius-md); overflow: hidden; text-align: center; box-shadow: var(--shadow-card-dark); }
.team-card > h3, .team-card > .team-role, .team-card > p { padding-left: 26px; padding-right: 26px; }
.team-card > h3 { margin-top: 20px; }
.team-card > p { padding-bottom: 26px; }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--yellow);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-avatar {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--yellow-bright), var(--yellow) 70%);
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 1.5rem; color: #1a1400;
  box-shadow: 0 0 0 4px rgba(232,160,0,0.15);
}
.team-avatar-placeholder {
  width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%;
  border: 2px dashed var(--yellow);
  background: rgba(232,160,0,0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.team-avatar-placeholder .camera-icon { font-size: 1.4rem; opacity: 0.85; }
.team-avatar-placeholder .placeholder-label {
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text-muted); text-align: center; line-height: 1.1; padding: 0 6px;
}
.team-role { display: inline-block; color: var(--yellow-bright); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 0.92rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: left; }
.why-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 0.92rem; }

/* ---------- Zone d'intervention ---------- */
.zone-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-tags span {
  background: var(--bg-elevated); border: 1px solid var(--card-border-dark); padding: 10px 20px; border-radius: 999px;
  font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text);
}
.zone-tags .zone-more { color: var(--yellow-bright); border-style: dashed; border-color: var(--yellow); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--bg-elevated); border: 1px solid var(--card-border-dark); border-top: 3px solid var(--yellow); border-radius: var(--radius-md); padding: 28px; }
.stars { color: var(--yellow); letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-style: italic; font-size: 0.95rem; }
.review-author { font-weight: 700; color: var(--text); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(circle at 15% 0%, rgba(232,160,0,0.14), transparent 55%),
    var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 60px 24px; flex-wrap: wrap; position: relative; }
.cta-band h2 { color: var(--text); margin-bottom: 8px; }
.cta-band p { color: var(--text-muted); margin-bottom: 0; max-width: 480px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; border-radius: var(--radius-md); padding: 22px; }
.contact-icon { font-size: 1.4rem; }
.contact-item strong { display: block; margin-bottom: 4px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.04em; }
.contact-note { display: block; font-size: 0.82rem; margin-top: 2px; }

.devis-form { border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.devis-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.devis-form input, .devis-form select, .devis-form textarea {
  border-radius: var(--radius-sm);
  padding: 13px 14px; font-size: 0.95rem; font-family: "Oswald", inherit;
}

/* ---------- Footer ---------- */
.site-footer { background: #050505; border-top: 3px solid; border-image: repeating-linear-gradient(-45deg, var(--yellow) 0 10px, #050505 10px 20px) 3; padding: 44px 0; text-align: center; }
.footer-logo { height: 26px; margin: 0 auto 16px; opacity: 0.9; }
.footer-inner p { margin-bottom: 6px; font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { color: #7a7a7a; font-size: 0.75rem; }

/* ==========================================================================
   Boutique — cohérente avec l'identité VID'TOUT (mêmes couleurs, polices,
   boutons, thèmes de section). Ajouté sans modifier les styles existants.
   ========================================================================== */

.nav-active { color: var(--yellow-bright) !important; }

.shop-teaser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  color: #1a1400;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: filter 0.15s ease;
}
.shop-teaser:hover { filter: brightness(1.05); }
.shop-teaser-cta { font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: underline; }

/* ---------- Shop hero ---------- */
.shop-hero {
  position: relative;
  padding: 72px 0 56px;
  background: radial-gradient(circle at 85% -10%, rgba(232, 160, 0, 0.16), transparent 50%), var(--bg);
  text-align: center;
}
.shop-hero h1 { color: var(--text); }
.shop-hero-text { max-width: 640px; margin: 0 auto 28px; font-size: 1.08rem; color: #d8d3ca; }
.shop-hero .eyebrow { display: block; }
.reassurance-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.reassurance-row span {
  background: rgba(232, 160, 0, 0.12);
  border: 1px solid rgba(232, 160, 0, 0.35);
  color: var(--yellow-bright);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Produit phare ---------- */
.flagship-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.flagship-visual {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-card-dark);
  border: 2px solid var(--yellow);
}
.flagship-photo {
  width: 100%;
  height: auto;
  max-height: 640px;
  display: block;
  margin: 0 auto;
}

.flagship-content h3 { margin-bottom: 10px; }
.flagship-price-row { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 20px; }
.flagship-price { font-family: "Anton", sans-serif; font-size: 3rem; color: var(--yellow-ink); line-height: 1; }
.flagship-price-unit { font-size: 1rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }

.qty-selector { margin-bottom: 14px; }
.qty-selector-label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--ink); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.03em; }
.qty-quick-buttons { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.qty-quick-btn {
  background: var(--white);
  border: 1px solid var(--card-border-light);
  color: var(--ink);
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.qty-quick-btn:hover { border-color: var(--yellow); color: var(--yellow-ink); }
.qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--card-border-light); border-radius: var(--radius-sm); overflow: hidden; }
.qty-step-btn {
  background: var(--off-white);
  border: none;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.qty-step-btn:hover { background: rgba(232,160,0,0.12); }
.qty-stepper input[type="number"] {
  width: 64px;
  height: 42px;
  border: none;
  border-left: 1px solid var(--card-border-light);
  border-right: 1px solid var(--card-border-light);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  -moz-appearance: textfield;
}
.flagship-preview { color: var(--ink-soft); margin: 14px 0 18px; }
.flagship-preview strong { color: var(--ink); }
.flagship-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.flagship-tags span {
  background: var(--off-white);
  border: 1px solid var(--card-border-light);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Packs ---------- */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pack-card {
  background: var(--bg-elevated);
  border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card-dark);
}
.pack-featured { border: 2px solid var(--yellow); transform: scale(1.03); }
.pack-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #1a1400;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pack-tagline { font-size: 0.92rem; min-height: 44px; }
.pack-price { font-family: "Anton", sans-serif; font-size: 2.6rem; color: var(--yellow-bright); margin: 6px 0 14px; }
.pack-price span { font-size: 2.6rem; }
.pack-bags-badge {
  display: inline-block;
  background: rgba(232,160,0,0.12);
  border: 1px solid rgba(232,160,0,0.35);
  color: var(--yellow-bright);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.pack-list { list-style: none; margin: 0 0 24px; padding: 0; flex-grow: 1; }
.pack-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border-dark);
}
.pack-list li:last-child { border-bottom: none; }

/* ---------- Livraison ---------- */
.delivery-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.delivery-info-card {
  background: var(--white);
  border: 1px solid var(--card-border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.delivery-info-price { font-family: "Anton", sans-serif; font-size: 1.5rem; color: var(--yellow-ink); margin-bottom: 6px; }

/* ---------- Commande / panier ---------- */
.order-grid { align-items: start; }
.cart-title { margin-bottom: 18px; }
.cart-empty { color: var(--ink-soft); font-size: 0.95rem; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-border-light);
}
.cart-line-info { display: flex; flex-direction: column; gap: 2px; }
.cart-line-name { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.cart-line-unit { color: var(--ink-soft); font-size: 0.78rem; }
.cart-line-qty { display: inline-flex; align-items: center; gap: 8px; }
.cart-line-qty .qty-step-btn { width: 30px; height: 30px; font-size: 1rem; border-radius: var(--radius-sm); border: 1px solid var(--card-border-light); }
.cart-line-qty-value { min-width: 20px; text-align: center; font-weight: 700; color: var(--ink); }
.cart-line-subtotal { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cart-line-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
}
.cart-line-remove:hover { color: var(--red); }

.cart-summary { margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--card-border-light); display: flex; flex-direction: column; gap: 10px; }
.cart-summary-row { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 0.92rem; }
.cart-summary-total { font-weight: 700; color: var(--ink); font-size: 1.15rem; padding-top: 8px; border-top: 1px dashed var(--card-border-light); }
.cart-summary-total span:last-child { color: var(--yellow-ink); }

.order-field-row { display: flex; gap: 14px; }
.order-field-row label { flex: 1; }
.delivery-choice { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 18px; }
.delivery-radio {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--ink) !important;
  cursor: pointer;
}
.delivery-radio input { width: 16px; height: 16px; accent-color: var(--yellow); }

.order-error {
  background: rgba(237, 27, 47, 0.08);
  border: 1px solid rgba(237, 27, 47, 0.3);
  color: #a3121f;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}
.order-disclaimer { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 10px; margin-bottom: 0; }

/* ---------- Floating cart bar ---------- */
.floating-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--bg);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.floating-cart span { color: var(--text); font-size: 0.88rem; font-weight: 600; }
.floating-cart #floating-cart-total { color: var(--yellow-bright); font-weight: 700; }
.floating-cart .btn { padding: 10px 18px; font-size: 0.82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 320px; margin: 0 auto; margin-top: 0; align-self: center; }
  .services-grid, .process-grid, .team-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }

  /* Boutique */
  .flagship-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .pack-featured { transform: none; }
  .delivery-info-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #0b0b0b;
    border-bottom: 3px solid;
    border-image: repeating-linear-gradient(-45deg, var(--yellow) 0 10px, #0b0b0b 10px 20px) 3;
    padding: 8px 24px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--card-border-dark); }
  .main-nav a:last-child { border-bottom: none; }
  .header-inner { position: relative; }
  .nav-toggle { display: inline-block; }
  .btn-nav { display: none; }
  .services-grid, .process-grid, .team-grid, .reviews-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .section-sub { margin-bottom: 36px; }
  .hero { padding-top: 40px; }
  .hero-video-wrap { min-height: 100%; }

  /* Boutique */
  .order-field-row { flex-direction: column; gap: 0; }
  .cart-line { grid-template-columns: 1fr auto; row-gap: 8px; }
  .cart-line-subtotal { grid-column: 2; grid-row: 2; justify-self: end; }
  .cart-line-remove { grid-column: 2; grid-row: 1; justify-self: end; }
  .cart-line-qty { grid-column: 1; grid-row: 2; }
  .floating-cart { flex-wrap: wrap; justify-content: center; width: calc(100% - 32px); left: 16px; transform: none; text-align: center; }
  .flagship-photo { max-height: 420px; }
}
