/* ============================================================
   NAIL MOMENT'S BEAUTY — Design System v2.0
   ------------------------------------------------------------
   Palette : Roses poudres, Cream, Taupes roses, Bordeaux brun
   Typographie : DM Sans (corps + UI) + Playfair Display (titres) + Dancing Script (accents)
   ------------------------------------------------------------
   Studrix design system. Dancing Script reserve aux accents
   decoratifs (logo, script-font) car peu lisible en petit.
   Les titres utilisent Playfair Display, le corps utilise DM Sans.
   Les 3 fonts sont chargees via <link> Google Fonts dans chaque <head>.
   ============================================================ */

:root {
  /* ===== Palette officielle Nail Moment's Beauty (2026) ===== */

  /* Roses poudres */
  --rose-light: #F1C0BB;     /* clair */
  --rose: #E0ADAA;           /* medium */
  --rose-mid: #C18788;       /* fonce */
  --bordeaux: #894E50;       /* bordeaux brun tres fonce */
  --bordeaux-dark: #6b3c3e;  /* bordeaux assombri pour hover */

  /* Cream */
  --cream: #F5E9E7;
  --cream-soft: #FBF4F2;     /* variante encore plus claire pour fonds */

  /* Taupes roses */
  --taupe-light: #C6A29C;
  --taupe: #A67975;
  --taupe-mid: #966561;
  --taupe-dark: #92706A;

  /* Neutres + texte (contraste WCAG AA+) */
  --charcoal: #2d2926;        /* texte principal — 13:1 sur cream */
  --text-body: #3d2528;       /* texte body chaud (warm dark) — 12:1 sur cream */
  --text-muted: #5a4144;      /* texte secondaire warm — 8:1 sur cream */
  --grey: #5a4144;            /* alias backward-compat — passe a warm dark */
  --grey-light: #8a7479;      /* legendes / captions — 5:1 minimum */
  --white: #ffffff;

  /* ===== Aliases backward-compat (anciennes variables CSS) ===== */
  /* L'ancien dore devient un taupe rose (la charte n'a pas de dore) */
  --gold: var(--taupe-light);
  --gold-light: var(--cream);

  /* ===== Tokens design ===== */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --shadow-soft: 0 4px 24px rgba(137, 78, 80, 0.08);
  --shadow-medium: 0 8px 32px rgba(137, 78, 80, 0.12);
  --shadow-strong: 0 16px 48px rgba(137, 78, 80, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.4s var(--ease);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream-soft);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--rose-light); color: var(--bordeaux-dark); }

/* ============================================================
   Typography
   ------------------------------------------------------------
   Dancing Script reserve aux ACCENTS decoratifs uniquement :
   - h1 (hero principal seulement, taille genereuse)
   - .script-font, .section-subtitle, .logo, .brand-item
   Tous les autres titres (h2/h3/h4/h5) en DM Sans pour lisibilite.
   ============================================================ */

/* h1 = Playfair Display (headings serif chic) */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.05;
  color: var(--bordeaux);
  letter-spacing: 0.005em;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

/* Tous les autres titres = DM Sans, lisibilite max */
h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
}

h4 {
  font-size: 1.08rem;
  font-weight: 600;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Body paragraphs : contraste WCAG AAA, lisibles partout */
p {
  font-weight: 400;
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
}

p.lead, .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
}

p.muted, .muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.script-font {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  color: var(--bordeaux);
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--taupe-mid);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--taupe-mid) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(137, 78, 80, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(137, 78, 80, 0.32);
}

.btn-outline {
  border: 1.5px solid var(--bordeaux);
  color: var(--bordeaux);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(137, 78, 80, 0.22);
}

/* .btn-gold conserve pour backward-compat — desormais en taupe rose */
.btn-gold {
  background: linear-gradient(135deg, var(--taupe-light) 0%, var(--taupe) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(166, 121, 117, 0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--taupe) 0%, var(--taupe-mid) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(166, 121, 117, 0.32);
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(241, 192, 187, 0.15);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(193, 135, 136, 0.3);
}

.card-body {
  padding: 1.75rem;
}

/* ============================================================
   Section Layout
   ============================================================ */
.section {
  padding: 4.5rem 1.5rem;
  overflow: hidden;
}

.section-alt {
  background: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: all 0.4s var(--ease);
  background: rgba(251, 244, 242, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header.scrolled {
  background: rgba(251, 244, 242, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 28px rgba(137, 78, 80, 0.08);
  padding: 0.85rem 2rem;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ===== Logo header — GROS, image + texte cote a cote ===== */

/* Image logo paillettes - GROS */

/* Wrapper texte a cote du logo image */

/* Reduction header scrolled */

/* ===== Logo officiel (a integrer plus tard) =====
   .logo-paillettes : cercle paillettes en background-image
   .logo-text : texte script italic du nom complet
*/
.logo-paillettes {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--rose-light);
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 16px rgba(137, 78, 80, 0.15);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--bordeaux);
  line-height: 1;
  font-style: normal;
}

.nav { display: flex; align-items: center; gap: 2.4rem; }

.nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 0.3rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--bordeaux);
  transition: width 0.4s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover { color: var(--bordeaux); }

.header-cta {
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 4px;
  transition: all 0.35s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: var(--cream-soft);
  padding: 5.5rem 2rem 2rem;
  transition: left 0.45s var(--ease);
  box-shadow: 8px 0 30px rgba(137, 78, 80, 0.12);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav.open { left: 0; }

.mobile-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(193, 135, 136, 0.18);
  display: block;
  color: var(--charcoal);
}

.mobile-nav a:hover { color: var(--bordeaux); }

.mobile-nav .btn {
  margin-top: 1.5rem;
  text-align: center;
  justify-content: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1002;
}

.mobile-overlay.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand .logo {
  color: var(--rose-light);
  margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--taupe-light); }

.footer-hours {
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-hours strong { color: var(--rose-light); font-weight: 600; }

.footer-links a {
  display: block;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--rose-light);
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--rose-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  color: var(--white);
}

.footer-social a:hover {
  background: var(--bordeaux);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover { color: var(--rose-light); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 50%, var(--rose) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(45, 41, 38, 0.35) 0%,
      rgba(45, 41, 38, 0.15) 40%,
      rgba(137, 78, 80, 0.5) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero .subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-badge svg { color: rgba(255, 255, 255, 0.8); }

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--bordeaux);
  border-color: var(--white);
}

/* ============================================================
   Welcome Section
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.welcome-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}

.welcome-img .placeholder-icon {
  color: var(--rose-mid);
  opacity: 0.6;
}

/* ============================================================
   Services Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  transition: all 0.5s var(--ease);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
  transition: all 0.5s var(--ease);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--taupe-mid) 100%);
  color: var(--white);
  transform: scale(1.06);
}

.service-card h3 { margin-bottom: 0.85rem; }
.service-card p {
  color: var(--text-body);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  overflow: hidden;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream), var(--rose-light));
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(137, 78, 80, 0));
  transition: background 0.4s var(--ease);
}

.gallery-item:hover::after {
  background: linear-gradient(180deg, transparent 30%, rgba(137, 78, 80, 0.25));
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-slider {
  position: relative;
  overflow: clip;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 3rem;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--rose);
  opacity: 0.55;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
}

.testimonial-source {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 0.2rem;
}

.testimonial-stars { color: var(--taupe); margin-bottom: 0.75rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose-light);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--bordeaux);
  width: 32px;
  border-radius: 5px;
}

/* ============================================================
   Map / Location
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
  box-shadow: var(--shadow-medium);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info h3 { margin-bottom: 1.75rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.info-item svg {
  flex-shrink: 0;
  color: var(--bordeaux);
  margin-top: 2px;
}

.info-item a:hover { color: var(--bordeaux); }

.hours-table {
  width: 100%;
  font-size: 0.92rem;
}

.hours-table td {
  padding: 0.45rem 0;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--bordeaux);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, var(--bordeaux) 0%, var(--taupe-mid) 60%, var(--taupe) 100%);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(241, 192, 187, 0.2) 0%, transparent 50%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--bordeaux);
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
  color: var(--bordeaux-dark);
}

/* ============================================================
   Brands
   ============================================================ */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.brand-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bordeaux);
  opacity: 0.92;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-item:hover {
  opacity: 1;
  color: var(--bordeaux);
  transform: translateY(-2px);
}

/* ============================================================
   Forms / Inputs
   ============================================================ */
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rose-light);
  transition: border-color 0.4s var(--ease);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey-light);
  font-weight: 300;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--taupe);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 0.4rem;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; order: -1; }
  .header-inner { flex-direction: row; }
  .logo { order: 0; flex: 1; justify-content: center; }

  /* Header mobile : logo reduit mais reste lisible */
  .header { padding: 1rem 1.25rem; }
  .header.scrolled { padding: 0.6rem 1.25rem; }
  .logo { font-size: 1.9rem; gap: 0.7rem; }
  .logo-img { height: 64px; width: 64px; }
  .header.scrolled .logo-img { height: 52px; width: 52px; }
  .logo-text-wrapper > span:first-child { font-size: 1.7rem; }
  .header.scrolled .logo-text-wrapper > span:first-child { font-size: 1.5rem; }

  .hero { min-height: 90vh; padding: 7rem 1.25rem 4rem; }
  .section { padding: 3rem 1.25rem; }

  .welcome-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome-img { max-height: 380px; }

  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { padding: 2rem 1.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .testimonial-card { padding: 2rem 1rem; }
  .testimonial-quote { font-size: 1.05rem; }

  .logo { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-buttons .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .hero-badges { gap: 0.5rem; }
  .hero-badge { font-size: 0.74rem; padding: 0.5rem 0.9rem; }
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--bordeaux);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1.5px solid var(--rose-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.01em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  color: var(--charcoal);
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.legal-content ul, .legal-content ol {
  margin: 0.85rem 0 1.4rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-content a { color: var(--bordeaux); font-weight: 500; border-bottom: 1px solid var(--rose-light); }
.legal-content a:hover { color: var(--bordeaux-dark); border-bottom-color: var(--bordeaux); }

.legal-encadre {
  background: var(--cream);
  border-left: 3px solid var(--bordeaux);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.6rem 2rem;
  margin: 1.6rem 0;
  font-size: 0.92rem;
}

.legal-encadre p { margin-bottom: 0.6rem; }
.legal-encadre ol { margin: 0.5rem 0 0.75rem 1.5rem; }
.legal-encadre li { margin-bottom: 0.35rem; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.92rem;
}

.legal-table th, .legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rose-light);
}

.legal-table th {
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
}

.legal-table tr:hover td { background: var(--cream-soft); }

.legal-list {
  list-style: none;
  margin-left: 0 !important;
  padding-left: 0;
}

.legal-list li {
  padding-left: 1.6rem;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--taupe);
  border-radius: 50%;
}

/* ============================================================
   Cart
   ============================================================ */
.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  transition: all 0.35s var(--ease);
  margin-left: 0.5rem;
  cursor: pointer;
}

.cart-toggle:hover {
  background: var(--cream);
  color: var(--bordeaux);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
}

.cart-overlay.show { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(137, 78, 80, 0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.45s var(--ease);
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--rose-light);
  background: var(--cream-soft);
}

.cart-drawer-header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--bordeaux);
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--grey);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.cart-close:hover {
  background: var(--rose-light);
  color: var(--bordeaux);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
}

.cart-empty {
  text-align: center;
  padding: 3.5rem 1rem;
}

.cart-empty svg { margin-bottom: 1.2rem; color: var(--rose); }

.cart-empty p {
  color: var(--grey);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.85rem;
}

.cart-item-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--charcoal);
  flex: 1;
  line-height: 1.5;
}

.cart-item-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--bordeaux);
  font-size: 0.98rem;
  white-space: nowrap;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--rose);
  background: var(--white);
  color: var(--bordeaux);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.cart-qty-btn:hover {
  border-color: var(--bordeaux);
  background: var(--cream);
}

.cart-qty {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--grey);
  margin-left: auto;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.cart-remove:hover {
  background: var(--rose-light);
  color: var(--bordeaux);
}

.cart-drawer-footer {
  padding: 1.4rem 1.75rem;
  border-top: 1px solid var(--rose-light);
  background: var(--cream-soft);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.cart-total span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.cart-total-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bordeaux);
}

.cart-cgv {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  font-size: 0.78rem;
  color: var(--grey);
  cursor: pointer;
  line-height: 1.5;
}

.cart-cgv input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--bordeaux);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cart-cgv a { color: var(--bordeaux); text-decoration: underline; }
.cart-cgv a:hover { color: var(--bordeaux-dark); }

.cart-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   Product Card: Add to cart button
   ============================================================ */
.btn-add-cart {
  padding: 0.5rem 1.1rem;
  font-size: 0.74rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--bordeaux);
  color: var(--bordeaux);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-add-cart:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(137, 78, 80, 0.22);
}

/* ============================================================
   Product compliance info
   ============================================================ */
.product-compliance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--cream);
  font-size: 0.7rem;
  color: var(--grey);
}

.product-compliance .triman {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   Cookie banner override (tarteaucitron)
   ============================================================ */
#tarteaucitronRoot #tarteaucitronAlertBig {
  background: var(--charcoal) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 -8px 32px rgba(45, 41, 38, 0.2) !important;
  font-family: 'DM Sans', sans-serif !important;
}

#tarteaucitronRoot #tarteaucitronPersonalize,
#tarteaucitronRoot #tarteaucitronAllDenied2 {
  background: var(--bordeaux) !important;
  border-radius: var(--radius-pill) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
}

#tarteaucitronRoot #tarteaucitronCloseAlert {
  background: var(--taupe) !important;
  border-radius: var(--radius-pill) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
}

/* ============================================================
   Responsive: Cart
   ============================================================ */
@media (max-width: 768px) {
  .cart-drawer { width: 100%; }
  .cart-toggle { margin-left: 0; }
}

@media (max-width: 480px) {
  .cart-drawer-footer { padding: 1.1rem; }
  .cart-item-info { flex-direction: column; gap: 0.3rem; }
}

/* ============================================================
   FIN — Charte officielle Nail Moment's Beauty (2026)
   ============================================================ */

/* ============================================
   BOUTIQUE CATALOGUE — Grille + Filtres + Modal fiche produit
   Ajouté pour Nail Moment's Beauty boutique catalogue Indigo/One Minute/Yumi
   ============================================ */

.shop-filters-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.shop-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.shop-filter,
.shop-filter-marque {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  background: transparent;
  border: 1px solid var(--rose-mid);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}
.shop-filter:hover,
.shop-filter-marque:hover { color: var(--bordeaux); border-color: var(--bordeaux); }
.shop-filter.active,
.shop-filter-marque.active {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}
.shop-search { flex: 1; min-width: 200px; }
.shop-search input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid var(--rose-mid);
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
}
.shop-search input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
@media (min-width: 1280px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(180, 110, 110, 0.15);
}
.product-card .product-img {
  aspect-ratio: 1;
  background-color: #fafafa;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid #f3f3f3;
}
/* placeholder rewritten in Wave 4 block below */
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.product-badge--bestseller { background: var(--bordeaux); }
.product-badge--nouveau { background: var(--gold); }
.product-card .product-body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product-card .product-marque {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
.product-card .product-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bordeaux-dark);
  margin: 0;
  line-height: 1.3;
}
.product-card .product-format {
  font-size: 0.78rem;
  color: var(--grey);
  margin: 0;
}
.product-card .product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bordeaux);
  margin-top: auto;
  padding-top: 0.5rem;
}

.products-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--grey);
}
.products-empty p { margin-bottom: 1rem; }

/* Modal fiche produit */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-modal[hidden] { display: none; }
.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 30, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.product-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  border: 1px solid var(--rose-mid);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--bordeaux);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.product-modal-close:hover { background: var(--bordeaux); color: var(--white); }
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.product-modal-media {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 380px;
}
.product-modal-image {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}
.product-modal-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-modal-marque {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
.product-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--bordeaux-dark);
  margin: 0;
  line-height: 1.2;
}
.product-modal-format {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}
.product-modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--bordeaux);
  font-weight: 700;
  margin: 0.5rem 0;
}
.product-modal-fragrance {
  font-style: italic;
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}
.product-modal-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin: 0.5rem 0;
}
.product-modal-inci {
  margin-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
}
.product-modal-inci summary {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bordeaux);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-modal-inci p {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.product-modal-cta { margin-top: auto; padding-top: 1rem; }
.product-modal-cta .btn { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }
.product-modal-note {
  font-size: 0.7rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.6rem;
  }

@media (max-width: 768px) {
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-media { min-height: 280px; padding: 1.5rem; }
  .product-modal-image { max-height: 240px; }
  .product-modal-body { padding: 1.5rem; }
  .product-modal-title { font-size: 1.3rem; }
  .shop-filters-bar { padding: 1rem; }
}

/* === BOUTIQUE POLISH v3 === */
/* ============================================
   BOUTIQUE POLISH v3 — Skeleton, focus, motion,
   mobile drawer, hover image, modal nav, sort dropdown,
   search highlight
   ============================================ */

/* ---- 1. Skeleton loader ---- */
.product-card-skeleton {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.product-card-skeleton .skeleton-img {
  aspect-ratio: 1;
  background: linear-gradient(
    90deg,
    var(--rose-light) 0%,
    var(--cream) 50%,
    var(--rose-light) 100%
  );
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}
.product-card-skeleton .skeleton-body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card-skeleton .skeleton-line {
  height: 0.75rem;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--rose-light) 0%,
    var(--cream) 50%,
    var(--rose-light) 100%
  );
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}
.product-card-skeleton .skeleton-line.short { width: 40%; height: 0.6rem; }
.product-card-skeleton .skeleton-line.title { width: 85%; height: 0.9rem; margin-top: 0.25rem; }
.product-card-skeleton .skeleton-line.price { width: 55%; height: 1rem; margin-top: 0.5rem; }
@keyframes skeletonPulse {
  0%   { background-position: 200% 0; opacity: 0.85; }
  50%  { opacity: 1; }
  100% { background-position: -200% 0; opacity: 0.85; }
}

/* ---- 2. Filter counts (text only, no new DOM) ---- */
.shop-filter .shop-filter-count,
.shop-filter-marque .shop-filter-count {
  display: inline;
  opacity: 0.65;
  font-weight: 500;
  margin-left: 0.3em;
}
.shop-filter.is-empty,
.shop-filter-marque.is-empty {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ---- 3. Sort dropdown ---- */
.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 190px;
}
.shop-sort label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  font-weight: 600;
  white-space: nowrap;
}
.shop-sort select {
  flex: 1;
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--rose-mid);
  background: var(--white);
  color: var(--bordeaux);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23894E50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  transition: border-color 0.2s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1);
}
.shop-sort select:hover { border-color: var(--bordeaux); }

/* ---- 5. prefers-reduced-motion override ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-img-wrapper img { transform: none; }
  .product-card-skeleton .skeleton-img,
  .product-card-skeleton .skeleton-line {
    animation: none;
    background: var(--rose-light);
  }
  .product-modal-content { animation: none; }
}

/* ---- 6. :focus-visible ring dore ---- */
.product-card:focus-visible,
.shop-filter:focus-visible,
.shop-filter-marque:focus-visible,
.shop-sort select:focus-visible,
.shop-search input:focus-visible,
.product-modal-close:focus-visible,
.product-modal-nav:focus-visible,
#shop-reset-btn:focus-visible,
.shop-mobile-toggle:focus-visible,
.shop-drawer-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 14px;
}
.shop-filter:focus-visible,
.shop-filter-marque:focus-visible,
.shop-sort select:focus-visible,
.shop-search input:focus-visible,
#shop-reset-btn:focus-visible { border-radius: 50px; }
.product-modal-close:focus-visible,
.product-modal-nav:focus-visible { border-radius: 50%; }

/* ---- 7. Hover image scale (wrapper-based) ---- */
.product-card .product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #fafafa;
  border-bottom: 1px solid #f3f3f3;
}
.product-card .product-img-wrapper .product-img {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-bottom: none;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img-wrapper .product-img:not(.placeholder) {
  transform: scale(1.05);
}
/* Placeholder stays static — pas de scale sur gradient */
.product-card:hover .product-img-wrapper .product-img.placeholder {
  transform: none;
}

/* ---- 8. Modal nav prev/next ---- */
.product-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rose-mid);
  color: var(--bordeaux);
  font-size: 1.6rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
}
.product-modal-nav:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.product-modal-nav-prev { left: -24px; }
.product-modal-nav-next { right: -24px; }
.product-modal-nav span { display: inline-block; line-height: 0.8; padding-bottom: 3px; }

/* ---- 9. Highlight matches ---- */
.product-card mark,
.product-modal-title mark {
  background: var(--gold-light);
  color: var(--bordeaux-dark);
  padding: 0 0.15em;
  border-radius: 3px;
  font-weight: 700;
}

/* ---- 10. Mobile drawer filters ---- */
.shop-mobile-toggle {
  display: none;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--bordeaux);
  background: var(--white);
  color: var(--bordeaux);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-height: 44px;
}
.shop-mobile-toggle svg { flex-shrink: 0; }
.shop-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 20, 30, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.shop-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.shop-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: var(--white);
  z-index: 9998;
  box-shadow: 4px 0 24px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 4rem 1.5rem 1.5rem;
}
.shop-drawer.is-open { transform: translateX(0); }
.shop-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rose-mid);
  color: var(--bordeaux);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .shop-mobile-toggle { display: flex; }
  .shop-filters-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(85vw, 360px);
    z-index: 9998;
    box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    margin-bottom: 0;
    border-radius: 0;
    padding: 4rem 1.5rem 1.5rem;
    overflow-y: auto;
    gap: 1.5rem;
  }
  .shop-filters-bar.is-open { transform: translateX(0); }
  .shop-filter-group { flex-direction: column; align-items: stretch; }
  .shop-filter,
  .shop-filter-marque {
    text-align: left;
    min-height: 44px;
    padding: 0.7rem 1.2rem;
  }
  .shop-sort { width: 100%; }
  .shop-sort select { min-height: 44px; }
  .shop-search input { min-height: 44px; }
  .product-modal-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .product-modal-nav-prev { left: 4px; }
  .product-modal-nav-next { right: 4px; }
}

/* ---- Touch targets ---- */
.shop-filter,
.shop-filter-marque { min-height: 36px; }
@media (max-width: 768px) {
  .shop-filter,
  .shop-filter-marque,
  .product-card { min-height: 44px; }
}
/* === /BOUTIQUE POLISH v3 === */

/* ============================================================================
   TEAM CARDS + TEAM MODAL (Wave 4)
   ============================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.team-card:hover { transform: translateY(-4px); }
.team-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.team-photo {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  position: relative;
  overflow: hidden;
  padding: 3px;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)),
                    linear-gradient(135deg, var(--gold) 0%, var(--rose-mid) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  transition: background-image 0.35s cubic-bezier(.4,0,.2,1);
}
.team-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.team-card:hover .team-photo-inner { transform: scale(1.05); }
.team-card:hover .team-photo {
  background-image: linear-gradient(var(--white), var(--white)),
                    linear-gradient(135deg, var(--bordeaux) 0%, var(--rose-mid) 100%);
}
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bordeaux-dark);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.team-card .team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}
.team-card .team-specialites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.team-card .team-specialite {
  background: var(--rose-light);
  color: var(--bordeaux-dark);
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { width: 180px; height: 180px; }
}

/* Team modal — mirrors product-modal structure */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.team-modal[hidden] { display: none; }
.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 30, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.team-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.4s cubic-bezier(.4,0,.2,1);
}
.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--bordeaux);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s;
}
.team-modal-close:hover { background: var(--bordeaux); color: var(--white); }
.team-modal-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 50%;
}
.team-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 420px;
}
.team-modal-media {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.team-modal-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(120, 60, 60, 0.25);
  border: 4px solid var(--white);
}
.team-modal-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-modal-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.team-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bordeaux-dark);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.team-modal-bio {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.65;
}
.team-modal-bio p { margin: 0 0 0.75rem; }
.team-modal-specialites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.team-modal-specialites .team-specialite {
  background: var(--rose-light);
  color: var(--bordeaux-dark);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
}
.team-modal-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.25s;
}
.team-modal-instagram:hover { background: var(--bordeaux-dark); }
.team-modal-instagram:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .team-modal-grid { grid-template-columns: 1fr; }
  .team-modal-media { min-height: 280px; padding: 1.5rem; }
  .team-modal-image { max-width: 220px; }
  .team-modal-body { padding: 1.5rem; }
  .team-modal-title { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .team-card { transition: none; }
  .team-card:hover { transform: none; }
  .team-card:hover .team-photo-inner { transform: none; }
  .team-modal-content { animation: none; }
}

/* ============================================================================
   PRODUCT PLACEHOLDER ELEGANT (Wave 4)
   ============================================================================ */
.product-card .product-img.placeholder {
  background-image: linear-gradient(135deg, #fdf7f3 0%, #f5e8e6 50%, #eed6cc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--bordeaux-dark);
  font-size: 1rem;
  text-align: center;
  padding: 2rem 1.5rem;
  line-height: 1.3;
  position: relative;
}
.product-card .product-img.placeholder::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b78b63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2c1.8 3.2 5 6 5 10a5 5 0 0 1-10 0c0-4 3.2-6.8 5-10z'/></svg>");
}
.product-card .product-img.placeholder .placeholder-name {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bordeaux-dark);
  margin: 0;
}
.product-card .product-img.placeholder .placeholder-format {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  font-weight: 600;
}
.product-card .product-img { border-bottom: 1px solid #f0e8e5; }

/* ============================================
   BOUTIQUE TOOLBAR v2 — Barre fine Sephora style
   Override les anciens .shop-filters-bar / .shop-filter
   ============================================ */

/* Desactive l'ancienne barre */
.shop-filters-bar { display: none !important; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  margin-bottom: 2.25rem;
  background: var(--white);
  border: 1px solid #f0e8e5;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Gauche : tabs categorie */
.shop-toolbar-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop-toolbar-tabs::-webkit-scrollbar { display: none; }

.shop-tab {
  position: relative;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shop-tab:hover { color: var(--bordeaux); }
.shop-tab.active {
  color: var(--bordeaux-dark);
}
.shop-tab.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.25rem;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 2px;
}
.shop-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Droite : dropdowns + search */
.shop-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.shop-select-wrap {
  position: relative;
  display: inline-flex;
}
.shop-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.5rem 2rem 0.5rem 0.9rem;
  background: var(--white);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  border: 1px solid #e5dcd9;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bordeaux-dark);
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-height: 38px;
}
.shop-select:hover { border-color: var(--rose-mid); }
.shop-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.shop-search-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid #e5dcd9;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  min-height: 38px;
}
.shop-search-inline:hover { border-color: var(--rose-mid); }
.shop-search-inline:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.15);
}
.shop-search-inline svg { color: var(--grey); flex-shrink: 0; }
.shop-search-inline input {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--bordeaux-dark);
  width: 140px;
}
.shop-search-inline input::placeholder { color: #aaa; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive mobile */
@media (max-width: 820px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .shop-toolbar-tabs {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
  }
  .shop-toolbar-controls {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .shop-select-wrap { flex: 1 1 auto; }
  .shop-select { width: 100%; }
  .shop-search-inline { width: 100%; }
  .shop-search-inline input { width: 100%; flex: 1; }
}
@media (max-width: 480px) {
  .shop-tab { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-tab, .shop-select, .shop-search-inline { transition: none; }
}

/* ============================================
   BOUTIQUE NAV v3 — Ultra minimaliste Apple/Sephora
   Retire card, pills, dropdowns massifs. Text links + separator.
   ============================================ */

.shop-filters-bar,
.shop-toolbar { display: none !important; }

.shop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 0 0 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #ece3e0;
}

.shop-nav-cats {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  flex: 1 1 auto;
}

.shop-nav-link {
  position: relative;
  padding: 0.35rem 0.1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.shop-nav-link:hover {
  color: var(--bordeaux);
}
.shop-nav-link.active {
  color: var(--bordeaux-dark);
  font-weight: 600;
}
.shop-nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  bottom: 0;
  height: 1.5px;
  background: var(--bordeaux);
}
.shop-nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.shop-nav-sep {
  color: #d4c7c2;
  font-size: 0.9rem;
  padding: 0 0.15rem;
  user-select: none;
  pointer-events: none;
}

.shop-nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
}

.shop-nav-search {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--grey);
  border-bottom: 1px solid transparent;
  padding: 0.35rem 0;
  transition: border-color 0.2s ease;
}
.shop-nav-search:hover,
.shop-nav-search:focus-within {
  border-bottom-color: var(--rose-mid);
}
.shop-nav-search svg { color: var(--grey); flex-shrink: 0; opacity: 0.7; }
.shop-nav-search input {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--bordeaux-dark);
  width: 140px;
}
.shop-nav-search input::placeholder {
  color: var(--grey);
  opacity: 0.7;
}

.shop-nav-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: var(--grey);
  position: relative;
}
.shop-nav-sort select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0.35rem 0.15rem 0.35rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  outline: 0;
}
.shop-nav-sort select:hover,
.shop-nav-sort:hover { color: var(--bordeaux); }
.shop-nav-sort select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.shop-nav-sort svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.shop-nav-sort:hover svg { transform: translateY(1px); }

/* Mobile */
@media (max-width: 720px) {
  .shop-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-bottom: 1.25rem;
  }
  .shop-nav-cats {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .shop-nav-cats::-webkit-scrollbar { display: none; }
  .shop-nav-link { white-space: nowrap; font-size: 0.88rem; }
  .shop-nav-right {
    justify-content: space-between;
    width: 100%;
  }
  .shop-nav-search input { width: 100%; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-nav-link,
  .shop-nav-search,
  .shop-nav-sort select,
  .shop-nav-sort svg { transition: none; }
}

/* ============================================
   TEAM BANNIERE — 4 photos alignees plein largeur
   Remplace l'ancienne team-grid ronde
   ============================================ */

.section-team-hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Disable old team-grid */
.team-grid { display: none !important; }

.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.team-strip-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #faf5f2;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1),
              box-shadow 0.5s cubic-bezier(.4,0,.2,1);
}
.team-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(180, 110, 110, 0.18);
}
.team-strip-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.team-strip-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.team-strip-card:hover .team-strip-photo {
  transform: scale(1.05);
}

.team-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 22, 28, 0.72) 0%,
    rgba(42, 22, 28, 0.35) 30%,
    rgba(42, 22, 28, 0) 60%
  );
  pointer-events: none;
}

.team-strip-info {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: var(--white);
  pointer-events: none;
}
.team-strip-info .team-strip-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.35rem;
  opacity: 0.95;
}
.team-strip-info .team-strip-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.team-strip-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.team-strip-card:hover .team-strip-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .team-strip { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .team-strip-info .team-strip-name { font-size: 1.3rem; }
}
@media (max-width: 560px) {
  .team-strip { grid-template-columns: 1fr; }
  .team-strip-card { aspect-ratio: 4 / 3; }
  .team-strip-info .team-strip-name { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .team-strip-card,
  .team-strip-photo,
  .team-strip-hint { transition: none; }
  .team-strip-card:hover { transform: none; }
  .team-strip-card:hover .team-strip-photo { transform: none; }
}

/* ============================================
   MODAL FICHE PRODUIT v2 (override layout v1)
   Override via `.product-modal-content--v2` pour
   ne PAS casser d'eventuel usage residuel de v1.
   ============================================ */

.product-modal-content--v2 {
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-modal-content--v2 .product-modal-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2.25rem 2.5rem 2.5rem;
  scroll-behavior: smooth;
}

/* ---- Hero grid : galerie + details ---- */
.product-modal-content--v2 .product-modal-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---- Galerie ---- */
.product-modal-content--v2 .product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-modal-content--v2 .product-modal-main-image {
  position: relative;
  background: #fafafa;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f0e8e5;
}

.product-modal-content--v2 .product-modal-main-image .product-modal-image {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  display: block;
}

.product-modal-content--v2 .product-modal-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--rose-mid);
  text-align: center;
  padding: 1.5rem;
}

.product-modal-content--v2 .product-modal-image-placeholder[hidden] { display: none; }

.product-modal-content--v2 .product-modal-image-placeholder p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--bordeaux-dark);
}

.product-modal-content--v2 .product-modal-thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.5rem;
  scrollbar-width: thin;
}

.product-modal-content--v2 .product-modal-thumbs:empty { display: none; }

.product-modal-content--v2 .product-modal-thumb {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: #fafafa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
}

.product-modal-content--v2 .product-modal-thumb:hover {
  transform: translateY(-2px);
}

.product-modal-content--v2 .product-modal-thumb.active {
  border-color: var(--bordeaux);
}

.product-modal-content--v2 .product-modal-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ---- Details ---- */
.product-modal-content--v2 .product-modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.product-modal-content--v2 .product-modal-marque {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}

.product-modal-content--v2 .product-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--bordeaux-dark);
  margin: 0;
  line-height: 1.2;
}

.product-modal-content--v2 .product-modal-format {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

.product-modal-content--v2 .product-modal-format:empty { display: none; }

.product-modal-content--v2 .product-modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--bordeaux);
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
  line-height: 1;
}

.product-modal-content--v2 .product-modal-punchline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3a2a2c;
  margin: 0;
}

.product-modal-content--v2 .product-modal-punchline:empty { display: none; }

.product-modal-content--v2 .product-modal-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: var(--rose-light);
  border-left: 3px solid var(--bordeaux);
  border-radius: 0 8px 8px 0;
  color: var(--bordeaux-dark);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.25rem 0 0.25rem;
}

.product-modal-content--v2 .product-modal-trust svg {
  flex: 0 0 auto;
  color: var(--bordeaux);
}

/* ---- CTA ---- */
.product-modal-content--v2 .product-modal-cta {
  margin-top: 0.75rem;
  padding-top: 0;
}

.product-modal-content--v2 .product-modal-cta .btn-full {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border-radius: 50px;
  text-align: center;
  line-height: 1.2;
}

.product-modal-content--v2 .product-modal-cta .btn-full svg {
  margin-bottom: 0.25rem;
}

.product-modal-content--v2 .product-modal-cta .btn-main {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-modal-content--v2 .product-modal-cta .btn-sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.product-modal-content--v2 .product-modal-note {
  font-size: 0.72rem;
  color: var(--grey-light);
  text-align: center;
  margin-top: 0.65rem;
}

/* ---- Sections sous le fold ---- */
.product-modal-content--v2 .product-modal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f0e8e5;
}

.product-modal-content--v2 .product-modal-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--bordeaux-dark);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.product-modal-content--v2 .product-modal-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #3a2a2c;
  margin: 0;
}

.product-modal-content--v2 .product-modal-description p {
  margin: 0 0 0.85rem;
}

.product-modal-content--v2 .product-modal-description p:last-child { margin-bottom: 0; }

.product-modal-content--v2 .product-modal-description:empty::before {
  content: 'Description disponible en boutique.';
  color: var(--grey-light);
  font-style: italic;
}

/* Fragrance encart — label gold + text Playfair italique */
.product-modal-content--v2 .product-modal-fragrance {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: #fdf7f3;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-modal-content--v2 .product-modal-fragrance[hidden] { display: none; }

.product-modal-content--v2 .product-modal-fragrance-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.product-modal-content--v2 .product-modal-fragrance-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Specs grid */
.product-modal-content--v2 .product-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin: 0;
}

.product-modal-content--v2 .product-modal-specs > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-bottom: 1px solid #f5ece9;
  padding-bottom: 0.75rem;
}

.product-modal-content--v2 .product-modal-specs dt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  font-weight: 600;
}

.product-modal-content--v2 .product-modal-specs dd {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--bordeaux-dark);
  font-weight: 500;
  margin: 0;
  word-break: break-word;
}

.product-modal-content--v2 .product-modal-specs dd:empty::before {
  content: '—';
  color: var(--grey-light);
  font-weight: 400;
}

/* INCI */
.product-modal-content--v2 .product-modal-section-inci .product-modal-inci-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.65;
  margin: 0;
  word-break: break-word;
}

/* Nav prev/next : les garder visibles aux bords v2 */
.product-modal-content--v2 .product-modal-nav-prev { left: -24px; }
.product-modal-content--v2 .product-modal-nav-next { right: -24px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .product-modal-content--v2 .product-modal-scroll { padding: 1.75rem 1.5rem 2rem; }
  .product-modal-content--v2 .product-modal-hero {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .product-modal-content--v2 .product-modal-main-image { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .product-modal-content--v2 { max-height: 94vh; border-radius: 14px; }
  .product-modal-content--v2 .product-modal-scroll { padding: 1.5rem 1.15rem 1.75rem; }
  .product-modal-content--v2 .product-modal-title { font-size: 1.4rem; }
  .product-modal-content--v2 .product-modal-price { font-size: 1.5rem; }
  .product-modal-content--v2 .product-modal-specs { grid-template-columns: 1fr; gap: 0.65rem; }
  .product-modal-content--v2 .product-modal-section { margin-top: 1.5rem; padding-top: 1.5rem; }
  .product-modal-content--v2 .product-modal-cta .btn-full { padding: 0.9rem 1.1rem; }
  .product-modal-content--v2 .product-modal-nav-prev { left: 6px; }
  .product-modal-content--v2 .product-modal-nav-next { right: 6px; }
}

@media (max-width: 420px) {
  .product-modal-content--v2 .product-modal-scroll { padding: 1.25rem 0.9rem 1.5rem; }
  .product-modal-content--v2 .product-modal-title { font-size: 1.25rem; }
  .product-modal-content--v2 .product-modal-price { font-size: 1.35rem; }
  .product-modal-content--v2 .product-modal-thumb { width: 50px; height: 50px; }
}

/* Focus ring dore sur tous les interactifs v2 */
.product-modal-content--v2 .product-modal-thumb:focus-visible,
.product-modal-content--v2 .btn-full:focus-visible,
.product-modal-content--v2 .product-modal-close:focus-visible,
.product-modal-content--v2 .product-modal-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .product-modal-content--v2,
  .product-modal-content--v2 .product-modal-thumb,
  .product-modal-content--v2 .btn-full { transition: none; animation: none; }
}

/* NMB_POLISH_V1 */
/* ============================================================
   Polish pass — accessibility, focus, skip link, reduced motion
   ============================================================ */

/* Skip link a11y (visible on focus only) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--bordeaux);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--taupe-light);
  outline-offset: 2px;
}

main:focus, a#main:focus { outline: none; }

/* Focus ring global (WCAG AA) */
:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection double-check */
::selection { background: var(--rose-light); color: var(--bordeaux-dark); }
::-moz-selection { background: var(--rose-light); color: var(--bordeaux-dark); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   NMB ECOMMERCE SCAFFOLD v1 (dormant par defaut)
   ============================================================ */

/* --- Cart toggle button (header) --- */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--rose-light);
  background: var(--cream-soft);
  color: var(--bordeaux);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cart-toggle:hover { background: var(--rose-light); transform: translateY(-1px); }
.cart-toggle:focus-visible { outline: 2px solid var(--bordeaux); outline-offset: 2px; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Cart drawer + overlay --- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(45, 41, 38, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9000;
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream-soft);
  box-shadow: -20px 0 40px rgba(89, 61, 58, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9100;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--rose-light);
}
.cart-drawer-header h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--bordeaux-dark);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--bordeaux);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cart-close:hover { background: var(--rose-light); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty p { margin: 1rem 0; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rose-light);
  align-items: center;
  justify-content: space-between;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.cart-item-name {
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.95rem;
}
.cart-item-price {
  color: var(--bordeaux);
  font-weight: 700;
  font-size: 0.9rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--rose-light);
  background: var(--white);
  color: var(--bordeaux);
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cart-qty-btn:hover { background: var(--rose-light); }
.cart-qty {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
  color: var(--text-body);
}
.cart-remove {
  margin-left: 0.35rem;
  width: 28px; height: 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--taupe-mid);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.cart-remove:hover { color: var(--bordeaux); }

.cart-drawer-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--rose-light);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.cart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bordeaux);
}
.cart-cgv {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.cart-cgv input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.cart-cgv a { color: var(--bordeaux); text-decoration: underline; }
.cart-checkout[disabled] { opacity: 0.55; cursor: not-allowed; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
}

/* --- Checkout page --- */
.checkout-section { padding: 3rem 0 5rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.checkout-summary,
.checkout-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(89, 61, 58, 0.08);
}
.checkout-summary h2,
.checkout-form h2 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bordeaux-dark);
  margin-bottom: 1.25rem;
}
.checkout-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--rose-light);
  color: var(--text-body);
  font-size: 0.95rem;
}
.checkout-item-price { color: var(--bordeaux); font-weight: 600; }
.checkout-totals { padding-top: 0.5rem; }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-top: 2px solid var(--rose-light);
}
.checkout-total-row span:first-child { font-weight: 600; color: var(--text-body); }
.checkout-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bordeaux);
}
.checkout-tva-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}
.checkout-empty {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--text-muted);
}
.checkout-form .form-field { margin-bottom: 1rem; }
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkout-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--rose-light);
  background: var(--cream-soft);
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: var(--white);
}
.checkout-form fieldset {
  border: 1px solid var(--rose-light);
  border-radius: 10px;
  padding: 0.75rem 1rem 0.5rem;
  margin-bottom: 1rem;
}
.checkout-form legend { font-weight: 600; font-size: 0.85rem; color: var(--text-body); padding: 0 0.5rem; }
.form-radio {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500 !important;
  color: var(--text-body);
  font-size: 0.9rem;
}
.form-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { color: var(--bordeaux); text-decoration: underline; }
.checkout-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.checkout-dormant {
  max-width: 680px;
  margin: 0 auto;
}
.checkout-dormant-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(89, 61, 58, 0.08);
}
.checkout-dormant-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--bordeaux-dark);
  margin-top: 0;
}
.checkout-dormant-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 420px;
  text-align: left;
}
.checkout-dormant-card li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--rose-light);
  color: var(--text-body);
}
.checkout-dormant-card li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-form .form-row { grid-template-columns: 1fr; }
}

/* --- Preorder popup --- */
.preorder-popup {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(45, 41, 38, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.preorder-popup.open { opacity: 1; visibility: visible; }
.preorder-popup-card {
  position: relative;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(89, 61, 58, 0.25);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.preorder-popup.open .preorder-popup-card { transform: translateY(0); }
.preorder-popup-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bordeaux);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.preorder-popup-close:hover { background: var(--rose-light); }
.preorder-popup h3 {
  font-family: 'Playfair Display', serif;
  color: var(--bordeaux-dark);
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  padding-right: 2rem;
}
.preorder-popup .preorder-product-label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--bordeaux-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.preorder-popup .form-field { margin-bottom: 0.9rem; }
.preorder-popup label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 0.3rem;
}
.preorder-popup input[type="text"],
.preorder-popup input[type="email"],
.preorder-popup input[type="tel"],
.preorder-popup input[type="number"],
.preorder-popup textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--rose-light);
  background: var(--white);
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.9rem;
}
.preorder-popup input:focus,
.preorder-popup textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}
.preorder-popup .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.preorder-popup .form-checkbox { margin: 0.25rem 0 1rem; font-size: 0.8rem !important; }
.preorder-popup button[type="submit"] {
  width: 100%;
  justify-content: center;
}

/* --- Modal product : ecommerce CTAs (rendus par cms.js) --- */
.product-modal-cta .btn-preorder,
.product-modal-cta .btn-add-to-cart {
  margin-top: 0.75rem;
}
.product-modal-cta .btn-add-to-cart {
  background: var(--bordeaux);
  color: var(--white);
  width: 100%;
  justify-content: center;
}
.product-modal-cta .btn-add-to-cart:hover { background: var(--bordeaux-dark); }
.product-modal-cta .btn-preorder {
  background: var(--cream-soft);
  color: var(--bordeaux-dark);
  border: 1px solid var(--rose-light);
  width: 100%;
  justify-content: center;
}
.product-modal-cta .btn-preorder:hover { background: var(--rose-light); }

/* --- Toast system --- */
.nmb-toast-container {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 9800;
  max-width: calc(100vw - 3rem);
  pointer-events: none;
}
.nmb-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--white);
  color: var(--text-body);
  box-shadow: 0 12px 40px rgba(45, 41, 38, 0.18);
  font-size: 0.9rem;
  min-width: 260px;
  max-width: 380px;
  border-left: 4px solid var(--rose-mid);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nmb-toast.is-visible { opacity: 1; transform: translateY(0); }
.nmb-toast.is-leaving { opacity: 0; transform: translateY(12px); }
.nmb-toast-success { border-left-color: #3b8f6f; color: #1f4b3a; }
.nmb-toast-success .nmb-toast-icon { color: #3b8f6f; }
.nmb-toast-error { border-left-color: #c44b4b; color: #6b1f1f; }
.nmb-toast-error .nmb-toast-icon { color: #c44b4b; }
.nmb-toast-info { border-left-color: var(--bordeaux); color: var(--bordeaux-dark); }
.nmb-toast-info .nmb-toast-icon { color: var(--bordeaux); }
.nmb-toast-msg { flex: 1; line-height: 1.35; }
.nmb-toast-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.nmb-toast-close:hover { opacity: 1; }

@media (max-width: 480px) {
  .nmb-toast-container { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
  .nmb-toast { min-width: 0; width: 100%; max-width: 100%; }
}

/* --- Reduced motion : neutralise les slides --- */
@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .cart-overlay,
  .preorder-popup,
  .preorder-popup-card,
  .nmb-toast {
    transition: none !important;
  }
}
/* === END NMB ECOMMERCE SCAFFOLD v1 === */

/* ============================================
   CHARTE BOOST v1 — Plus de dore + Playfair accents
   ============================================ */

/* Section-title underline dore decoratif */
.section-title {
  position: relative;
  padding-bottom: 1.1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201, 168, 106, 0) 0%,
    var(--gold) 30%,
    var(--gold) 70%,
    rgba(201, 168, 106, 0) 100%);
  border-radius: 2px;
}
/* Si le section-title n'est pas centre (ex: welcome-grid), l'underline suit le texte */
.welcome-grid .section-title,
[data-cms-section] .section-title:not(.reveal) {
  padding-bottom: 0.9rem;
}
.welcome-grid .section-title::after,
[data-cms-section] .section-title:not(.reveal)::after {
  left: 0;
  transform: none;
}

/* Section-subtitle — petit trait dore a cote */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Boutons .btn-primary — touche dore en bordure haute */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201, 168, 106, 0) 0%,
    var(--gold-light) 50%,
    rgba(201, 168, 106, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}

/* Product card — accent gold hover */
.product-card {
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201, 168, 106, 0) 0%,
    var(--gold) 50%,
    rgba(201, 168, 106, 0) 100%);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Price en Playfair avec touche dore */
.product-card .product-price {
  position: relative;
  display: inline-block;
}
.product-card .product-marque {
  position: relative;
  display: inline-block;
  padding-left: 0.85rem;
}
.product-card .product-marque::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* Team-strip card — bordure gold fine au hover */
.team-strip-card {
  position: relative;
}
.team-strip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 106, 0);
  border-radius: 12px;
  pointer-events: none;
  transition: border-color 0.4s ease;
}
.team-strip-card:hover::after {
  border-color: rgba(201, 168, 106, 0.6);
}

/* Modal product marque en Playfair uppercase avec trait */
.product-modal-marque {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
}
.product-modal-marque::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1.5px;
  background: var(--gold);
}

/* Footer — accent dore sur le h4 "Nail Moment's Beauty" */
.footer-brand h4 {
  position: relative;
  padding-bottom: 0.65rem;
}
.footer-brand h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

/* Hero badges — touche Playfair sur le nombre */
.hero-badge span[data-cms*="stat"] {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--bordeaux);
}

/* Links nav hover — underline dore */
.nav a {
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 1.5px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after {
  left: 0;
  right: 0;
}

/* Prestations — prix en Playfair dore */
.presta-card .price,
.presta-price .price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--bordeaux);
  font-size: 1.1rem;
}
.presta-card .price::before,
.presta-price .price::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 1px;
  background: var(--gold);
  margin-right: 0.4rem;
  vertical-align: middle;
  opacity: 0.8;
}

/* Testimonial author en Dancing Script */
.testimonial-author {
  font-family: 'Dancing Script', cursive !important;
  font-size: 1.3rem !important;
  color: var(--bordeaux) !important;
  font-weight: 600 !important;
}

/* CTA banner — border top dore subtil */
.cta-banner {
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201, 168, 106, 0) 0%,
    var(--gold) 50%,
    rgba(201, 168, 106, 0) 100%);
}

@media (max-width: 768px) {
  /* Logo mobile un peu plus gros */
  .logo-img {
    height: 88px;
    width: 88px;
  }
  .header.scrolled .logo-img {
    height: 72px;
    width: 72px;
  }
  .section-subtitle::before,
  .section-subtitle::after {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before,
  .product-card::after,
  .team-strip-card::after,
  .nav a::after {
    transition: none;
  }
}

/* ============================================
   LOGO TOP BAR v3 — Clean rewrite
   Structure : image + .logo-text (nom Dancing + sub DM Sans gold)
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  line-height: 1;
  color: var(--bordeaux);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.logo:hover { transform: scale(1.02); }
.logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-img {
  height: 108px;
  width: 108px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(137, 78, 80, 0.2));
  transition: height 0.4s cubic-bezier(.4,0,.2,1),
              width 0.4s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .logo-img {
  height: 80px;
  width: 80px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
}

.logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.header.scrolled .logo-name { font-size: 1.5rem; }
.header.scrolled .logo-sub { font-size: 0.62rem; }

/* Footer logo — plus compact */
.footer-brand .logo .logo-img { height: 72px; width: 72px; }
.footer-brand .logo .logo-name { font-size: 1.5rem; color: var(--white); }
.footer-brand .logo .logo-sub { color: var(--gold-light); }

/* Mobile */
@media (max-width: 900px) {
  .logo { gap: 0.85rem; }
  .logo-img { height: 80px; width: 80px; }
  .header.scrolled .logo-img { height: 64px; width: 64px; }
  .logo-name { font-size: 1.55rem; }
  .logo-sub { font-size: 0.62rem; letter-spacing: 0.28em; }
}
@media (max-width: 540px) {
  .logo-img { height: 64px; width: 64px; }
  .header.scrolled .logo-img { height: 56px; width: 56px; }
  .logo-name { font-size: 1.4rem; }
  .logo-sub { font-size: 0.58rem; letter-spacing: 0.26em; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .logo-img { transition: none; }
  .logo:hover { transform: none; }
}

/* ============================================
   LOGO TOP BAR MASSIF — 160px + Playfair Display
   Override precedent via cascade order
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  line-height: 1;
  color: var(--bordeaux);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.logo:hover { transform: scale(1.015); }

.logo-img {
  height: 160px;
  width: 160px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(137, 78, 80, 0.25));
  transition: height 0.4s cubic-bezier(.4,0,.2,1),
              width 0.4s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .logo-img {
  height: 104px;
  width: 104px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bordeaux-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  padding-left: 2px;
}

.logo-sub::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.5em;
  transform: translateY(-2px);
}

.header.scrolled .logo-name { font-size: 1.55rem; }
.header.scrolled .logo-sub { font-size: 0.64rem; letter-spacing: 0.32em; }

.header { padding: 0.9rem 2rem !important; }
.header.scrolled { padding: 0.7rem 2rem !important; }

.footer-brand .logo .logo-img { height: 72px; width: 72px; }
.footer-brand .logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
}
.footer-brand .logo .logo-sub { color: var(--gold-light); }
.footer-brand .logo .logo-sub::before { background: var(--gold-light); }

@media (max-width: 900px) {
  .logo { gap: 0.9rem; }
  .logo-img { height: 104px; width: 104px; }
  .header.scrolled .logo-img { height: 80px; width: 80px; }
  .logo-name { font-size: 1.55rem; }
  .logo-sub { font-size: 0.64rem; letter-spacing: 0.32em; }
  .logo-sub::before { width: 10px; }
  .header { padding: 0.7rem 1rem !important; }
}
@media (max-width: 540px) {
  .logo-img { height: 72px; width: 72px; }
  .header.scrolled .logo-img { height: 60px; width: 60px; }
  .logo-name { font-size: 1.3rem; }
  .logo-sub { font-size: 0.58rem; letter-spacing: 0.28em; }
  .logo-sub::before { width: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .logo-img { transition: none; }
  .logo:hover { transform: none; }
}

/* ============================================================
   Cookie Banner (RGPD)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-inner {
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-inner a { color: var(--bordeaux); font-weight: 500; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
