﻿/* ══════════════════════════════════════════════════════════
   ACCUEIL.CSS YëreDesign
   Pill Navbar · Dark Luxury (Restauration) · Shared Components
   ══════════════════════════════════════════════════════════ */

/* ── @property : cercle animé titre ─────────────────────── */
@property --mask-progress {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

/* ── PAGE BASE ───────────────────────────────────────────── */
body.page-accueil {
  background: #050505;
  color: rgba(255,255,255,0.88);
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}
body.page-boutique { background: #FAFAF8; overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════
   PILL NAVBAR (shared accueil + boutique)
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   NAVBAR Dark Luxury Pill
   ═══════════════════════════════════════════════════════════ */
.acc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  pointer-events: none;
  background: transparent !important; /* Fix fond header top boutique */
  padding-top: env(safe-area-inset-top);
  will-change: transform; /* calque stable en permanence, pas seulement au toggle .scrolled */
}

/* ── Pill ── */
.acc-nav-inner {
  pointer-events: auto;
  position: relative;
  margin: 10px auto 0;
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px 0 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  will-change: background, backdrop-filter, box-shadow; /* pré-alloue le calque avant l'activation de backdrop-filter au scroll */
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, height 0.35s ease, margin 0.35s ease;
}
/* ── Accueil & Boutique : Pill transparente sur Hero ── */
.acc-nav-inner {
  background: transparent;
  border-color: transparent;
}

body.page-accueil .acc-nav-inner,
body.page-boutique .acc-nav-inner {
  background: transparent;
  border-color: transparent;
}

.acc-navbar.scrolled .acc-nav-inner {
  background: rgba(5,5,5,0.92) !important;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-color: rgba(255,255,255,0.08);
}
body.page-accueil .acc-navbar.scrolled .acc-nav-inner {
  height: 58px;
  margin-top: 8px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
}
/* ── Fallback scrolled (shared) ── */
.acc-navbar.scrolled .acc-nav-inner {
  height: 58px;
  margin-top: 8px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

/* ── Logo ── */
.acc-nav-logo {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.1rem;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 16px;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}
.acc-nav-logo:hover { opacity: 0.7; }
.acc-nav-universe {
  font-size: 0.62rem;
  color: var(--text-primary);
  letter-spacing: 0.22em;
  font-weight: 700;
  padding-left: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(201,169,110,0.3);
  white-space: nowrap;
}
body.page-boutique .acc-nav-universe {
  border-left-color: rgba(15,15,15,0.2);
}

/* ── ATELIER : overrides thème sombre ──────────────────── */
body.page-accueil .acc-nav-logo { color: #fff; }
body.page-accueil .acc-nav-universe { color: rgba(255,255,255,0.45); }
body.page-accueil .acc-nav-btn { color: rgba(255,255,255,0.6); }
body.page-accueil .acc-nav-btn:hover,
body.page-accueil .acc-nav-btn[aria-expanded="true"] { color: #fff !important; background: rgba(255,255,255,0.07); }
body.page-accueil .acc-cart-btn,
body.page-accueil .acc-signin-btn,
body.page-accueil .acc-hamburger,
body.page-accueil .acc-user-btn,
body.page-accueil .acc-mode-switcher-btn {
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,0.75);
}
/* Unified Header circles — identiques à boutique (42px) */
body.page-accueil .acc-user-btn,
body.page-accueil .acc-signin-btn,
body.page-accueil .acc-cart-btn {
  width: 42px !important; height: 42px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex !important; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.8) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
body.page-accueil .acc-user-btn:hover,
body.page-accueil .acc-signin-btn:hover,
body.page-accueil .acc-cart-btn:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  transform: scale(1.06) !important;
}

/* ── USER DROPDOWN (Dark Premium) ── */
.acc-user-zone-inner { position: relative; }

.acc-user-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 260px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.05);
  padding: 8px;
  z-index: 2500;
  transform-origin: top right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.acc-user-dropdown.hidden {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.95);
  pointer-events: none;
}

.acc-user-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; right: 15px;
  width: 12px; height: 12px;
  background: inherit;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.acc-user-drop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.acc-user-drop-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(4px);
}

.acc-user-drop-item i {
  width: 20px;
  color: #C9A96E;
  font-size: 1rem;
}

.acc-user-drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 8px;
}

.acc-user-drop-logout {
  color: #ff5252;
}

.acc-user-drop-logout:hover {
  background: rgba(255, 82, 82, 0.1);
  color: #ff1744;
}
body.page-accueil .acc-navbar.scrolled .acc-cart-btn,
body.page-accueil .acc-navbar.scrolled .acc-signin-btn,
body.page-accueil .acc-navbar.scrolled .acc-user-btn,
body.page-accueil .acc-navbar.scrolled .acc-mode-switcher-btn {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.85) !important;
}
body.page-accueil .acc-navbar.scrolled .acc-hamburger {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.85) !important;
}
body.page-accueil .acc-cart-btn:hover,
body.page-accueil .acc-signin-btn:hover,
body.page-accueil .acc-hamburger:hover,
body.page-accueil .acc-user-btn {
  background: transparent;
  border: none;
  padding: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}
body.page-accueil .acc-user-btn::after {
  content: '';
  position: absolute; inset: -3px;
  border: 1px solid rgba(201, 169, 110, 0);
  border-radius: 50%;
  transition: all 0.3s ease;
}
body.page-accueil .acc-user-btn:hover {
  transform: scale(1.08);
}
body.page-accueil .acc-user-btn:hover::after {
  inset: -5px;
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.2);
}
body.page-accueil .acc-user-avatar {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C9A96E 0%, #AF8F55 100%);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 4px 12px rgba(0,0,0,0.3);
  text-shadow: 0 1px 1px rgba(255,255,255,0.2);
  font-family: var(--font-display);
}
/* Cart Badge Premium */
body.page-accueil .acc-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: #C9A96E;
  color: #000;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #000; /* Contrast ring */
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 2;
  pointer-events: none;
}
body.page-accueil .acc-navbar.scrolled .acc-cart-badge {
  border-color: #fff; /* Match white pill background when scrolled */
  animation: badgePulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePulse {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Nav links ── */
.acc-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
  margin: 0; padding: 0;
}
.acc-nav-item { position: relative; }

.acc-nav-btn {
  padding: 8px 18px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
.acc-nav-btn:hover,
.acc-nav-btn[aria-expanded="true"] {
  color: var(--text-primary);
  background: var(--gray-100);
}
.acc-nav-btn[aria-expanded="true"] { color: var(--text-primary); }
.acc-chevron {
  font-size: 0.58rem;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.6;
}
.acc-nav-btn[aria-expanded="true"] .acc-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── MEGA MENU ─────────────────────────────────────────────
   Ancré sous le pill, même largeur max que lui
   ────────────────────────────────────────────────────────── */
/* ── Dropdown desktop compact accordion ── */
/* ══ MEGA DROPDOWN Wide luxury panel ══════════════════════ */
.acc-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 660px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.23,1,0.32,1), visibility 0.22s;
  z-index: 850;
  overflow: hidden;
}
.acc-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── MEGA BODY Shopify Style ────────────────────────────── */
.shopify-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px;
}

.acc-mega-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-mega-cat-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.acc-mega-cat-header:hover {
  transform: translateY(-4px);
}

.acc-mega-cat-img {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.acc-mega-cat-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.acc-mega-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-mega-sub-item {
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 4px 0;
}

.acc-mega-sub-item:hover {
  color: #C9A96E;
  padding-left: 6px;
}

.acc-mega-sub-item.all {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.acc-mega-sub-item.more {
  font-style: italic;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .shopify-mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .shopify-mega-grid {
    display: none;
  }
}
.acc-mega-sub-panel {
  display: none;
  flex-direction: column; gap: 14px;
  animation: megaFadeIn 0.18s ease;
}
.acc-mega-sub-panel.active { display: flex; }

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.acc-mega-sub-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.acc-mega-sub-img-strip {
  width: 52px; height: 52px; border-radius: 8px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.acc-mega-sub-info { display: flex; flex-direction: column; gap: 3px; }
.acc-mega-sub-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400; color: #fff;
  text-transform: uppercase; line-height: 1;
}
.acc-mega-sub-count {
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.acc-mega-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.acc-mega-sub-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  cursor: pointer; background: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.76rem; font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: all 0.14s ease;
  text-align: left;
}
.acc-mega-sub-item:hover {
  background: rgba(201,169,110,0.09);
  border-color: rgba(201,169,110,0.25);
  color: rgba(255,255,255,0.9);
}
.acc-mega-sub-item.all-item {
  grid-column: 1 / -1;
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.18);
  color: #C9A96E; font-weight: 600;
}
.acc-mega-sub-item.all-item:hover {
  background: rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.4);
}
.acc-mega-sub-item.all-item i { font-size: 0.65rem; }
.acc-mega-sub-prix {
  font-size: 0.68rem; font-weight: 700;
  color: rgba(201,169,110,0.7);
  white-space: nowrap;
}

/* Footer CTA bar */
.acc-mega-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.acc-mega-footer-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.38);
  font-size: 0.7rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.15s;
}
.acc-mega-footer-link:hover { color: rgba(255,255,255,0.75); }
.acc-mega-footer-link i { color: #C9A96E; font-size: 0.65rem; }
.acc-mega-footer-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: #C9A96E; color: #000;
  border: none; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: "Poppins", sans-serif;
  transition: background 0.18s;
  clip-path: polygon(0 0, 94% 0, 100% 30%, 100% 100%, 6% 100%, 0 70%);
}
.acc-mega-footer-cta:hover {
  background: #B8964A;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ── NAV ACTIONS ── */
.acc-nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.acc-cart-btn, .acc-signin-btn, .acc-hamburger, .acc-mode-switcher-btn, .acc-user-btn {
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--gray-50);
  color: var(--text-secondary);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.acc-cart-btn, .acc-signin-btn, .acc-hamburger, .acc-user-btn { width: 40px; }
.acc-hamburger { flex-direction: column; gap: 5px; }
.acc-mode-switcher-btn {
  padding: 0 16px; text-decoration: none;
  gap: 8px; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em;
}
.acc-cart-btn:hover, .acc-signin-btn:hover,
.acc-hamburger:hover, .acc-mode-switcher-btn:hover, .acc-user-btn:hover {
  background: var(--gray-100);
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.acc-cart-btn { position: relative; }
body.page-accueil .acc-cart-btn { display: flex !important; }
.acc-cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--black); color: var(--white);
  font-size: 0.58rem; font-weight: 800;
  width: 17px; height: 17px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger caché sur desktop */
.acc-hamburger { display: none; }

/* Bouton retour caché sur desktop, visible sur mobile */
.acc-nav-back {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.acc-nav-back:hover { background: rgba(255,255,255,0.12); }
body.page-boutique .acc-nav-back {
  background: transparent;
  border-color: transparent;
  color: #111;
}
body.page-boutique .acc-nav-back:hover { background: rgba(0,0,0,0.06); }
body.page-boutique .acc-navbar.scrolled .acc-nav-back { color: #111; }

/* ── Mega Menu ── */
.acc-nav-item.has-mega { position: static; }
.acc-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 40px 0;
}
.acc-nav-item.has-mega:hover .acc-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.acc-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 0 40px;
}
.acc-mega-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc-mega-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
}
.acc-mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-mega-list li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.acc-mega-list li a:hover { color: var(--black); }
.acc-mega-list li a i { width: 16px; opacity: 0.6; }

.acc-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.acc-mega-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: var(--gray-50);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.acc-mega-grid-item:hover { background: var(--gray-100); }

.acc-mega-featured {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.acc-mega-feat-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.acc-mega-feat-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 4px;
}
.acc-mega-feat-content span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .acc-mega-menu { display: none; }
}

/* ── Dark Mega Menu (Atelier) ── */
body.page-accueil .acc-mega-menu {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
body.page-accueil .acc-mega-title {
  color: #C9A96E;
  border-bottom-color: rgba(255,255,255,0.08);
}
body.page-accueil .acc-mega-list li a {
  color: rgba(201,169,110,0.78);
}
body.page-accueil .acc-mega-list li a:hover {
  color: #C9A96E;
}
body.page-accueil .acc-mega-grid-item {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8);
}
body.page-accueil .acc-mega-grid-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(201,169,110,0.3);
}
body.page-accueil .acc-mega-feat-content strong {
  color: #C9A96E;
}
body.page-accueil .acc-mega-feat-content span {
  color: rgba(201,169,110,0.65);
}
body.page-accueil .acc-mega-list li a i {
  color: #C9A96E;
}

/* ── Atelier: forcer la section prestations en doré ── */
body.page-accueil .acc-prestations .acc-section-title,
body.page-accueil .acc-prestations .acc-cat-name,
body.page-accueil .acc-prestations .acc-cat-icon {
  color: #C9A96E;
}
/* Icône lisible au hover (fond doré → texte noir) */
body.page-accueil .acc-prestations .acc-cat-card:hover .acc-cat-icon {
  color: #000;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════ */
.acc-mobile-menu {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  margin: 8px auto 0;
  width: calc(100% - 48px);
  max-width: 1100px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 0 12px;
  box-shadow: var(--shadow-xl);
  max-height: calc(100dvh - 110px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.acc-mobile-menu.hidden { display: none; }

.acc-mobile-section { padding: 6px 12px; }

.acc-mobile-section-title {
  display: block;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-600);
  padding: 10px 6px 6px;
}

.acc-mobile-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.acc-mobile-item:hover,
.acc-mobile-item:active { color: var(--text-primary); background: var(--gray-100); }
.acc-mobile-item.main {
  font-weight: 600; color: var(--text-primary);
  justify-content: space-between;
}
.acc-mobile-item.main:hover { background: rgba(201,169,110,0.08); color: #FFFFFF; }
.acc-mobile-item.sub {
  padding-left: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.acc-mobile-item.sub:hover { color: var(--text-secondary); background: var(--gray-50); }
.acc-mobile-item .acc-accordion-icon {
  font-size: 0.65rem; opacity: 0.5;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.18s;
  flex-shrink: 0;
}
.acc-mobile-item.main.open .acc-accordion-icon {
  transform: rotate(180deg); opacity: 1; color: #FFFFFF;
}

/* Accordion content */
.acc-mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1), margin 0.3s ease;
  margin: 0 0 0 14px;
  border-left: 1px solid rgba(201,169,110,0.2);
  padding-left: 8px;
  border-radius: 0 0 0 4px;
}
.acc-mobile-accordion-content.open {
  max-height: 400px; /* suffisant pour tous les sous-items */
  margin-bottom: 8px;
}

.acc-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 8px 16px;
}

.acc-mobile-socials {
  display: flex; gap: 10px;
  padding: 4px 6px;
}
.acc-mobile-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.acc-mobile-socials a:hover { background: rgba(201,169,110,0.1); color: #FFFFFF; border-color: rgba(201,169,110,0.25); }

/* ── ATELIER : mobile menu dark ────────────────────────── */
body.page-accueil .acc-mobile-menu {
  background: rgba(8,8,8,0.97);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
}
body.page-accueil .acc-mobile-section-title { color: rgba(255,255,255,0.28); }
body.page-accueil .acc-mobile-item { color: rgba(255,255,255,0.6); }
body.page-accueil .acc-mobile-item:hover,
body.page-accueil .acc-mobile-item:active { color: #fff; background: rgba(255,255,255,0.06); }
body.page-accueil .acc-mobile-item.main { color: rgba(255,255,255,0.85); }
body.page-accueil .acc-mobile-item.main:hover { background: rgba(201,169,110,0.1); color: #fff; }
body.page-accueil .acc-mobile-item.sub { color: rgba(255,255,255,0.42); }
body.page-accueil .acc-mobile-item.sub:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.75); }
body.page-accueil .acc-mobile-divider { background: rgba(255,255,255,0.06); }

/* Loading state nav */
.loading-state-nav {
  padding: 24px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER Dark Luxury
   ═══════════════════════════════════════════════════════════ */
.acc-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: #060606;
  overflow: hidden;
  z-index: 2;
}

/* Bottom wave transition to dark content */
.acc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 120px;
  background: #080808;
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
  z-index: 40;
  pointer-events: none;
}

/* Decorative grid */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}

/* Gold accent lines */
.hero-accent-line { position: absolute; z-index: 2; pointer-events: none; }
.hero-accent-line--left {
  top: 22%; left: 40px;
  width: 1px; height: 100px;
  background: linear-gradient(180deg, transparent, #FFFFFF 50%, transparent);
  opacity: 0.4;
  animation: accentFloat 4.5s ease-in-out infinite alternate;
}
.hero-accent-line--right {
  bottom: 28%; right: 48px;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25) 50%, transparent);
  animation: accentFloat 5.5s ease-in-out 1s infinite alternate;
}
@keyframes accentFloat {
  0%   { transform: translateY(0); opacity: 0.25; }
  100% { transform: translateY(-18px); opacity: 0.55; }
}

/* Brand watermark */
.hero-watermark {
  position: absolute;
  bottom: -0.1em; right: 32px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.06em;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Slides */
.acc-slides { position: relative; width: 100%; height: 100%; }
.acc-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.acc-slide.active { opacity: 1; pointer-events: auto; z-index: 10; }

/* Background images */
.acc-slide-1 { background: url("https://images.unsplash.com/photo-1548036328-c9fa89d128fa?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat; }
.acc-slide-2 { background: url("https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat; }
.acc-slide-3 { background: url("https://images.unsplash.com/photo-1523381210434-271e8be1f52b?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat; }

/* Dark overlay + grain */
.acc-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
}
.acc-slide-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.6; pointer-events: none;
}

/* Slide content */
.acc-slide-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 0 60px;
  width: 100%; height: 100%;
  display: flex; align-items: center;
}
.hero-content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}
.hero-text-block { max-width: 680px; flex: 1; }

/* Tag pill */
.acc-slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 24px;
  backdrop-filter: blur(6px);
  background: var(--white);
}
.tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--black); display: inline-block;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  animation: tagPulse 2.5s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Hero title luxury serif */
.acc-slide-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.title-accent { color: #fff; text-decoration: underline; text-underline-offset: 10px; display: inline; }

/* Subtitle */
.acc-slide-sub {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

/* Actions */
.acc-slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero buttons */
.btn-hero-primary {
  background: var(--black); color: var(--white);
  padding: 16px 32px; border-radius: 2px;
  font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
}
.btn-hero-primary:hover {
  background: #eee;
}
.btn-hero-outline {
  background: transparent; color: var(--black);
  border: 1px solid var(--black);
  padding: 16px 32px; border-radius: 2px;
  font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7) grayscale(20%);
  transition: transform 4s ease;
}
.acc-slide.active .hero-video-bg {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Side stat box industrial style */
.hero-side-info { flex-shrink: 0; z-index: 10; }
.hero-stat-box {
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
  border-right: 4px solid #FFFFFF;
  padding: 12px 24px;
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 400;
  color: var(--black); line-height: 0.85;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 0.8rem; font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.25em; text-transform: uppercase;
  font-family: var(--font-display);
}

/* Staggered reveal animations */
.acc-slide.active .acc-slide-tag     { animation: heroReveal 0.7s 0.08s cubic-bezier(0.16,1,0.3,1) both; }
.acc-slide.active .acc-slide-title   { animation: heroReveal 0.7s 0.18s cubic-bezier(0.16,1,0.3,1) both; }
.acc-slide.active .acc-slide-sub     { animation: heroReveal 0.7s 0.32s cubic-bezier(0.16,1,0.3,1) both; }
.acc-slide.active .acc-slide-actions { animation: heroReveal 0.7s 0.46s cubic-bezier(0.16,1,0.3,1) both; }
.acc-slide.active .hero-side-info    { animation: heroReveal 0.8s 0.55s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.hero-progress-bar {
  position: absolute; bottom: 80px; left: 60px; right: 60px; z-index: 30;
}
.hero-progress-track {
  height: 1px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.hero-progress-fill {
  height: 100%; width: 33.33%;
  background: linear-gradient(90deg, var(--black), var(--gray-400));
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* Bottom bar */
.hero-bottom-bar {
  position: absolute; bottom: 28px; left: 60px; right: 60px; z-index: 45;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-slide-counter {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Cormorant Garamond', serif;
}
.hero-counter-current {
  font-size: 1.5rem; font-weight: 700; color: var(--black);
  transition: all 0.3s ease;
}
.hero-counter-sep { font-size: 0.85rem; color: rgba(255,255,255,0.2); margin: 0 2px; }
.hero-counter-total { font-size: 0.85rem; color: rgba(255,255,255,0.3); font-weight: 500; }

/* Slider dots */
.acc-slider-controls { display: flex; gap: 8px; z-index: 20; }
.acc-slide-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.18); border-radius: 2px; border: none;
  cursor: pointer; transition: all 0.4s ease; padding: 0;
}
.acc-slide-dot.active { background: #FFFFFF; width: 44px; box-shadow: 0 0 12px rgba(201,169,110,0.4); }
.acc-slide-dot:hover:not(.active) { background: rgba(255,255,255,0.4); }

/* Nav arrows */
.hero-nav-arrows { display: flex; gap: 8px; }
.acc-slide-prev, .acc-slide-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--black); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.35s ease; outline: none;
  position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none;
}
.acc-slide-prev:hover, .acc-slide-next:hover {
  background: #FFFFFF; color: #080808; border-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.acc-slide-prev:active, .acc-slide-next:active { transform: scale(0.94); }
.acc-slide-prev i, .acc-slide-next i { font-size: 0.82rem; transition: transform 0.25s ease; }
.acc-slide-prev:hover i { transform: translateX(-2px); }
.acc-slide-next:hover i { transform: translateX(2px); }

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS Dark Luxury
   ═══════════════════════════════════════════════════════════ */
.acc-process {
  padding: 100px 24px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.acc-process::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3; pointer-events: none;
}
.acc-process-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; z-index: 10;
}
.acc-process-item {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
  padding: 40px 30px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 4px;
}
.acc-process-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: #FFFFFF;
  transform: translateY(-8px);
}
.acc-process-count {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400; color: #FFFFFF;
  line-height: 0.8; opacity: 0.3;
  transition: all 0.5s ease;
}
.acc-process-item:hover .acc-process-count { opacity: 1; transform: scale(1.1); }
.acc-process-text { display: flex; flex-direction: column; gap: 10px; }
.acc-process-text strong {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; text-transform: uppercase;
  color: #fff; letter-spacing: 0.02em; line-height: 1;
}
.acc-process-text span {
  font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PRESTATIONS / CATÉGORIES STREET DESIGN
   Rectangles difformes, penchés, scindés sur les lignes
   ═══════════════════════════════════════════════════════════ */
.acc-prestations {
  padding: 60px 40px 100px;
  max-width: 100%; margin: 0 auto;
  overflow: clip; /* clip sans créer de scroll context → permet le tilt des cartes */
  position: relative;
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* Bande diagonale déco derrière la section */
.acc-prestations::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px, transparent 80px,
      rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 82px
    );
  pointer-events: none;
}
.acc-section-header {
  text-align: left; margin-bottom: 48px;
  padding-left: 28px; position: relative; z-index: 1;
  border-left: 3px solid #C9A96E;
}
.acc-section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
}
.acc-section-eyebrow-line {
  display: block; width: 28px; height: 1px;
  background: rgba(201,169,110,0.5);
}
.acc-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #FFFFFF;
  line-height: 0.95;
  text-transform: uppercase;
}

/* ── Span accentué "de ravaudage" ────────────────────── */

.acc-title-script {
  position: relative;
  display: inline-block;
  font-family: "Playwrite IS", cursive;
  font-size: 1.3em; /* Slightly larger */
  font-weight: 300;
  color: #C9A96E;
  margin-left: 0.15em;
  padding: 0 0.3em;
  letter-spacing: -0.01em;
  text-shadow: 0 0 1px rgba(201, 169, 110, 0.2);
  line-height: 1;
}

.acc-title-script::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 63%; /* Match user's snippet */
  transform: translate(-50%, -50%);
  width: 240%; /* Match user's snippet 250% roughly */
  aspect-ratio: 1/1;
  z-index: -1;
  border: 1.2px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  mask-image: conic-gradient(from -45deg, #000 var(--mask-progress), #0000 0);
  transition: --mask-progress 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.6s;
}

.acc-prestations.visible .acc-title-script::before {
  --mask-progress: 100%;
}


.acc-section-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
}
.acc-section-cta-strip {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: nowrap;
}

.acc-section-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #C9A96E !important; /* Premium Gold */
  color: #000 !important;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(201,169,110,0.3);
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 10px 30px rgba(201,169,110,0.3); }
  50% { box-shadow: 0 10px 40px rgba(201,169,110,0.6); transform: scale(1.02); }
  100% { box-shadow: 0 10px 30px rgba(201,169,110,0.3); }
}

.acc-section-cta-btn:hover {
  background: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  animation: none;
}

.acc-section-stats {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.acc-section-stat {
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}
.acc-section-stat strong { color: rgba(255,255,255,0.7); }
.acc-section-stat-sep { color: rgba(201,169,110,0.4); }

/* ══ ALBUM TARIFS / PRESTATIONS ═══════════════════════════ */
.acc-presta-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 205px 165px;
  gap: 8px;
  width: 100%;
  margin: 24px 0 20px;
}
.acc-presta-gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(201,169,110,0.06);
  cursor: pointer;
}
.acc-presta-gallery-item.acc-gallery-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
.acc-presta-gallery-item.acc-gallery-strip {
  grid-column: 2 / 4;
  grid-row: 2;
}
.acc-presta-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.acc-presta-gallery-item:hover img {
  transform: none;
}
.acc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  transition: background 0.35s ease;
}
.acc-presta-gallery-item:hover .acc-gallery-overlay {
  background: linear-gradient(to top, rgba(10,8,6,0.62) 0%, transparent 55%);
}
.acc-gallery-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: rgba(201,169,110,0.55);
  line-height: 1;
}
.acc-gallery-info {
  display: none;
}
.acc-gallery-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C9A96E;
  background: rgba(10,8,6,0.5);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 3px;
  padding: 3px 8px;
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.acc-gallery-price {
  font-size: 0.88rem;
  color: rgba(247,240,226,0.92);
  margin: 0;
}
.acc-gallery-price strong {
  color: #C9A96E;
  font-weight: 600;
}
.acc-gallery-hover-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(10,8,6,0.94);
  border: 1px solid rgba(201,169,110,0.28);
  white-space: nowrap;
  font-weight: 400;
}
.acc-presta-gallery-item:hover .acc-gallery-hover-label {
  display: flex;
}
.ahl-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C9A96E;
}
.ahl-price {
  font-size: 0.85rem;
  color: rgba(247,240,226,0.90);
}
.ahl-price strong {
  color: #C9A96E;
  font-weight: 600;
}
@media (max-width: 720px) {
  .acc-presta-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .acc-presta-gallery-item { aspect-ratio: 4/3; }
  .acc-presta-gallery-item.acc-gallery-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16/8;
  }
  .acc-presta-gallery-item.acc-gallery-strip {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16/7;
  }
  .acc-gallery-overlay {
    background: linear-gradient(to top, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.10) 55%, transparent 100%);
  }
  .acc-gallery-info { display: flex; flex-direction: column; gap: 6px; }
  .acc-gallery-hover-label { display: none !important; }
}
@media (max-width: 440px) {
  .acc-presta-gallery { grid-template-columns: 1fr; gap: 6px; }
  .acc-presta-gallery-item,
  .acc-presta-gallery-item.acc-gallery-featured,
  .acc-presta-gallery-item.acc-gallery-strip {
    grid-column: 1; grid-row: auto; aspect-ratio: 4/3;
  }
}

/* ══ GALLERY GRID Editorial fashion layout ════════════════ */
.acc-cat-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, 340px);
  gap: 3px;
  width: 100%;
  margin-top: 48px;
  position: relative; z-index: 1;
}

/* First card spans 2 rows tall portrait */
.acc-cat-card:first-child { grid-row: span 2; }

/* Cards 4-6 fill a second row of 3 */
.acc-cat-card:nth-child(4),
.acc-cat-card:nth-child(5),
.acc-cat-card:nth-child(6) {
  /* handled automatically by grid-template-rows */
}

/* If more than 6, extra row */
.acc-cat-card:nth-child(n+7) { grid-column: auto; }

/* Base card */
.acc-cat-card {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.5s ease;
}
.acc-cat-card:hover {
  z-index: 5;
  box-shadow: 0 0 0 2px #C9A96E, 0 24px 60px rgba(0,0,0,0.7);
}

/* Background image */
.acc-cat-card--img {
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  position: absolute; inset: 0;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1);
}
.acc-cat-card:hover .acc-cat-card--img { transform: scale(1.12); }

/* Gradient overlay */
.acc-cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.55) 62%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: 1;
}
.acc-cat-card:hover .acc-cat-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.97) 100%
  );
}

/* Number badge top left */
.acc-cat-card-num {
  position: absolute;
  top: 18px; left: 18px; z-index: 3;
  font-family: var(--font-display);
  font-size: 0.6rem; letter-spacing: 0.28em;
  color: #C9A96E;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-left: 2px solid rgba(201,169,110,0.5);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.acc-cat-card:hover .acc-cat-card-num {
  background: rgba(201,169,110,0.15);
  color: #C9A96E;
  border-left-color: #C9A96E;
}

/* Icon top right */
.acc-cat-icon {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  z-index: 3;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.acc-cat-card:hover .acc-cat-icon {
  background: #C9A96E;
  color: #000;
  border-color: #C9A96E;
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
}

/* Category name */
.acc-cat-name {
  position: absolute;
  bottom: 72px; left: 22px; right: 22px;
  font-family: "Playwrite IS", cursive;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 300;
  color: #C9A96E;
  text-transform: none;
  letter-spacing: -0.01em;
  z-index: 3; margin: 0;
  line-height: 1.1;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding-bottom: 12px;
}
.acc-cat-name::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: #C9A96E;
  transition: width 0.4s ease;
}
.acc-cat-card:hover .acc-cat-name { transform: translateY(-6px); }
.acc-cat-card:hover .acc-cat-name::after { width: 100%; }

/* Taller card larger name for first card */
.acc-cat-card:first-child .acc-cat-name {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  bottom: 80px;
}

/* CTA button */
.acc-cat-actions-inline {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.acc-cat-card:hover .acc-cat-actions-inline {
  opacity: 1; transform: translateY(0);
}
.acc-cat-btn-single {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  background: rgba(20,20,20,0.75);
  color: #fff;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.acc-cat-btn-single:hover,
.acc-cat-btn-single.rafistoller:hover {
  background: #C9A96E; color: #000; border-color: #C9A96E;
}
.acc-cat-btn-single i { font-size: 0.7rem; }

/* Shimmer sweep on hover */
.acc-cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 25%, rgba(255,255,255,0.04) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  z-index: 4; pointer-events: none;
}
.acc-cat-card:hover::after { transform: translateX(100%); }

/* Gallery responsive */
@media (max-width: 1100px) {
  .acc-cat-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(3, 260px);
  }
  .acc-cat-card:first-child { grid-row: span 2; }
  .acc-cat-name { font-size: clamp(1.4rem, 2.5vw, 2.2rem); bottom: 56px; left: 16px; right: 16px; }
  .acc-cat-card:first-child .acc-cat-name { font-size: clamp(1.8rem, 3vw, 2.8rem); }
  .acc-cat-icon { width: 36px; height: 36px; font-size: 0.85rem; }
}
@media (max-width: 768px) {
  .acc-cat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .acc-cat-card { height: 220px; }
  .acc-cat-card:first-child { grid-row: span 1; grid-column: 1; height: 260px; }
  .acc-cat-name { font-size: 1.3rem; bottom: 48px; left: 12px; right: 12px; padding-bottom: 8px; }
  .acc-cat-card:first-child .acc-cat-name { font-size: 1.6rem; }
  .acc-cat-icon { width: 32px; height: 32px; font-size: 0.75rem; top: 12px; right: 12px; }
  .acc-cat-card-num { font-size: 0.55rem; top: 12px; left: 12px; }
  .acc-cat-btn-single { padding: 8px 16px; font-size: 0.63rem; }
  .acc-prestations { padding: 40px 16px 60px; }
  .acc-section-header { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .acc-cat-grid { grid-template-columns: 1fr; gap: 6px; }
  .acc-cat-card { height: 200px; }
  .acc-cat-card:first-child { height: 240px; }
  .acc-cat-name { font-size: 1.1rem; bottom: 40px; left: 10px; right: 10px; }
  .acc-cat-card:first-child .acc-cat-name { font-size: 1.3rem; }
  .acc-cat-actions-inline { bottom: 16px; right: 16px; }
  .acc-cat-btn-single { padding: 7px 14px; font-size: 0.6rem; }
}
/* Touch devices always show CTA */
@media (hover: none) {
  .acc-cat-actions-inline { opacity: 1; transform: translateY(0); }
  .acc-cat-card--img { filter: brightness(0.85); }
  .acc-cat-card:active .acc-cat-card--img { filter: brightness(0.65); }
}

/* ── Atelier sélecteur de catégorie : 1 carte pleine largeur ─ */
body.page-accueil .acc-cat-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 34px;
}

/* Onglets catégories */
body.page-accueil .acc-cat-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3px;
}
body.page-accueil .acc-cat-tabs::-webkit-scrollbar { display: none; }

body.page-accueil .acc-cat-tab {
  flex: 1 0 auto;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.3);
  border: none;
  border-bottom: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  outline: none;
}
body.page-accueil .acc-cat-tab:hover {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
}
body.page-accueil .acc-cat-tab.active {
  color: #C9A96E;
  border-bottom-color: #C9A96E;
  background: rgba(201,169,110,0.07);
}

/* Carte unique pleine largeur */
body.page-accueil .acc-cat-card {
  width: 100%;
  height: 500px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  cursor: pointer;
}
body.page-accueil .acc-cat-card:hover {
  box-shadow: inset 0 0 0 2px #C9A96E;
}
body.page-accueil .acc-cat-card--img {
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1);
}
body.page-accueil .acc-cat-card:hover .acc-cat-card--img {
  filter: brightness(0.82) saturate(1.1);
  transform: scale(1.05);
}
body.page-accueil .acc-cat-card-num { top: 28px; left: 28px; }
body.page-accueil .acc-cat-icon    { top: 28px; right: 28px; width: 44px; height: 44px; }
body.page-accueil .acc-cat-name {
  bottom: 88px; left: 28px; right: 28px;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.04em;
}
body.page-accueil .acc-cat-card:first-child .acc-cat-name { font-size: clamp(3rem, 7vw, 6rem); }
body.page-accueil .acc-cat-actions-inline {
  opacity: 0;
  transform: translateY(10px);
  bottom: 28px; right: 28px;
}
body.page-accueil .acc-cat-card:hover .acc-cat-actions-inline {
  opacity: 1; transform: translateY(0);
}
body.page-accueil .acc-cat-btn-single {
  padding: 11px 26px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  border-radius: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Flèches de navigation */
body.page-accueil .acc-cat-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.85rem;
}
body.page-accueil .acc-cat-nav:hover {
  background: #C9A96E; color: #000; border-color: #C9A96E;
}
body.page-accueil .acc-cat-nav--prev { left: 20px; }
body.page-accueil .acc-cat-nav--next { right: 20px; }

@media (max-width: 768px) {
  body.page-accueil .acc-cat-card  { height: 380px; }
  body.page-accueil .acc-cat-name  { font-size: clamp(2.2rem, 9vw, 3.5rem); bottom: 76px; left: 16px; right: 16px; }
  body.page-accueil .acc-cat-tab   { padding: 10px 12px; font-size: 0.52rem; }
  body.page-accueil .acc-cat-nav   { width: 38px; height: 38px; }
  body.page-accueil .acc-cat-nav--prev { left: 10px; }
  body.page-accueil .acc-cat-nav--next { right: 10px; }
  body.page-accueil .acc-cat-actions-inline { bottom: 18px; right: 16px; }
}
@media (max-width: 480px) {
  body.page-accueil .acc-cat-card  { height: 320px; }
  body.page-accueil .acc-cat-name  { font-size: clamp(1.8rem, 10vw, 2.8rem); }
}
@media (hover: none) {
  body.page-accueil .acc-cat-actions-inline { opacity: 1; transform: none; }
}

/* Tabs */
.acc-tabs {
  display: inline-flex; gap: 4px; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: 50px; padding: 4px;
}
.acc-tab {
  padding: 8px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.45); background: none; border: none; cursor: pointer;
  transition: all 0.2s ease;
}
.acc-tab.active, .acc-tab:hover {
  background: rgba(255,255,255,0.1); color: #fff;
}
.acc-tab.active { color: #FFFFFF; font-weight: 600; }

/* Brand bar */
.footer-brand-bar {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.footer-brand-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400; color: #fff;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 0.9;
}
.footer-tagline {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  font-family: "Poppins", sans-serif;
}

.footer-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

/* Grid 4 colonnes */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-size: 0.62rem; font-weight: 700; color: #FFFFFF;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 13px;
}
.footer-links a,
.footer-links address {
  color: rgba(255,255,255,0.38); text-decoration: none;
  font-size: 0.88rem; transition: all 0.25s ease;
  font-style: normal; line-height: 1.5;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); transform: translateX(4px); display: inline-block; }

/* Cookie manage button same style as footer links */
.footer-links .yd-cookie-manage-link,
.yd-cookie-manage-link {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  color: rgba(255,255,255,0.38); text-decoration: none;
  font-size: 0.88rem; transition: all 0.25s ease;
  font-style: normal; line-height: 1.5;
  font-family: inherit; text-align: left;
  display: inline-block;
}
.footer-links .yd-cookie-manage-link:hover,
.yd-cookie-manage-link:hover {
  color: rgba(255,255,255,0.85); transform: translateX(4px);
}
.acc-footer--boutique .footer-links .yd-cookie-manage-link,
.acc-footer--boutique .yd-cookie-manage-link {
  color: rgba(15,15,15,0.45);
}
.acc-footer--boutique .footer-links .yd-cookie-manage-link:hover,
.acc-footer--boutique .yd-cookie-manage-link:hover {
  color: rgba(15,15,15,0.85);
}

/* Socials in brand bar */
.footer-socials {
  display: flex; gap: 10px;
}
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  color: rgba(255,255,255,0.4); transition: all 0.3s ease;
  font-size: 1rem; text-decoration: none;
}
.footer-socials a:hover { border-color: #FFFFFF; color: #FFFFFF; background: rgba(201,169,110,0.06); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  font-size: 0.72rem; color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}
.footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-version {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
/* Fond clair (thème boutique) : le blanc pur serait invisible sur #F5F3EF, on garde un gris sombre lisible */
.acc-footer--boutique .footer-version { color: rgba(0,0,0,0.35); }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-credit-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.acc-footer--boutique .footer-credit-label { color: rgba(0,0,0,0.28); }
.footer-credit {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.footer-credit:hover { color: #C9A96E; }
/* Fond clair (thème boutique) : même exception que footer-version, blanc pur invisible sur #F5F3EF */
.acc-footer--boutique .footer-credit { color: rgba(0,0,0,0.35); }
.acc-footer--boutique .footer-credit:hover { color: #8A6A30; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.acc-cta { background: #060606; padding: 80px 24px; }
.acc-cta-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.acc-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600; color: #fff; margin-bottom: 14px;
}
.acc-cta-sub { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; margin-bottom: 36px; }
.acc-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════════════════════ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.loading-state-full {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px; gap: 20px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.loading-state-full i { font-size: 2rem; color: #FFFFFF; }

/* Toast */
.acc-toast {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--white);
  border-left: 3px solid #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-primary);
  max-width: 320px; word-wrap: break-word;
  white-space: normal; line-height: 1.4;
  animation: fadeIn 0.4s ease-out;
}

/* Mode switcher Street Luxury upgrade */
.acc-mode-switcher-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px; border-radius: 4px;
  color: #fff; text-decoration: none;
  font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
  font-family: var(--font-display);
}
.acc-mode-switcher-btn:hover {
  background: #fff; color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}
/* Theme-aware tools icon fix */
body.page-boutique .acc-mode-switcher-btn:not(:hover) i              { color: #fff; opacity: 0.8; }
body.page-boutique .acc-navbar.scrolled .acc-mode-switcher-btn:not(:hover) i { color: #000; opacity: 0.6; }
body.page-accueil .acc-mode-switcher-btn:not(:hover) i               { color: #fff; opacity: 0.6; }
.acc-mode-switcher-btn i { font-size: 0.9rem; }

/* Social icons in burger menu only */

/* ═══════════════════════════════════════════════════════════
   USER ZONE (navbar connected)
   ══════════/* ── Cart panel ── */
.acc-cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 950; backdrop-filter: blur(4px);
}
.acc-cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px,100vw);
  background: var(--white); border-left: 1px solid var(--border);
  box-shadow: var(--shadow-xl); z-index: 960;
  display: flex; flex-direction: column; animation: slideInRight .22s ease backwards;
}
.acc-cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.acc-cart-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin:0; }
.acc-cart-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gray-100); color: var(--text-secondary);
  cursor: pointer; border: none; transition: var(--t);
}
.acc-cart-close:hover { background: var(--gray-200); }
.acc-cart-body {
  flex: 1; overflow-y: auto; padding: 24px;
  display: flex; flex-direction: column;
  overscroll-behavior: contain;
}

.acc-cart-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(0,0,0,0.3);
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.acc-cart-section-title i { font-size: 0.75rem; color: #C9A96E; }

.acc-cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.acc-cart-item:last-child { border-bottom: none; }

.acc-cart-item-info { flex: 1; min-width: 0; }
.acc-cart-item-name {
  font-size: 0.95rem; font-weight: 700; color: #000;
  margin-bottom: 3px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.acc-cart-type-tag {
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px; background: #f0f0f0; color: #666;
  letter-spacing: 0.05em;
}
.acc-cart-item-sub { font-size: 0.75rem; color: rgba(0,0,0,0.45); font-weight: 500; }
.acc-cart-item-supplement { font-size: 0.68rem; color: #C9A96E; font-weight: 600; margin-top: 2px; }

.acc-cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.acc-cart-item-price { font-size: 0.88rem; font-weight: 700; color: #C9A96E; }
.acc-cart-item-btns { display: flex; gap: 4px; }
.acc-cart-item-remove, .acc-cart-item-edit {
  background: none; border: none; padding: 4px; cursor: pointer; color: rgba(0,0,0,0.25);
  font-size: 0.85rem; transition: color 0.2s;
}
.acc-cart-item-remove:hover { color: #8B0000; }
.acc-cart-item-edit:hover { color: #000; }

.acc-cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.acc-cart-empty i { font-size: 3rem; margin-bottom: 16px; display: block; opacity: 0.15; }

.acc-cart-footer {
  padding: 24px; background: #FAFAF8; border-top: 1px solid var(--border);
}
.acc-cart-total {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.acc-cart-total span:first-child { font-size: 0.8rem; font-weight: 600; color: rgba(0,0,0,0.4); text-transform: uppercase; }
.acc-cart-total span:last-child { font-size: 1.1rem; font-weight: 800; color: #000; }
.acc-cart-total.boutique-total { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 8px; margin-top: 8px; }

.acc-cart-submit {
  width: 100%; padding: 16px; background: #000; color: #fff; border: none;
  font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; transition: all 0.25s; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.acc-cart-submit:hover { background: #C9A96E; color: #000; }
.acc-cart-submit:disabled { opacity: 0.6; cursor: not-allowed; }-type { font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-left: 6px; display: inline-block; }
.acc-cart-item-sub  { font-size: 0.72rem; color: var(--text-muted); margin-left: 6px; }
.acc-cart-item-desc { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }
.acc-cart-item-notes { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.acc-cart-item-remove {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.72rem; cursor: pointer;
  border-radius: 50%; border: none; background: none; flex-shrink: 0; transition: var(--t);
}
.acc-cart-item-remove:hover { color: #cc0000; background: rgba(200,0,0,0.08); }
.acc-cart-item-edit {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.72rem; cursor: pointer;
  border-radius: 50%; border: none; background: none; flex-shrink: 0; transition: var(--t);
}
.acc-cart-item-edit:hover { color: var(--text-primary); background: var(--gray-100); }
.acc-cart-item-actions { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; align-items: center; }

/* ── Cart item HERO (premier article featured) ── */
.acc-cart-item--hero {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-left: 3px solid #C9A96E;
  border-radius: 10px;
  padding: 16px;
  position: relative;
  flex-direction: column;
  gap: 0;
}
.acc-cart-hero-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; gap: 4px;
}
.acc-cart-item--hero .acc-cart-item-remove { color: var(--text-muted); }
.acc-cart-item--hero .acc-cart-item-remove:hover { color: #cc0000; background: rgba(200,0,0,0.08); }
.acc-cart-item--hero .acc-cart-item-edit { color: var(--text-muted); }
.acc-cart-item--hero .acc-cart-item-edit:hover { color: var(--text-primary); background: var(--gray-100); }
.acc-cart-hero-cat {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--text-primary); letter-spacing: 0.04em; line-height: 1.1;
  padding-right: 56px;
}
.acc-cart-hero-type {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #C9A96E; margin-top: 4px;
}
.acc-cart-hero-desc {
  font-size: 0.78rem; color: var(--text-secondary);
  margin: 8px 0 4px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.acc-cart-hero-meta {
  font-size: 0.68rem; color: var(--text-muted); margin-top: 4px;
}
.acc-cart-hero-estimate {
  font-size: 0.75rem; color: #C9A96E; margin-top: 6px; font-weight: 600;
}
.acc-cart-hero-photos {
  display: flex; gap: 4px; margin-top: 10px; flex-wrap: wrap;
}
.acc-cart-hero-photos img {
  width: 40px; height: 40px; object-fit: cover;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.1);
}

/* ── Cart mini-list (articles suivants) ── */
.acc-cart-mini-section { margin-top: 4px; }
.acc-cart-mini-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.3);
  padding: 10px 0 6px; border-top: 1px solid var(--border);
}
.acc-cart-item--mini {
  background: transparent; border: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 8px 2px; gap: 8px; align-items: center;
}
.acc-cart-item--mini:last-child { border-bottom: none; }
.acc-cart-mini-cat {
  font-size: 0.82rem; font-weight: 600; color: var(--black); flex: 1;
}
.acc-cart-mini-sub { font-size: 0.72rem; color: var(--text-muted); }
/* ── Cart table layout ── */
.acc-cart-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.acc-cart-table thead th {
  text-align: left; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 6px 8px 10px; border-bottom: 1px solid var(--border);
}
.acc-cart-table thead th:last-child { width: 28px; }
.acc-cart-row td { padding: 10px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.acc-cart-row:last-child td { border-bottom: none; }
.acc-cart-row-nom { font-weight: 600; color: var(--black); }
.acc-cart-row-cat { color: var(--text-muted); font-size: 0.75rem; }
.acc-cart-row-prix { font-weight: 700; white-space: nowrap; color: var(--black); }
.acc-cart-row-del { text-align: center; }
/* ── Cart footer ── */
.acc-cart-footer { padding: 16px; border-top: 1px solid var(--border); }
.acc-cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 14px; font-size: 1rem; }
.acc-cart-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-left: auto;
  padding: 15px 28px;
  background: var(--black); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer; transition: var(--t);
  min-width: 200px;
}
.acc-cart-submit-btn:hover { background: #222; }
.acc-cart-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.acc-cart-urgence { font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-left: 6px; display: inline-block; }
.acc-cart-urgence-urgent { background: #fff3cd; color: #111111; }
.acc-cart-urgence-express { background: #ffe0e0; color: #111111; }

/* ═══════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════ */
.acc-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  backdrop-filter: blur(5px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn .18s ease;
}
.acc-modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gray-100); color: var(--text-secondary);
  cursor: pointer; border: none; transition: var(--t); z-index: 2;
}
.acc-modal-close:hover { background: var(--gray-200); }

/* Auth modal */
.acc-auth-modal-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px 36px; max-width: 420px; width: 100%;
  position: relative; text-align: center; animation: fadeInUp .22s ease;
  color: var(--text-primary);
}
.acc-auth-modal-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--black); margin-bottom: 20px;
}
.acc-auth-modal-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.acc-auth-modal-sub { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 28px; }
.acc-google-btn {
  width: 100%; padding: 13px 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--text-primary); font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; transition: var(--t);
}
.acc-google-btn:hover { border-color: var(--gray-400); background: var(--gray-50); }
.acc-google-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Devis modal */
.acc-devis-modal-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative; animation: fadeInUp .22s ease;
  /* reset héritage couleur blanche du body.page-accueil */
  color: var(--text-primary);
}
/* Tous les enfants texte restent sombres dans le modal */
.acc-devis-modal-card label,
.acc-devis-modal-card .form-group label,
.acc-devis-modal-card .dv-title,
.acc-devis-modal-card .dv-subtitle,
.acc-devis-modal-card select,
.acc-devis-modal-card input,
.acc-devis-modal-card textarea {
  color: var(--text-primary);
}
.acc-devis-modal-card select,
.acc-devis-modal-card input,
.acc-devis-modal-card textarea {
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 16px; /* Evite le zoom auto iOS */
  color: var(--text-primary);
  outline: none;
  transition: all .2s;
}

.acc-devis-modal-card .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-devis-modal-card .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.acc-devis-modal-card .form-row .form-group {
  flex: 1 1 240px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .acc-devis-modal-card .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .acc-devis-modal-card .form-row .form-group {
    width: 100%;
    flex: none;
  }
}




.acc-devis-modal-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .acc-devis-modal-card select {
    height: 58px;
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 48px;
    background-position: right 20px center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    font-size: 1rem;
    transform: translateZ(0); /* Fix browser picker offset */
  }
  .acc-devis-modal-card input {
    height: 54px;
    border-radius: 16px;
  }
.acc-devis-modal-card textarea {
    border-radius: 16px;
  }
}

/* Selector Grid (Step 2 Mobile) */
.dv-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  width: 100%;
}
.dv-selector-btn {
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 14px 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.dv-selector-btn:hover {
  background: #f0f0f0;
}
.dv-selector-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 480px) {
  .dv-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




.acc-devis-modal-card select:focus,
.acc-devis-modal-card input:focus,
.acc-devis-modal-card textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.dv-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.dv-cat-icon { font-size: 24px; color: #111; background: #f0f0f0; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Dropzone */
.dv-dropzone {
  border: 2px dashed #ddd; border-radius: 12px; padding: 32px;
  text-align: center; background: #fafafa; cursor: pointer;
  transition: all 0.2s ease; display: flex; flex-direction: column;
  align-items: center; gap: 12px; margin-top: 8px;
}
.dv-dropzone:hover, .dv-dropzone.dragover { border-color: #111; background: #f0f0f0; }
.dv-dropzone i { font-size: 2rem; color: #888; }
.dv-dropzone span { font-size: 0.9rem; color: #555; }
.dv-dropzone .hint { font-size: 0.75rem; color: #999; }

.dv-files-preview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px; margin-top: 12px;
}
.dv-file-item {
  position: relative; width: 70px; height: 70px; border-radius: 8px;
  overflow: hidden; border: 1px solid #eee; background: #fff;
}
.dv-file-item img { width: 100%; height: 100%; object-fit: cover; }
.dv-file-remove {
  position: absolute; top: 2px; right: 2px; background: rgba(0,0,0,0.6);
  color: #fff; border: none; border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* Photos obligatoires par angle */
.dv-angles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px; margin-top: 8px;
}
.dv-dropzone-angle {
  position: relative; padding: 16px 8px; margin-top: 0; aspect-ratio: 1 / 1;
  justify-content: center; overflow: hidden;
}
.dv-dropzone-angle.has-file { border-style: solid; border-color: #111; padding: 0; }
.dv-angle-preview { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: 10px; }
.dv-angle-label {
  font-size: 0.72rem; color: #555; font-weight: 600; z-index: 1;
}
.dv-dropzone-angle.has-file .dv-angle-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent); color: #fff; text-align: left;
}
.dv-cat-icon {
  width: 52px; height: 52px; background: var(--gray-100); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gray-700); flex-shrink: 0;
}
.dv-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.dv-subtitle { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.45; }
.required-star { color: #e53e3e; font-size: 0.72rem; }
.dv-auth-prompt {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center; margin: 8px 0 16px;
}
.dv-auth-prompt i { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 8px; display: block; }
.dv-auth-prompt p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 14px; }
.dv-connect-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  max-width: 300px; width: 100%; margin: 0 auto;
  padding: 12px 20px; border-radius: var(--radius-md);
  background: var(--gray-900); color: var(--white);
  font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: var(--t);
}
.dv-connect-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   DEVIS MODAL STEPPER — redesign liste + animations
   ════════════════════════════════════════════════════════════ */

/* ── Modal card ── */
.acc-devis-modal-card {
  background: #fff;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 600px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Content flex column (stepper body stays pinned, nav stays at bottom) ── */
#acc-devis-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ── Header ── */
.dv-stepper-header {
  padding: 20px 28px 0;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.dv-stepper-cat {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 18px;
}
.dv-stepper-cat i { color: #C9A96E; font-size: 0.85rem; }

/* ── Progress bar ── */
.dv-stepper-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 20px;
}
.dv-step-dot-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex: none;
  position: relative;
}
.dv-step-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  background: #f5f5f5; color: #aaa;
  border: 2px solid #e8e8e8;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.dv-step-dot-wrap.active .dv-step-dot {
  background: #111; color: #fff; border-color: #111;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(17,17,17,0.08);
}
.dv-step-dot-wrap.done .dv-step-dot {
  background: #C9A96E; color: #fff; border-color: #C9A96E;
  animation: dv-dot-done 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes dv-dot-done {
  0%   { transform: scale(0.7); }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.dv-step-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #bbb; white-space: nowrap;
  transition: color 0.2s;
}
.dv-step-dot-wrap.active .dv-step-label { color: #111; }
.dv-step-dot-wrap.done   .dv-step-label { color: #C9A96E; }
.dv-step-line {
  flex: 1; height: 1px;
  background: #e8e8e8;
  margin: 0 3px; margin-bottom: 20px;
  transition: background 0.4s ease, transform 0.4s ease;
  transform-origin: left;
}
.dv-step-line.done {
  background: linear-gradient(to right, #C9A96E, #C9A96E);
}

@media (max-width: 600px) {
  .dv-stepper-bar { padding-bottom: 28px; }
  .dv-step-label { display: none; }
  .dv-step-dot-wrap.active .dv-step-label {
    display: block;
    position: absolute;
    top: 34px; left: 50%;
    transform: translateX(-50%);
    width: 80px; text-align: center;
    font-size: 0.5rem; color: #111;
  }
  .dv-step-dot { width: 24px; height: 24px; font-size: 0.62rem; }
}

/* ── Body scrollable ── */
.dv-stepper-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  min-height: 200px;
}
.dv-stepper-body::-webkit-scrollbar { width: 4px; }
.dv-stepper-body::-webkit-scrollbar-track { background: transparent; }
.dv-stepper-body::-webkit-scrollbar-thumb { background: #e0e0e0; }

/* ── Step enter animation ── */
.dv-step-enter {
  animation: dv-step-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes dv-step-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Hint ── */
.dv-step-hint {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: rgba(0,0,0,0.45);
  margin-bottom: 18px; line-height: 1.5;
}
.required-star { color: #C9A96E; margin-left: 2px; }

/* ── LIST — sous-catégories & services ── */
.dv-sc-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid #ececec;
  overflow: hidden;
}

/* Stagger animation for list items */
.dv-sc-grid .dv-sc-card:nth-child(1)  { animation-delay: 0ms; }
.dv-sc-grid .dv-sc-card:nth-child(2)  { animation-delay: 45ms; }
.dv-sc-grid .dv-sc-card:nth-child(3)  { animation-delay: 90ms; }
.dv-sc-grid .dv-sc-card:nth-child(4)  { animation-delay: 135ms; }
.dv-sc-grid .dv-sc-card:nth-child(5)  { animation-delay: 180ms; }
.dv-sc-grid .dv-sc-card:nth-child(6)  { animation-delay: 225ms; }
.dv-sc-grid .dv-sc-card:nth-child(7)  { animation-delay: 270ms; }
.dv-sc-grid .dv-sc-card:nth-child(8)  { animation-delay: 315ms; }
.dv-sc-grid .dv-sc-card:nth-child(9)  { animation-delay: 360ms; }
.dv-sc-grid .dv-sc-card:nth-child(10) { animation-delay: 405ms; }

.dv-sc-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease;
  animation: dv-item-in 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.dv-sc-card:last-child { border-bottom: none; }
@keyframes dv-item-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dv-sc-card:hover { background: #fafafa; }
.dv-sc-card.selected { background: rgba(201,169,110,0.06); }

/* Left content */
.dv-sc-card-left {
  display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
}

/* These span classes are generated by JS — restyle them */
.dv-sc-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: #111;
  line-height: 1.3;
}
.dv-sc-card-prix {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; color: rgba(0,0,0,0.4);
  font-weight: 500;
}

/* Step "Prestations" — nom + prix sont enfants directs de .dv-sc-card (pas de wrapper .dv-sc-card-left) :
   le nom prend l'espace flexible restant pour que le prix reste toujours ancré à droite, juste avant le check. */
.dv-sc-card > .dv-sc-card-name {
  flex: 1 1 auto;
  min-width: 0;
}
.dv-sc-card > .dv-sc-card-prix {
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
}
.dv-sc-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
  font-style: italic;
  line-height: 1.4;
  margin-top: 2px;
}

/* Animated checkbox on the right — replaces old .dv-sc-card-check */
.dv-sc-card-check {
  width: 22px; height: 22px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: transparent;
  background: transparent;
  transition: border-color 0.2s ease, background 0.25s ease, color 0.15s ease;
  position: static;
  opacity: 1;
}
.dv-sc-card:hover .dv-sc-card-check {
  border-color: #C9A96E;
}
.dv-sc-card.selected .dv-sc-card-check {
  background: #C9A96E;
  border-color: #C9A96E;
  color: #fff;
  animation: dv-check-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes dv-check-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* Total estimation */
.dv-sc-total {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 700; color: #111;
  padding: 12px 18px;
  background: #f8f6f1;
  border-left: 3px solid #C9A96E;
  margin-top: 4px;
  animation: dv-fade-up 0.2s ease both;
}
.dv-sc-total.hidden { display: none; }
@keyframes dv-fade-up {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.dv-step-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 48px 24px; color: #aaa; text-align: center;
}
.dv-step-empty i { font-size: 2.2rem; color: #ddd; }
.dv-step-empty p { font-size: 0.82rem; line-height: 1.5; max-width: 260px; }

/* ── Nav buttons ── */
.dv-stepper-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  background: #fff;
}
.dv-nav-back {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1px solid #e0e0e0; border-radius: 0;
  padding: 10px 18px; font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #888; cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.dv-nav-back:hover { border-color: #aaa; color: #333; }
.dv-nav-next {
  display: inline-flex; align-items: center; gap: 7px;
  background: #111; color: #fff; border: none; border-radius: 0;
  padding: 11px 24px; font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.18s, opacity 0.18s;
  position: relative; overflow: hidden;
}
.dv-nav-next::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.25) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.25s;
}
.dv-nav-next:hover::after { opacity: 1; }
.dv-nav-next.disabled { opacity: 0.35; cursor: not-allowed; }
.dv-nav-next.disabled::after { display: none; }

/* ── Mode expédition — liste améliorée ── */
.dv-expedition-grid {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid #ececec;
  overflow: hidden;
}
.dv-expedition-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: none; border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background: #fff; cursor: pointer; text-align: left;
  transition: background 0.18s;
  position: relative;
  animation: dv-item-in 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.dv-expedition-card:nth-child(1) { animation-delay: 0ms; }
.dv-expedition-card:nth-child(2) { animation-delay: 60ms; }
.dv-expedition-card:nth-child(3) { animation-delay: 120ms; }
.dv-expedition-card:last-child { border-bottom: none; }
.dv-expedition-card:hover { background: #fafafa; }
.dv-expedition-card.selected { background: rgba(201,169,110,0.06); }
.dv-expedition-card-icon {
  width: 30px; height: 30px; border-radius: 0;
  background: #111; color: #C9A96E;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
  transition: background 0.2s;
}
.dv-expedition-card.selected .dv-expedition-card-icon { background: #C9A96E; color: #fff; }
.dv-expedition-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dv-expedition-card-body strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 700; color: #111;
}
.dv-expedition-card-body span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; color: rgba(0,0,0,0.4); line-height: 1.35;
}
.dv-expedition-check {
  width: 20px; height: 20px; border: 2px solid #ddd; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; color: transparent; background: transparent;
  transition: all 0.2s; flex-shrink: 0;
}
.dv-expedition-card.selected .dv-expedition-check {
  background: #C9A96E; border-color: #C9A96E; color: #fff;
  animation: dv-check-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ════════════════════════════════════════════════════════════
   TICKET MEMBRE espace user profil
   ════════════════════════════════════════════════════════════ */
.yd-ticket-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.yd-ticket-container {
  position: relative;
  display: flex;
  gap: 0;
  filter:
    drop-shadow(0 20px 40px rgba(0,0,0,0.28))
    drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  transition: gap 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s ease;
  cursor: grab;
}
.yd-ticket-container:hover  { gap: 20px; transform: translateY(-4px) scale(1.015); }
.yd-ticket-container:active { cursor: grabbing; }

.yd-ticket-main {
  position: relative;
  width: 320px;
  height: 240px;
  background: #fcfcfb;
  padding: 26px 28px;
  border-radius: 20px 28px 28px 20px;
}
.yd-ticket-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.yd-ticket-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}
.yd-ticket-eyebrow { color: #888; }
.yd-ticket-serial  { color: #C9A96E; }

.yd-ticket-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 2px;
  color: #111;
  margin: 10px 0 6px;
}
.yd-ticket-subtitle {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: #888;
}
.yd-ticket-footer {
  display: flex;
  gap: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}
.yd-info-block { display: flex; flex-direction: column; gap: 3px; }
.yd-info-label { font-size: 0.58rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.yd-info-value { font-size: 0.82rem; font-weight: 700; color: #111; }

.yd-ticket-perforation {
  position: absolute;
  right: -2px; top: 36px; bottom: 36px;
  width: 4px;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.12) 50%);
  background-size: 100% 10px;
  transition: opacity 0.3s ease;
}
.yd-ticket-container:hover .yd-ticket-perforation { opacity: 0; }

/* Stub */
.yd-ticket-stub {
  position: relative;
  width: 110px;
  height: 240px;
  background: #fcfcfb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px 0;
  border-radius: 28px 20px 20px 28px;
}
.yd-foil-seal {
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0d5b8, #f5ead4 40%, #b8a068 60%, #e0d5b8);
  background-size: 200% 200%;
  animation: yd-shimmer 3s infinite linear;
  box-shadow: 0 3px 10px rgba(201,169,110,0.25);
}
@keyframes yd-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.yd-barcode {
  width: 34px;
  height: 76px;
  background: repeating-linear-gradient(
    90deg, #111 0, #111 2px, transparent 2px, transparent 4px,
    #111 4px, #111 5px, transparent 5px, transparent 8px
  );
  opacity: 0.75;
}
.yd-stub-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #C9A96E;
}

/* Responsive ticket */
@media (max-width: 480px) {
  .yd-ticket-main { width: 240px; height: 200px; padding: 18px 20px; }
  .yd-ticket-stub { width: 80px; height: 200px; }
  .yd-ticket-title { font-size: 1.9rem; }
  .yd-ticket-footer { gap: 16px; }
  .yd-ticket-container:hover { gap: 12px; }
}
.dv-prix-block {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0,120,60,0.06), rgba(0,80,40,0.03));
  border: 1px solid rgba(0,120,60,0.2); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 4px; animation: fadeInUp .18s ease;
}
.dv-prix-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #111111; opacity: .8; }
.dv-prix-value { font-size: 1.6rem; font-weight: 800; color: #111111; line-height: 1; }
.dv-prix-note { width: 100%; font-size: 0.72rem; color: var(--text-muted); margin: 4px 0 0; line-height: 1.4; }

/* Selection grid (new multi-select) */
.dv-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.dv-selection-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}
.dv-selection-item:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dv-selection-item.selected {
  border-color: var(--black);
  background: var(--gray-50);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dv-sc-check { display: none; }

/* ── Category picker ──────────────────────────────────────── */
.dv-cat-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.dv-cat-pick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.dv-cat-pick-btn i { font-size: 1.3rem; color: var(--text-secondary); }
.dv-cat-pick-btn:hover {
  border-color: var(--black);
  background: var(--gray-50);
}
.dv-cat-pick-btn:hover i { color: var(--black); }

/* ── Multi-select dropdown (dv-ms-*) ──────────────────────── */
.dv-multi-select {
  position: relative;
}
.dv-ms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.18s;
}
.dv-ms-header:hover { border-color: var(--gray-400); }
.dv-ms-header.active {
  border-color: var(--black);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 600px) {
  .dv-ms-header {
    height: 56px;
    border-radius: 14px;
    background-color: #f8f8f8;
    border-color: rgba(0,0,0,0.08);
    font-weight: 500;
  }
}

.dv-ms-header .fa-chevron-down {
  font-size: 0.6rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.dv-ms-header.active .fa-chevron-down { transform: rotate(180deg); }

.dv-ms-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--black);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.dv-ms-dropdown.hidden { display: none; }

.dv-ms-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}
.dv-ms-item:last-child { border-bottom: none; }
.dv-ms-item:hover { background: var(--gray-50); }
.dv-ms-item.selected { background: var(--gray-50); }

.dv-ms-label-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 10px;
  cursor: pointer;
}
.dv-ms-name {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}
.dv-ms-prix {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 20px;
}
.dv-ms-item.selected .dv-ms-prix { background: rgba(0,0,0,0.07); }

.dv-ms-check-icon {
  font-size: 0.6rem;
  color: var(--text-primary);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.dv-ms-item.selected .dv-ms-check-icon { opacity: 1; }

.dv-selection-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  height: 100%;
}
.dv-selection-check {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.dv-selection-item.selected .dv-selection-check {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.dv-selection-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dv-selection-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.dv-selection-prix {
  font-size: 0.78rem;
  color: rgba(15,15,15,0.55);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   USER AUTH TABS
   ═══════════════════════════════════════════════════════════ */
.user-auth-tabs { display: flex; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.user-auth-tab {
  flex: 1; padding: 10px 16px; font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--t);
}
.user-auth-tab.active { color: var(--text-primary); border-bottom-color: var(--black); font-weight: 600; }
.user-auth-tab:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   ESPACE USER
   ═══════════════════════════════════════════════════════════ */
.user-view-intro {
  background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-secondary);
}
.user-view-intro a { color: var(--black); text-decoration: underline; }
/* ---- LISTE PANIER ---- */
.user-items-list { display: flex; flex-direction: column; gap: 10px; }

.user-item-card {
  background: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.user-item-card:hover { 
  background: rgba(255, 255, 255, 0.05); 
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}
.user-item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--black);
}

.user-item-main { padding-left: 6px; }
.user-item-top { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; }
.user-item-cat { font-weight: 700; font-size: .88rem; color: var(--text-primary); }
.user-item-type-badge {
  font-size: .62rem; font-weight: 800;
  padding: 2px 9px; border-radius: 20px;
  letter-spacing: .6px; text-transform: uppercase;
}
.badge-vente        { background: rgba(201,169,110,0.12); color: #8a6820; border: 1px solid rgba(201,169,110,0.25); }
.badge-restauration { background: #111; color: #fff; }
.user-item-sub  { font-size: .72rem; color: var(--text-muted); }
.user-item-desc { font-size: .83rem; color: var(--text-secondary); line-height: 1.5; }
.user-item-notes { font-size: .76rem; color: var(--text-muted); margin-top: 4px; font-style: italic; }
.user-item-price { font-weight: 800; font-size: .9rem; }

.user-cart-footer {
  background: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.user-cart-total-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.user-cart-total-label { font-weight: 400; font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.user-cart-total-val   { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; color: var(--text-primary); }

/* Mini timeline */
.mini-timeline { display: flex; align-items: flex-start; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; gap: 0; }
.mini-step { display: flex; flex-direction: column; align-items: center; min-width: 52px; position: relative; }
.mini-step:not(:last-child)::after { content: ''; position: absolute; top: 5px; left: calc(50% + 5px); width: calc(100% - 10px); height: 2px; background: var(--gray-200); z-index: 0; }
.mini-step.done:not(:last-child)::after { background: var(--black); }
.mini-step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); border: 2px solid var(--gray-300); position: relative; z-index: 1; flex-shrink: 0; }
.mini-step.done .mini-step-dot { background: var(--black); border-color: var(--black); }
.mini-step.current .mini-step-dot { background: var(--white); border-color: var(--black); border-width: 3px; box-shadow: 0 0 0 3px rgba(0,0,0,.1); }
.mini-step-label { font-size: 0.58rem; color: var(--text-muted); margin-top: 4px; text-align: center; white-space: nowrap; }
.mini-step.current .mini-step-label { color: var(--text-primary); font-weight: 600; }
.mini-step.done .mini-step-label { color: var(--text-secondary); }
.mini-timeline-annule { font-size: 0.75rem; color: #111111; background: #fff0f0; border: 1px solid #ffaaaa; border-radius: var(--radius-sm); padding: 6px 12px; margin-top: 12px; display: inline-block; }

/* Profil */
.user-profil-card { 
  margin: 40px auto; 
  padding: 48px; 
  border-radius: 32px; 
  max-width: 800px; 
  background: var(--white); 
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.acc-dropdown-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1000;
  padding: 10px 0;
}

.user-profil-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.user-profil-header { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
  margin-bottom: 40px; 
  padding-bottom: 32px; 
  border-bottom: 1px solid var(--border); 
  position: relative;
  z-index: 1;
}

.acc-dropdown-sub-item {
  padding: 10px 18px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.acc-dropdown-sub-item:hover {
  background: var(--gray-50);
  color: var(--text-primary);
}

.user-profil-avatar { 
  width: 64px; 
  height: 64px; 
  border-radius: 20px; 
  background: var(--gray-100); 
  color: var(--text-primary); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.5rem; 
  flex-shrink: 0; 
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.user-profil-title { 
  font-family: var(--font-display);
  font-size: 1.8rem; 
  font-weight: 400; 
  margin: 0 0 6px; 
  color: var(--text-primary); 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.user-profil-subtitle { 
  font-size: 0.88rem; 
  color: var(--text-muted); 
  margin: 0; 
  font-weight: 300;
}

/* History */
.detail-history { display: flex; flex-direction: column; gap: 8px; }
.detail-history-item { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 8px 10px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.detail-history-date { font-size: 0.72rem; color: var(--text-muted); }
.detail-history-note { font-size: 0.75rem; color: var(--text-secondary); }

/* Nav badge */
.nav-badge { background: #e53e3e; color: var(--white); font-size: 0.58rem; font-weight: 700; padding: 1px 5px; border-radius: 10px; min-width: 16px; text-align: center; margin-left: auto; }
.sidebar.collapsed .nav-badge { position: absolute; top: 6px; left: 30px; margin-left: 0; opacity: 1; width: auto; }

/* ── Order dissociation ── */
.order-section { margin-bottom: 40px; }
.order-type-header {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; color: var(--black);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.order-type-header i { color: var(--text-muted); font-size: 1.1rem; }

/* ── Prestation groups (Accordions) Street style ── */
.prest-group {
  margin-bottom: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
}
.prest-group:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(255,255,255,0.06);
}
.prest-group-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--gray-50);
  cursor: pointer; user-select: none;
  transition: background 0.2s;
  border-bottom: 1px solid transparent;
  border-left: 3px solid transparent;
}
.prest-group-header:hover {
  background: rgba(255,255,255,0.08);
  border-left-color: #C9A96E;
}
.prest-group:not(.collapsed) .prest-group-header {
  border-left-color: #C9A96E;
  border-bottom-color: rgba(201,169,110,0.2);
}
.prest-group-header i.group-icon {
  font-size: 0.88rem; color: #C9A96E;
  width: 20px; text-align: center;
}
.prest-group-header i.fa-chevron-down {
  font-size: 0.72rem; opacity: 0.5; color: #C9A96E;
  transition: transform 0.3s ease, opacity 0.2s;
}
.prest-group.collapsed .prest-group-header i.fa-chevron-down {
  transform: rotate(-90deg); opacity: 0.3;
}
.prest-group-header span {
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-family: var(--font-display);
}
.prest-group-count {
  margin-left: auto;
  background: rgba(201,169,110,0.12);
  color: #C9A96E;
  padding: 2px 12px; border-radius: 2px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  border: 1px solid rgba(201,169,110,0.25);
}
.prest-group-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; padding: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prest-group.collapsed .prest-group-cards {
  display: none;
}

/* ── Prestation card (redesign) ── */
.prestation-card {
  background: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.prestation-card:hover { 
  transform: translateY(-8px); 
  border-color: var(--border-strong);
  background: var(--gray-50);
  box-shadow: var(--shadow-lg);
}

.prestation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.pc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.pc-meta { display: flex; align-items: center; gap: 10px; }
.pc-ref { 
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--text-primary); 
  letter-spacing: 1px;
}
.pc-type { 
  font-size: 0.65rem; font-weight: 700; padding: 3px 8px; 
  border-radius: 6px; text-transform: uppercase; letter-spacing: 1px; 
}
.badge-restauration { background: var(--gray-100); color: var(--text-primary); border: 1px solid var(--border); }
.badge-vente { background: rgba(201,169,110,0.1); color: #8a6820; border: 1px solid rgba(201,169,110,0.2); }

.pc-lines { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.pc-line { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.pc-line i { width: 14px; flex-shrink: 0; margin-top: 4px; opacity: 0.5; font-size: 0.75rem; color: var(--text-primary); }
.pc-line strong { color: var(--text-primary); font-weight: 600; }
.pc-line.pc-desc { font-weight: 500; color: var(--black); }

.pc-last-event { 
  font-size: 0.75rem; color: var(--text-muted); 
  background: var(--gray-50); border-radius: 12px; padding: 8px 12px; 
  margin: 8px 0; border: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center; 
}

.pc-footer { 
  display: flex; align-items: center; justify-content: space-between; 
  margin-top: 8px; padding-top: 16px; 
  border-top: 1px solid var(--border);
}
.pc-date { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.pc-price { 
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: var(--text-primary); 
}
.pc-price.paid { 
  color: #111111; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  background: rgba(26, 96, 53, 0.1);
  padding: 4px 10px; border-radius: 8px;
}
.pc-price.muted { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }

/* ── Detail modal timeline ── */
.detail-timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 16px 0 8px;
  -webkit-overflow-scrolling: touch;
}
.detail-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 68px;
  position: relative;
}
.detail-tl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--gray-200);
}
.detail-tl-step.done:not(:last-child)::after { background: var(--black); }
.detail-tl-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--text-muted);
  position: relative; z-index: 1;
  transition: all .2s;
}
.detail-tl-step.done .detail-tl-dot { background: var(--black); border-color: var(--black); color: #fff; }
.detail-tl-step.current .detail-tl-dot { background: var(--white); border-color: var(--black); border-width: 2.5px; color: var(--black); box-shadow: 0 0 0 4px rgba(0,0,0,.08); }
.detail-tl-label {
  font-size: .58rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
  line-height: 1.3;
}
.detail-tl-step.current .detail-tl-label { color: var(--text-primary); font-weight: 700; }
.detail-tl-step.done .detail-tl-label { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   ADMIN COMPONENTS
   ═══════════════════════════════════════════════════════════ */
.modal-wide { max-width: 680px !important; }

/* Status badges */
.status-badge.status-devis_soumis,
.status-badge.status-pris         { background: var(--s-pris-bg);    color: var(--s-pris-txt);    border: 1px solid var(--s-pris-bd); }
.status-badge.status-devis_valide,
.status-badge.status-en_preparation,
.status-badge.status-encours      { background: var(--s-encours-bg); color: var(--s-encours-txt); border: 1px solid var(--s-encours-bd); }
.status-badge.status-en_attente_reception,
.status-badge.status-en_attente_expedition,
.status-badge.status-attente      { background: var(--s-attente-bg); color: var(--s-attente-txt); border: 1px solid var(--s-attente-bd); }
.status-badge.status-recu         { background: var(--s-pris-bg);    color: var(--s-pris-txt);    border: 1px solid var(--s-pris-bd); }
.status-badge.status-en_transit   { background: #e3f2fd; color: #0d47a1; border: 1px solid #90caf9; }
.status-badge.status-traite,
.status-badge.status-pret         { background: var(--s-pret-bg);    color: var(--s-pret-txt);    border: 1px solid var(--s-pret-bd); }
.status-badge.status-expedie,
.status-badge.status-expedie_retour,
.status-badge.status-livre        { background: var(--s-livre-bg);   color: var(--s-livre-txt);   border: 1px solid var(--s-livre-bd); }
.status-badge.status-paye         { background: #fffbea; color: #111111; border: 1px solid #f0d080; }
.status-badge.status-annule       { background: var(--s-annule-bg);  color: var(--s-annule-txt);  border: 1px solid var(--s-annule-bd); }

/* Catégories admin */
.cat-manage-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(380px,1fr)); gap: 20px; padding: 4px 0 20px; }
.cat-manage-card  { border-radius: var(--radius-lg); padding: 20px; }
.cat-manage-header{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cat-manage-icon  { width: 40px; height: 40px; background: var(--gray-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gray-700); }
.cat-manage-name  { font-size: 1rem; font-weight: 600; margin: 0; }
.cat-manage-cols  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-type-block   { background: var(--gray-50); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border); }
.cat-type-label   { font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.sous-cat-list    { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 4px; }
.sous-cat-item    { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; padding: 4px 6px; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--border); }
.sous-cat-toggle, .sous-cat-delete { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border: none; background: none; cursor: pointer; border-radius: 4px; color: var(--text-muted); font-size: 0.7rem; transition: var(--t); }
.sous-cat-toggle:hover { color: var(--text-primary); background: var(--gray-100); }
.sous-cat-delete:hover { color: #111111; background: #fff0f0; }
.sous-cat-add-row { display: flex; gap: 6px; }
.sous-cat-input { flex: 1; padding: 6px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.75rem; background: var(--white); color: var(--text-primary); }
.sous-cat-input:focus { outline: none; border-color: var(--gray-700); }

/* Bordereau */
.bordereau-doc { font-family: "Poppins", sans-serif; padding: 28px; background: var(--white); max-width: 100%; }
.bordereau-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--black); }
.bordereau-brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: .1em; color: var(--black); }
.bordereau-brand-sub { font-size: 0.72rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }
.bordereau-title-block { text-align: right; }
.bordereau-title { font-size: 1.2rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.bordereau-ref   { font-size: 0.82rem; color: var(--text-secondary); margin-top: 4px; }
.bordereau-date  { font-size: 0.78rem; color: var(--text-muted); }
.bordereau-addresses { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin-bottom: 28px; }
.bordereau-address-label { font-size: 0.62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.bordereau-address-content { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; font-size: 0.85rem; line-height: 1.7; min-height: 80px; }
.bordereau-address-content.editable { outline: none; cursor: text; }
.bordereau-address-content.editable:focus { border-color: var(--gray-700); background: var(--white); }
.bordereau-address-arrow { font-size: 1.4rem; color: var(--gray-400); }
.bordereau-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.85rem; }
.bordereau-table th { background: var(--black); color: var(--white); padding: 10px 12px; text-align: left; font-weight: 600; font-size: 0.75rem; letter-spacing: .06em; text-transform: uppercase; }
.bordereau-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.bordereau-table tfoot td { border-top: 2px solid var(--black); border-bottom: none; padding-top: 12px; }
.bordereau-table td.editable { cursor: text; outline: none; }
.bordereau-table td.editable:focus { background: var(--gray-50); }
.bordereau-instructions { margin-bottom: 24px; background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.bordereau-instructions-title { font-size: 0.7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.bordereau-instructions-content { font-size: 0.85rem; line-height: 2; outline: none; cursor: text; }
.bordereau-instructions-content:focus { background: var(--white); border-radius: 4px; padding: 4px; }
.bordereau-footer-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.bordereau-weight-box { font-size: 0.8rem; }
.bordereau-inline-edit { outline: none; border-bottom: 1px dashed var(--gray-400); cursor: text; }
.bordereau-sign-box { font-size: 0.8rem; }
.bordereau-actions { display: flex; gap: 10px; padding: 16px 28px 24px; border-top: 1px solid var(--border); }

/* User prest rows */
.user-prest-list { display: flex; flex-direction: column; gap: 8px; }
.user-prest-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════
   EXPEDITION MODAL
   ═══════════════════════════════════════════════════════════ */
.expedition-section { margin-bottom: 24px; }
.expedition-section-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.expedition-section-title i { opacity: .6; }
.transporteur-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.transporteur-option { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 12px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all .3s ease; background: var(--white); text-align: center; }
.transporteur-option input[type="radio"] { display: none; }
.transporteur-option i { font-size: 1.5rem; color: var(--text-muted); transition: .3s; }
.transporteur-name { font-weight: 600; font-size: 0.85rem; }
.transporteur-price { font-size: 0.72rem; color: var(--text-muted); }
.transporteur-option:hover { border-color: var(--gray-400); background: var(--gray-50); }
.transporteur-option.selected { border-color: var(--black); background: var(--gray-50); box-shadow: var(--shadow-sm); }
.transporteur-option.selected i { color: var(--black); }
.expedition-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.expedition-addresses { display: flex; align-items: stretch; gap: 12px; }
.expedition-address-block { flex: 1; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; background: var(--gray-50); }
.expedition-address-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 8px; }
.expedition-address-content { font-size: 0.85rem; line-height: 1.6; }
.expedition-arrow { display: flex; align-items: center; font-size: 1.2rem; color: var(--text-muted); padding: 0 4px; }
.expedition-recap { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.recap-line { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 0.88rem; }
.recap-total { border-top: 2px solid var(--black); margin-top: 8px; padding-top: 10px; font-weight: 700; font-size: 1.1rem; }
.expedition-alert { background: #FFF8E1; border: 1px solid #FFE082; border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 16px; font-size: 0.85rem; color: #5D4200; display: flex; align-items: center; gap: 8px; }
.expedition-alert i { color: #F9A825; font-size: 1.1rem; }
.expedition-actions { margin-top: 20px; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; font-weight: 700; letter-spacing: .05em; width: 100%; white-space: normal; height: auto; line-height: 1.4; display: inline-flex; justify-content: center; align-items: center; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
/* ── Slider Images Modal ── */
.modal-image-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #000;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-top: -24px;
  margin-left: -24px;
  width: calc(100% + 48px);
  margin-bottom: 20px;
}
.modal-image-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.05);
  pointer-events: none;
}
.modal-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  cursor: zoom-in;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.slider-nav:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.slider-nav.prev { left: 15px; }
.slider-nav.next { right: 15px; }
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 10px;
}

/* Icone image dans les cartes */
.pc-image-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 10px;
}
.pc-image-icon i { color: #1A3080; }

.pc-image-icon-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #1A3080;
  margin-left: 6px;
}

/* ── Tech Dashboard ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 10px 0;
}
.tech-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
.tech-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tech-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.tech-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.t-stat {
  display: flex;
  flex-direction: column;
}
.t-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
}
.t-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tech-list-wrap {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.tech-log-list {
  padding: 8px;
}
.tech-log-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8rem;
}
.tech-log-item:last-child { border-bottom: none; }
.tech-log-item .t-time {
  color: var(--text-muted);
  font-family: monospace;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.tech-log-item .t-uid {
  font-weight: 600;
  color: var(--gray-700);
}
.tech-log-item.error {
  background: #fffafa;
  border-left: 3px solid #111111;
}
.tech-log-item .t-path {
  color: #111111;
  font-weight: 600;
}
.tech-ban-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.tech-ban-form input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.badge-live {
  background: #111111;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 15px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #111111;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(39, 174, 96, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.btn-unban {
  margin-left: auto;
  color: var(--text-muted);
  transition: color 0.2s;
}
.btn-unban:hover { color: #111111; }

.btn-clear-logs {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-decoration: underline;
  background: none;
}

@media print {
  .no-print { display: none !important; }
  .modal-overlay { position: static !important; background: none !important; }
  .modal-detail { box-shadow: none !important; border: none !important; max-height: none !important; overflow: visible !important; }
  .bordereau-doc { padding: 0 !important; }
  body * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .bordereau-table th { background: #000 !important; color: #fff !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE MEDIUM (≤ 1100px) : nav secondaire masqué
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Masque "Comment ça marche" et "L'atelier" garde Restauration + Prestations */
  .acc-nav-links .acc-nav-item:nth-child(3),
  .acc-nav-links .acc-nav-item:nth-child(4) { display: none; }
  /* Mode-switcher : icône seule */
  .acc-mode-switcher-btn span { display: none; }
  .acc-mode-switcher-btn { width: 40px; padding: 0; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .acc-nav-links  { display: none; }
  .acc-hamburger  { display: flex; }
  .acc-nav-back   { display: flex; }
  .acc-nav-inner  { padding: 0 8px 0 16px; width: calc(100% - 32px); max-width: calc(100% - 32px); margin: 12px auto 0; }
  .acc-nav-logo   { font-size: 0.95rem; }
  .acc-mobile-menu { width: calc(100% - 32px); max-width: calc(100% - 32px); }

  .hero-content-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-side-info { display: none; }
  .acc-slide-content { padding: 0 32px; }
  .acc-process-inner { grid-template-columns: 1fr; gap: 0; padding: 20px 24px; }
  .acc-process-arrow { display: none; }
  .acc-process-step { flex-direction: row; align-items: center; text-align: left; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .acc-process-step:last-child { border-bottom: none; }
  .acc-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .acc-footer-brand { grid-column: 1 / -1; }
  .bordereau-addresses { grid-template-columns: 1fr; }
  .bordereau-address-arrow { display: none; }
  .bordereau-footer-row { grid-template-columns: 1fr; }
  .cat-manage-cols { grid-template-columns: 1fr; }
  .cat-manage-grid { grid-template-columns: 1fr; }
  .acc-modal-overlay { padding: 16px; }
  .acc-devis-modal-card { padding: 20px; border-radius: var(--radius-lg); padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .acc-auth-modal-card { padding: 28px 20px; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .acc-cart-footer { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  
  /* User items responsive tablet */
  .user-prest-row { padding: 8px 12px; flex-wrap: wrap; gap: 8px; }
  .user-items-list { gap: 12px; }
  .user-view-intro { padding: 10px 12px; font-size: 0.8rem; margin-bottom: 16px; }
  
  /* Modal dévis responsive */
  .acc-devis-modal-card { max-height: 90vh; overflow-y: auto; }
  .stepper-title { font-size: 1rem; margin-bottom: 16px; }
  .drop-zone { padding: 10px 12px; margin-top: 8px; border-radius: 8px; }
  .drop-label { font-size: 0.75rem; }
  
  .user-profil-card { margin: 20px 16px; padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .acc-nav-inner { height: 52px; }
  .acc-nav-logo { font-size: 0.88rem; }
  /* Universe label masqué pour libérer de la place */
  .acc-nav-universe { display: none; }
  /* Mode switcher texte masqué, devient icône carrée */
  .acc-mode-switcher-btn span { display: none; }
  .acc-mode-switcher-btn { width: 44px; padding: 0; justify-content: center; }
  .acc-slide-content { padding: 0 20px; }
  .acc-slide-title { font-size: 2.4rem; }
  .acc-slide-sub { font-size: 0.85rem; margin-bottom: 24px; }
  .acc-slide-tag { font-size: 0.62rem; padding: 4px 12px; }
  .acc-slide-actions { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; padding: 12px 20px; min-height: 48px; }
  .hero-bottom-bar { left: 20px; right: 20px; bottom: 24px; }
  .hero-progress-bar { left: 20px; right: 20px; bottom: 76px; }
  .acc-section-title { font-size: 1.8rem; }
  .acc-section-sub { font-size: 0.85rem; max-width: 100%; }
  .acc-section-cta-strip { flex-direction: column; gap: 14px; }
  .acc-section-stats { font-size: 0.7rem; }
  .acc-prestations { padding: 52px 16px; }
  .acc-cat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .acc-cat-card { padding: 22px 16px; }
  .acc-user-name { display: none; }
  .acc-cart-panel { width: 100vw; }
  .acc-user-zone-inner { z-index: 100; }
  .expedition-row { grid-template-columns: repeat(2, 1fr); }
  .transporteur-grid { grid-template-columns: repeat(2, 1fr); }
  .expedition-addresses { flex-direction: column; }
  .expedition-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
  .btn-lg { padding: 12px 20px; font-size: 0.88rem; }
  .mini-timeline { flex-direction: column; gap: 12px; overflow: visible; padding: 10px 0 0 10px; }
  .mini-step { flex-direction: row; align-items: center; gap: 12px; min-width: 0; width: 100%; justify-content: flex-start; }
  .mini-step:not(:last-child)::after { top: 10px; left: 4px; width: 2px; height: calc(100% + 12px); background: var(--gray-200); }
  .mini-step-dot { width: 10px; height: 10px; }
  .mini-step-label { margin-top: 0; font-size: 0.75rem; text-align: left; }
  .prestation-card-top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .status-badge { align-self: flex-start; font-size: 0.7rem; padding: 3px 10px; }
  
  /* User items & cart responsive */
  .user-items-list { gap: 10px; }
  .user-prest-row { flex-wrap: wrap; padding: 6px 8px; }
  .user-cart-total-label { font-size: 0.85rem; }
  .user-cart-total-val { font-size: 1rem; }
  .user-cart-footer { padding: 12px; gap: 10px; }
  .btn-primary { padding: 10px 12px; font-size: 0.8rem; }
  
  .user-profil-card { padding: 24px 16px; margin: 20px auto; }
  .user-profil-header { gap: 12px; margin-bottom: 24px; padding-bottom: 16px; }
  .user-profil-avatar { width: 48px; height: 48px; font-size: 1.2rem; }
}

@media (max-width: 360px) {
  .acc-cat-grid { grid-template-columns: 1fr; }
  .acc-slide-title { font-size: 1.9rem; }
  .acc-nav-inner { height: 50px; }
  .acc-cart-btn, .acc-hamburger, .acc-signin-btn, .acc-mode-switcher-btn { width: 34px; height: 34px; }
  .acc-prestations { padding: 36px 12px; }
  .acc-section-title { font-size: 1.6rem; }
  .acc-devis-modal-card { padding: 16px; }
  .acc-auth-modal-card { padding: 22px 14px; }
  
  /* User items very small screens */
  .user-prest-row { padding: 6px 8px; font-size: 0.8rem; min-height: auto; }
  .user-view-intro { padding: 8px 10px; font-size: 0.75rem; margin-bottom: 12px; }
  .stepper-title { font-size: 0.9rem; }
  .drop-zone { padding: 8px 10px; }
  .user-profil-card { padding: 16px 12px; margin: 12px 8px; }
  .detail-history { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTISTIC FOOTER Vertical Layout
   ═══════════════════════════════════════════════════════════ */
/* ── Section ticket vitrine ────────────────────────────── */
.acc-ticket-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 40px;
}
.acc-ticket-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.acc-ticket-text { flex: 1; }
.acc-ticket-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 10px 0 14px;
}
.acc-ticket-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 24px;
}
.acc-ticket-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #C9A96E;
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}
.acc-ticket-cta:hover { opacity: 0.85; transform: translateY(-2px); }
.acc-ticket-card-wrap { flex-shrink: 0; }
@media (max-width: 900px) {
  .acc-ticket-inner { flex-direction: column; gap: 40px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .acc-ticket-section { padding: 52px 20px; }
}

/* ── Emojis décoratifs latéraux supprimés ──────────── */
.yd-emoji-side {
  display: none !important;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  text-shadow:
    -4px -4px 0 rgba(0,0,0,0.4),
     4px -4px 0 rgba(0,0,0,0.4),
    -4px  4px 0 rgba(0,0,0,0.4),
     4px  4px 0 rgba(0,0,0,0.4);
  transition: opacity 0.4s ease;
}
.yd-emoji-side--left  { left: 12px; transform: translateY(-50%) rotate(-8deg); }
.yd-emoji-side--right { right: 12px; transform: translateY(-50%) rotate(8deg); }
body:hover .yd-emoji-side { opacity: 0.2; }
@media (max-width: 768px) { .yd-emoji-side { display: none; } }

.acc-footer {
  background: #060606; color: #fff;
  padding: 72px 48px 60px; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 56px; align-items: stretch;
}
.footer-vertical-sidebar {
  flex: 0 0 auto;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-right: 36px;
  display: flex; flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
  min-height: 100%;
}
.vertical-brand-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  flex: 1;
  display: flex; align-items: center;
  /* Gradient or sur toute la hauteur */
  background: linear-gradient(
    to top,
    rgba(201,169,110,0.55) 0%,
    rgba(201,169,110,0.15) 40%,
    rgba(255,255,255,0.04) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  user-select: none;
  pointer-events: none;
  transition: filter 0.5s ease;
}
.acc-footer:hover .vertical-brand-text {
  filter: brightness(1.4);
}
.footer-main-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}
.footer-grid { flex: 1; }
.footer-bottom { margin-top: auto; }

/* ── FOOTER BOUTIQUE Thème clair inversé ──────────────── */
.acc-footer--boutique {
  background: #F5F3EF;
  color: #1a1a1a;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.acc-footer--boutique .footer-vertical-sidebar {
  border-right-color: rgba(0,0,0,0.07);
}
.acc-footer--boutique .vertical-brand-text {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.12) 40%,
    rgba(0,0,0,0.03) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.acc-footer--boutique:hover .vertical-brand-text {
  filter: brightness(0.75);
}
.acc-footer--boutique .footer-logo-text { color: #0f0f0f; }
.acc-footer--boutique .footer-tagline { color: rgba(0,0,0,0.35); }
.acc-footer--boutique .footer-divider { background: rgba(0,0,0,0.07); }
.acc-footer--boutique .footer-col-title { color: #999999; }
.acc-footer--boutique .footer-links a,
.acc-footer--boutique .footer-links address {
  color: rgba(0,0,0,0.45);
}
.acc-footer--boutique .footer-links a:hover { color: rgba(0,0,0,0.85); }
.acc-footer--boutique .footer-socials a {
  border-color: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.45);
}
.acc-footer--boutique .footer-socials a:hover {
  border-color: #999999;
  color: #999999;
  background: rgba(138,106,48,0.06);
}
.acc-footer--boutique .footer-bottom {
  border-top-color: rgba(0,0,0,0.07);
}
.acc-footer--boutique .footer-legal { color: rgba(0,0,0,0.3); }
.acc-footer--boutique .footer-legal a { color: rgba(0,0,0,0.35); }
.acc-footer--boutique .footer-legal a:hover { color: rgba(0,0,0,0.7); }

/* Payment strip — fond clair boutique : icônes sombres */
.acc-footer--boutique .footer-payment-strip {
  border-top-color: rgba(0,0,0,0.07);
}
.acc-footer--boutique .footer-payment-label {
  color: rgba(0,0,0,0.35);
}
.acc-footer--boutique .footer-payment-icons i {
  color: rgba(0,0,0,0.35);
}
.acc-footer--boutique .footer-payment-icons i:hover {
  color: rgba(0,0,0,0.7);
}
.acc-footer--boutique .footer-stripe-icon {
  color: rgba(99,91,255,0.55) !important;
}
.acc-footer--boutique .footer-stripe-icon:hover {
  color: #635bff !important;
}

.acc-mobile-socials {
  display: flex; gap: 16px; padding: 12px; margin-top: 8px;
}
.acc-mobile-socials a {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; border-radius: 4px;
  color: #fff; font-size: 1.2rem; background: rgba(255,255,255,0.03);
}
body.page-boutique .acc-mobile-socials a {
  color: #000; border-color: rgba(0,0,0,0.1); background: rgba(0,0,0,0.03);
}

/* ═══════════════════════════════════════════════════════════
   AVIS CLIENTS Dark
   ═══════════════════════════════════════════════════════════ */
.acc-avis-section {
  background: #060606;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.acc-avis-inner { max-width: 1300px; margin: 0 auto; }
.acc-avis-header { margin-bottom: 60px; }
.acc-avis-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #FFFFFF; margin-bottom: 14px;
}
.acc-avis-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; color: #fff;
  text-transform: uppercase; line-height: 0.9;
}
.acc-avis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acc-avis-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 32px 28px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.acc-avis-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}
.acc-avis-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.8;
  font-style: italic; margin-top: 16px; font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.acc-avis-author {
  display: flex; align-items: center; gap: 12px;
}
.acc-avis-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #FFFFFF; color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.acc-avis-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.acc-avis-date { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   VIDÉO PRÉSENTATION Dark
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   ATELIER DE PRÈS Section redesignée
   ═══════════════════════════════════════════════════════════ */
.acc-atelier-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
  padding: 100px 0;
}
.acc-atelier-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556905055-8f358a7a47b2?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(40%) brightness(0.3);
  transform: scale(1.04);
}
.acc-atelier-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.70) 50%,
    rgba(0,0,0,0.40) 100%
  );
}
.acc-atelier-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1300px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.acc-atelier-eyebrow {
  display: block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: #C9A96E; margin-bottom: 18px;
}
.acc-atelier-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400; color: #fff;
  text-transform: uppercase; line-height: 0.88;
  margin-bottom: 24px;
}
.acc-atelier-sub {
  font-size: 0.92rem; color: rgba(255,255,255,0.45);
  line-height: 1.85; font-weight: 300;
  max-width: 420px; margin-bottom: 40px;
}
.acc-atelier-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(201,169,110,0.5);
  color: #C9A96E;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.acc-atelier-cta:hover {
  background: rgba(201,169,110,0.1);
  border-color: #C9A96E;
  color: #fff;
}

/* Stats grid droite */
.acc-atelier-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.acc-atelier-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.acc-atelier-stat {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid #C9A96E;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}
.acc-atelier-stat-num {
  font-family: var(--font-display);
  font-size: 3rem; color: #fff; line-height: 1;
}
.acc-atelier-stat-sep {
  display: block; width: 24px; height: 1px;
  background: rgba(201,169,110,0.4);
}
.acc-atelier-stat-label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════
   ADRESSE Dark
   ═══════════════════════════════════════════════════════════ */
.acc-adresse-section {
  background: #050505;
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.acc-adresse-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.acc-adresse-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #FFFFFF; margin-bottom: 14px;
}
.acc-adresse-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: #fff;
  text-transform: uppercase; line-height: 0.9; margin-bottom: 40px;
}
.acc-adresse-detail { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.acc-adresse-row {
  display: flex; align-items: flex-start; gap: 18px;
}
.acc-adresse-row i {
  width: 20px; text-align: center; color: #FFFFFF;
  font-size: 1rem; margin-top: 3px; flex-shrink: 0;
}
.acc-adresse-row > div { display: flex; flex-direction: column; gap: 5px; }
.acc-adresse-row strong {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.acc-adresse-row span,
.acc-adresse-row a {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s ease;
}
.acc-adresse-row a:hover { color: #FFFFFF; }
.acc-adresse-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent;
  border: 1px solid rgba(201,169,110,0.4); color: #FFFFFF;
  border-radius: 2px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s ease;
}
.acc-adresse-cta:hover {
  background: #FFFFFF; color: #000;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
.acc-adresse-cta--google:hover {
  background: rgba(255,255,255,0.15); color: #FFFFFF;
  border-color: rgba(255,255,255,0.35);
}
.acc-adresse-map {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  height: 420px; border: 1px solid rgba(255,255,255,0.08);
}
.acc-adresse-map iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ═══════════════════════════════════════════════════════════
   GOOGLE MAPS Filtre B&W + unlock au clic
   ═══════════════════════════════════════════════════════════ */
.acc-adresse-map,
.b-adresse-map {
  position: relative;
  cursor: pointer;
}

/* Filtre B&W atelier (dark) */
.acc-adresse-map iframe {
  filter: grayscale(100%) brightness(0.6) contrast(1.08);
  transition: filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
/* Filtre B&W boutique (light) */
.b-adresse-map iframe {
  filter: grayscale(100%) brightness(0.75) contrast(1.05);
  transition: filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Hint overlay "Cliquer pour interagir" */
.map-hint {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.map-hint-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
/* Boutique hint fond clair */
.b-adresse-map .map-hint-label {
  color: rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
}

/* État déverrouillé filtre retiré, hint masqué, iframe interactive */
.acc-adresse-map.map-unlocked iframe,
.b-adresse-map.map-unlocked iframe {
  filter: none;
  pointer-events: auto;
}
.acc-adresse-map.map-unlocked .map-hint,
.b-adresse-map.map-unlocked .map-hint {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   AVIS CLIENTS Boutique (thème light)
   ═══════════════════════════════════════════════════════════ */
.b-avis-section {
  background: #FAFAF8;
  padding: 100px 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.b-avis-inner { max-width: 1300px; margin: 0 auto; }
.b-avis-header { margin-bottom: 60px; }
.b-avis-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #999999; margin-bottom: 14px;
}
.b-avis-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; color: #0f0f0f;
  text-transform: uppercase; line-height: 0.9;
}
.b-avis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.b-avis-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px; padding: 32px 28px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.b-avis-card:hover {
  border-color: rgba(138,106,48,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.b-avis-stars { color: #999999; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 16px; }
.b-avis-text {
  font-size: 0.9rem; color: rgba(0,0,0,0.5); line-height: 1.8;
  font-style: italic; margin-bottom: 24px; font-weight: 300;
}
.b-avis-author { display: flex; align-items: center; gap: 12px; }
.b-avis-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #0f0f0f; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.b-avis-name { font-size: 0.82rem; font-weight: 700; color: #0f0f0f; }
.b-avis-date { font-size: 0.72rem; color: rgba(0,0,0,0.35); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   VIDÉO PRÉSENTATION Boutique (thème light)
   ═══════════════════════════════════════════════════════════ */
.b-video-section {
  background: #F0EDE8;
  padding: 100px 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.b-video-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center;
}
.b-video-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #999999; margin-bottom: 14px;
}
.b-video-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; color: #0f0f0f;
  text-transform: uppercase; line-height: 0.92; margin-bottom: 20px;
}
.b-video-sub {
  font-size: 0.9rem; color: rgba(0,0,0,0.45); line-height: 1.8;
  font-weight: 300; margin-bottom: 36px;
}
.b-video-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.b-video-stat { display: flex; flex-direction: column; gap: 4px; }
.b-video-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400; color: #0f0f0f; line-height: 1;
}
.b-video-stat-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(0,0,0,0.4); font-weight: 600;
}
.b-video-frame { width: 100%; }
.b-video-container {
  position: relative; width: 100%; padding-top: 56.25%;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 2px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}
.b-video-container iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL Animation entrée au scroll
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   TIKTOK Section vidéos flottantes
   ═══════════════════════════════════════════════════════════ */

.acc-social-section {
  padding: 120px 0;
  background: #000;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.acc-social-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.acc-social-video-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 570px;
  background: #000;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-social-video-wrap iframe {
  width: 100% !important;
  height: 570px !important;
  border: none !important;
  background-color: #000 !important;
  /* Aggressive masking of TikTok UI if it overflows */
  transform: scale(1.02); 
}

.acc-social-video-wrap blockquote.tiktok-embed {
  margin: 0 !important;
  background: #000 !important;
}
.acc-social-video-card {
  width: 100%;
  aspect-ratio: 9/16;
  background: #111;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.acc-social-video-card iframe { width: 100%; height: 100%; border: none; }

.acc-social-content { display: flex; flex-direction: column; gap: 48px; }
.acc-social-header { display: flex; flex-direction: column; gap: 16px; }
.acc-social-eyebrow { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.35em; text-transform: uppercase; color: #C9A96E; }
.acc-social-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; color: #fff; letter-spacing: -0.02em; }

.acc-social-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.acc-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
}
.acc-stat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-5px);
}
.acc-stat-card i { font-size: 1.5rem; margin-bottom: 8px; }
.acc-stat-card.insta i { color: #E1306C; }
.acc-stat-card.tiktok i { color: #fff; }
.acc-stat-card.snap i { color: #FFFC00; }
.acc-stat-value { font-family: var(--font-display); font-size: 2.2rem; color: #fff; line-height: 1; }
.acc-stat-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.acc-stat-sub { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; margin-top: 4px; }




/* ═══════════════════════════════════════════════════════════
   RESPONSIVE GLOBAL Accueil + Nouvelles sections
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .acc-atelier-inner { gap: 48px; padding: 0 40px; }
  .acc-adresse-inner { gap: 48px; }
}

@media (max-width: 900px) {
  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .acc-footer { padding: 48px 28px 48px; gap: 32px; }
  .footer-vertical-sidebar { padding-right: 24px; }
  .vertical-brand-text { font-size: 3.5rem; }

  /* Social Impact Refonte Mobile */
  .acc-social-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 0 24px;
  }
  .acc-social-video-wrap {
    margin: 0 auto;
    max-width: 325px;
    height: 570px;
  }
  .acc-social-video-wrap iframe {
    height: 570px !important;
    transform: scale(1) !important;
  }
  .acc-social-content {
    gap: 32px;
  }
  .acc-social-header {
    align-items: center;
  }
  .acc-social-title {
    font-size: 2.2rem;
  }
  .acc-social-stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .acc-stat-card {
    padding: 24px;
    align-items: center;
  }

  /* Nouvelles sections atelier */
  .acc-avis-section, .acc-atelier-section, .acc-adresse-section { padding: 72px 0; }
  /* Nouvelles sections boutique */
  .b-avis-section, .b-video-section { padding: 72px 28px; }
  .b-avis-grid { grid-template-columns: 1fr; gap: 14px; }
  .b-video-inner { grid-template-columns: 1fr; gap: 36px; }
  .acc-avis-grid { grid-template-columns: 1fr; gap: 16px; }
  .acc-atelier-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 28px; }
  .acc-atelier-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .acc-adresse-inner { grid-template-columns: 1fr; gap: 36px; }
  .acc-adresse-map { height: 300px; }

  /* TikTok */
  .acc-tiktok-section { padding: 72px 0 60px; }
  .acc-tiktok-header { padding: 0 28px; margin-bottom: 44px; }
  .acc-tiktok-scroll { padding: 0 28px 40px; }
  .acc-tiktok-cta { padding: 0 28px; margin-top: 28px; }
  .acc-tiktok-track { gap: 16px; }
  .acc-tiktok-card-inner { width: 260px; }
  .acc-tiktok-card-inner iframe { width: 100%; height: 460px; }

  /* Process */
  .acc-process-inner { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero-side-info { display: none; }
  .acc-slide-content { padding: 0 32px; }
}

@media (max-width: 768px) {
  .footer-vertical-sidebar { display: none; }
  .acc-footer { padding: 48px 20px 40px; }
  .acc-avis-section, .acc-atelier-section, .acc-adresse-section { padding: 60px 0; }
  .acc-atelier-inner { padding: 0 20px; }
  .b-avis-section, .b-video-section { padding: 60px 20px; }
  .acc-avis-grid { gap: 14px; }
  .acc-atelier-stat-num { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-footer-inner { padding: 40px 20px 0; }

  /* TikTok masqué sur mobile */
  

  /* Hero */
  .acc-hero { min-height: 100svh; }
  .acc-slide-content { padding: 0 20px; }
  .acc-slide-title { font-size: 3.2rem; }
  .acc-slide-sub { font-size: 0.88rem; }
  .hero-bottom-bar { left: 20px; right: 20px; }
  .hero-progress-bar { left: 20px; right: 20px; }
  .btn-hero-primary, .btn-hero-outline { padding: 14px 22px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .acc-avis-section, .acc-video-section, .acc-adresse-section { padding: 48px 16px; }
  .b-avis-section, .b-video-section { padding: 48px 16px; }
  .b-avis-grid { grid-template-columns: 1fr; }
  .acc-avis-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .acc-footer-inner { padding: 36px 16px 0; }
  .acc-footer { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
  .footer-logo-text { font-size: 2.5rem; }
  .acc-slide-title { font-size: 2.5rem; }
  .acc-slide-actions { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-nav-arrows { display: none; }
  .acc-process-inner { grid-template-columns: 1fr; }
  .acc-cat-grid { grid-template-columns: 1fr; }
  .acc-adresse-map { height: 240px; }
  .acc-video-stats { gap: 16px; }
}

@media (max-width: 360px) {
  .footer-grid { grid-template-columns: 1fr; }
  .acc-slide-title { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════════════
   TOUCH DEVICES Feedback couleur au tap (remplace :hover)
   ═══════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {

  /* Cartes catégories état or visible au tap */
  .acc-cat-card {
    border-color: rgba(201,169,110,0.3);
  }
  .acc-cat-card:active {
    background: rgba(255,255,255,0.03);
    border-color: rgba(201,169,110,0.6);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .acc-cat-card:active .acc-cat-icon {
    border-color: #FFFFFF;
    color: #FFFFFF;
  }

  /* Boutons hero */
  .btn-hero-primary:active {
    background: #ddd;
    transform: scale(0.97);
  }
  .btn-hero-outline:active {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    transform: scale(0.97);
  }

  /* Boutons navbar */
  .acc-cart-btn:active,
  .acc-signin-btn:active,
  .acc-hamburger:active,
  .acc-user-btn:active {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #FFFFFF;
  }
  .acc-mode-switcher-btn:active {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #FFFFFF;
  }

  /* Bouton "Prendre RDV" / CTA */
  .premium-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  }

  /* Liens footer */
  .footer-links a:active {
    color: #FFFFFF;
  }

  /* Tabs de prestation */
  .acc-tab:active {
    background: rgba(255,255,255,0.08);
  }

  /* Boutique mode switcher thème clair */
  body.page-boutique .acc-cart-btn:active,
  body.page-boutique .acc-signin-btn:active,
  body.page-boutique .acc-hamburger:active,
  body.page-boutique .acc-user-btn:active {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.2);
    color: #999999;
  }
}

.btn-clean-delete:hover { color: var(--red) !important; }

/* ── Catégorie cards avec image de fond ── */
.acc-cat-card--img {
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.acc-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.8));
  z-index: 0;
  transition: opacity 0.35s ease;
}
.acc-cat-card--img:hover .acc-cat-card-overlay {
  opacity: .5;
}
.acc-cat-card--img > *:not(.acc-cat-card-overlay) {
  position: relative;
  z-index: 1;
}

/* ── Nouveaux styles Panier / User Items ── */
.user-item-card-new {
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.user-item-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.user-item-main {
  padding-left: 0;
  flex: 1;
}
.user-item-main-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}
.user-item-top {
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.user-item-cat {
  font-size: 0.82rem;
  font-weight: 700;
}
.badge-restauration-new {
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.6rem;
  padding: 2px 6px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.badge-vente-new {
  background: var(--gray-100);
  color: #666;
  border-radius: 4px;
  font-size: 0.6rem;
  padding: 2px 6px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.user-item-sub-new {
  opacity: 0.5;
  font-size: 0.75rem;
}
.user-item-desc-new {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}
.user-item-desc-bold {
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.user-item-notes-new {
  margin-top: 8px;
  background: var(--gray-50);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-style: italic;
}
.user-item-images {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.user-item-images img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
}
.user-item-image-main {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.user-item-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-item-unit-price {
  font-weight: 800;
  font-size: 0.9rem;
}
.user-item-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.user-item-total-price {
  font-weight: 800;
  color: var(--black);
  background: var(--gray-50);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-left: auto;
}
.btn-clean-delete {
  background: var(--gray-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}
.btn-clean-delete:hover {
  background: #fee2e2;
  color: #111111;
}

@media (max-width: 480px) {
  .user-item-main-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* ── Workshop Categories Refactor ── */
.b-univers-section { padding: 100px 0; background: var(--white); overflow: hidden; }
.b-univers-inner { max-width: 100%; margin: 0 auto; padding: 0 50px; }

.b-univers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  width: 100%;
}
@media (max-width: 1200px) {
  .b-univers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .b-univers-grid { grid-template-columns: repeat(2, 1fr); }
}

.b-univers-card {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.b-univers-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
  opacity: 0.9;
}

.b-univers-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.b-univers-card:hover .b-univers-img {
  transform: scale(1.15);
  opacity: 1;
}

.b-univers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.b-univers-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  z-index: 2;
  color: #fff;
}

.b-univers-icon {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FFFFFF;
  display: block;
  transition: transform 0.4s ease;
}

.b-univers-card:hover .b-univers-icon {
  transform: scale(1.2) rotate(10deg);
}

.b-univers-label {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1;
}

.b-univers-action {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-weight: 700;
}

.b-univers-card:hover .b-univers-action {
  opacity: 1;
  transform: translateY(0);
}

.b-univers-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 1s ease;
  z-index: 3;
}
.b-univers-card:hover::after {
  transform: translateX(100%);
}

.b-univers-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .acc-nav-links { display: none !important; }
  .acc-mode-switcher-btn span { display: none; }
  .acc-nav-inner { padding: 0 12px; height: 54px; margin-top: 10px; width: calc(100% - 24px); }
  .acc-nav-universe { display: none; }
  .acc-nav-logo { font-size: 1rem; gap: 0; letter-spacing: 0.06em; }
  .acc-hamburger { display: flex; }
  .acc-nav-actions { gap: 4px; }
  .acc-cart-btn, .acc-signin-btn, .acc-mode-switcher-btn { width: 38px; padding: 0; }

  /* ── Page Atelier : "Restauration" visible à gauche sur mobile ── */
  /* Redirection boutique : on le garde visible à côté du panier */
  body.page-accueil .acc-mode-switcher-btn { display: flex !important; }
  /* User zone : on le garde visible comme sur boutique */
  body.page-accueil .acc-user-zone { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════
   ATELIER DARK THEME HARD OVERRIDES
   Verrouille les couleurs pour éviter les régressions "texte noir"
   ═══════════════════════════════════════════════════════════ */
body.page-accueil .acc-slide-tag {
  color: rgba(201,169,110,0.9);
  border-color: rgba(201,169,110,0.45);
  background: rgba(0,0,0,0.35);
}
body.page-accueil .acc-slide-tag .tag-dot {
  background: #C9A96E;
  box-shadow: 0 0 10px rgba(201,169,110,0.55);
}
body.page-accueil .acc-slide-title {
  color: #C9A96E;
}
body.page-accueil .title-accent {
  color: #FFFFFF;
}
body.page-accueil .acc-slide-sub {
  color: rgba(255,255,255,0.72);
}
body.page-accueil .btn-hero-primary {
  background: #C9A96E;
  color: #000;
}
body.page-accueil .btn-hero-primary:hover {
  background: #e1c48c;
}
body.page-accueil .btn-hero-outline {
  color: #C9A96E;
  border-color: rgba(201,169,110,0.75);
}
body.page-accueil .hero-progress-fill {
  background: linear-gradient(90deg, #C9A96E, #f0d7aa);
}
body.page-accueil .hero-counter-current {
  color: #C9A96E;
}
body.page-accueil .hero-stat-num {
  color: #C9A96E;
  text-shadow: 0 8px 26px rgba(201,169,110,0.28);
}
body.page-accueil .hero-stat-label {
  color: rgba(201,169,110,0.82);
}
body.page-accueil .hero-stat-box {
  border-right-color: rgba(201,169,110,0.88);
  background: rgba(0,0,0,0.22);
}
body.page-accueil .acc-slide-prev,
body.page-accueil .acc-slide-next {
  width: 28px;
  height: 28px;
  background: transparent;
  border-color: transparent;
  color: rgba(201,169,110,0.9);
  box-shadow: none;
}
body.page-accueil .acc-slide-prev:hover,
body.page-accueil .acc-slide-next:hover {
  background: transparent;
  color: #f4d8a3;
  border-color: transparent;
}
body.page-accueil .hero-nav-arrows {
  opacity: 0.72;
}
body.page-accueil .acc-slide-prev i,
body.page-accueil .acc-slide-next i {
  font-size: 0.95rem;
}
/* ══════════════════════════════════════════════════════════════
   DROPDOWN SIMPLE CATÉGORIES Atelier
   ══════════════════════════════════════════════════════════════ */

body.page-accueil .acc-simple-cat-drop {
  width: 220px;
  left: 0;
  transform: translateY(-8px);
  background: #111;
  border: 1px solid rgba(201,169,110,0.2);
  border-top: 2px solid #C9A96E;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  overflow: hidden;
  padding: 6px 0;
}
body.page-accueil .acc-simple-cat-drop.open {
  transform: translateY(0);
}
body.page-accueil .acc-simple-cat-drop::before { display: none; }

.acc-simple-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.acc-scat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s, color 0.15s;
}
.acc-scat-btn:hover {
  background: rgba(201,169,110,0.1);
  color: #C9A96E;
}
.acc-scat-empty {
  padding: 12px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ── Sidebar catégories ──────────────────────────────────── */
body.page-accueil .acc-hz-cats {
  width: 210px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.05);
  overflow-y: auto;
  gap: 2px;
  scrollbar-width: none;
  background: rgba(0,0,0,0.25);
}
body.page-accueil .acc-hz-cats::after {
  content: '';
  position: absolute;
  top: 20%; left: 210px;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom,
    transparent, rgba(201,169,110,0.25) 30%,
    rgba(201,169,110,0.25) 70%, transparent);
}
body.page-accueil .acc-hz-cats::-webkit-scrollbar { display: none; }

/* Bouton catégorie */
body.page-accueil .acc-hz-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  color: rgba(255,245,225,0.42);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  font-family: "Poppins", sans-serif;
  position: relative;
}
body.page-accueil .acc-hz-cat-btn i {
  width: 16px;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: rgba(201,169,110,0.3);
  transition: color 0.18s, transform 0.2s;
}
body.page-accueil .acc-hz-cat-btn:hover {
  color: rgba(255,245,225,0.72);
  background: rgba(201,169,110,0.06);
  border-left-color: rgba(201,169,110,0.35);
}
body.page-accueil .acc-hz-cat-btn:hover i {
  color: rgba(201,169,110,0.7);
  transform: translateX(2px);
}
body.page-accueil .acc-hz-cat-btn.active {
  color: #e8d5a0;
  background: rgba(201,169,110,0.1);
  border-left-color: #C9A96E;
}
body.page-accueil .acc-hz-cat-btn.active i {
  color: #C9A96E;
}

/* ── Panneau droit ───────────────────────────────────────── */
body.page-accueil .acc-hz-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.page-accueil .acc-hz-pane {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: hzFadeIn 0.2s ease;
}
body.page-accueil .acc-hz-pane.active { display: flex; }

@keyframes hzFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Zone visuelle image/gradient de la catégorie */
body.page-accueil .acc-hz-visual {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
/* Overlay sombre sur le gradient */
body.page-accueil .acc-hz-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 0;
}
/* Grande icône décorative en fond */
body.page-accueil .acc-hz-visual::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 180px; height: 180px;
  opacity: 0.04;
  background: radial-gradient(circle, #C9A96E 0%, transparent 70%);
}
body.page-accueil .acc-hz-visual i {
  font-size: 2rem;
  color: rgba(201,169,110,0.85);
  margin-bottom: 10px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 2px 12px rgba(201,169,110,0.3));
}
body.page-accueil .acc-hz-visual span {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(255,248,235,0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  position: relative; z-index: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* ── Sous-catégories liste élégante ────────────────────── */
body.page-accueil .acc-hz-subs {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: rgba(0,0,0,0.55);
  border-top: 1px solid rgba(201,169,110,0.1);
  backdrop-filter: blur(12px);
}
body.page-accueil .acc-hz-sub {
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255,240,210,0.5);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.15s;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
body.page-accueil .acc-hz-sub::before {
  content: '';
  font-size: 0.6rem;
  color: rgba(201,169,110,0.3);
  transition: color 0.15s;
}
body.page-accueil .acc-hz-sub:hover {
  color: #e8d5a0;
}
body.page-accueil .acc-hz-sub:hover::before {
  color: #C9A96E;
}
body.page-accueil .acc-hz-sub.all {
  color: #C9A96E;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
body.page-accueil .acc-hz-sub.all::before {
  content: '✦';
  font-size: 0.5rem;
  color: #C9A96E;
}
body.page-accueil .acc-hz-sub.all:hover { color: #f0e0b0; }
body.page-accueil .acc-hz-sub i { display: none; }

@media (max-width: 900px) {
  body.page-accueil #acc-nav-mega-grid.acc-hz-mega { display: none; }
}

/* Héritage legacy labels */
body.page-accueil .acc-mega-cat-label { color: rgba(248,241,228,0.96); }
body.page-accueil .acc-mega-sub-item  { color: rgba(238,230,214,0.72); }
body.page-accueil .acc-mega-sub-item:hover { color: #e6c68b; }
body.page-accueil .acc-mega-sub-item.all  { color: #d7b878; }
body.page-accueil .acc-mega-sub-item.more { color: rgba(248,241,228,0.48); }
body.page-accueil .acc-process-text strong {
  color: #C9A96E;
}
body.page-accueil .acc-process-count {
  color: #FFFFFF;
}
body.page-accueil .acc-process-text span,
body.page-accueil .acc-section-sub,
body.page-accueil .acc-section-stat {
  color: rgba(255,255,255,0.62);
}
body.page-accueil .acc-section-stat strong {
  color: #C9A96E;
}
body.page-accueil .acc-cat-name {
  color: #F7F0E2;
}
body.page-accueil .acc-prestations .acc-section-header {
  border-left: none;
  padding: 20px 22px;
  border: 1px solid rgba(201,169,110,0.22);
  background: linear-gradient(180deg, rgba(201,169,110,0.06), rgba(201,169,110,0.015));
  border-radius: 8px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}
body.page-accueil .acc-prestations .acc-section-cta-strip {
  align-self: stretch;
  justify-content: space-between;
  margin-top: 12px;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.14);
  border-radius: 8px;
  padding: 12px 16px;
}
body.page-accueil .acc-prestations .acc-section-title {
  color: #C9A96E;
  letter-spacing: 0.01em;
}
body.page-accueil .acc-prestations .acc-section-sub {
  color: rgba(255,255,255,0.74);
  max-width: 620px;
}
body.page-accueil .acc-prestations .acc-section-stats {
  gap: 10px;
}
body.page-accueil .acc-prestations .acc-section-stat {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.66);
}
body.page-accueil .acc-prestations .acc-section-stat strong {
  color: #C9A96E;
  font-weight: 700;
}

/* ══ Cart Actions Group Dual Validation Buttons ════════════ */
.cart-actions-group {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.cart-actions-group.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.cart-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-action-btn.btn-atelier {
  background: #C9A96E;
  color: #000;
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.cart-action-btn.btn-boutique {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,0.1);
}

.cart-action-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.cart-action-btn:active {
  transform: scale(0.96);
}

.cart-action-btn i { font-size: 0.9rem; }

.cart-action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}
.cart-action-btn:disabled:hover { transform: none; }

@media (max-width: 768px) {
  .cart-actions-group {
    bottom: calc(72px + env(safe-area-inset-bottom));
    right: 16px;
    left: 16px;
    flex-direction: row;
  }
  .cart-action-btn {
    flex: 1;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.78rem;
    gap: 8px;
  }
  .cart-action-btn span {
    white-space: nowrap;
  }
}

/* ══ MODAL DÉTAIL PRESTATION ════════════════════════════════ */
.acc-presta-modal-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: min(680px, 94vw);
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 36px 36px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,110,0.3) transparent;
}
.acc-presta-modal-card::-webkit-scrollbar { width: 4px; }
.acc-presta-modal-card::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 4px; }

.acc-presta-modal-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.acc-presta-modal-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  font-size: 1.4rem; color: #C9A96E;
  flex-shrink: 0;
}
.acc-presta-modal-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #fff; line-height: 1;
  letter-spacing: 0.04em;
  margin: 0;
}
.acc-presta-modal-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 4px;
}
.acc-presta-modal-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0.3) 0%, transparent 100%);
  margin-bottom: 24px;
}
.acc-presta-modal-section-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #C9A96E;
  margin-bottom: 14px;
}
.acc-presta-modal-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.acc-presta-modal-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.acc-presta-modal-list li:hover { border-color: rgba(201,169,110,0.2); }
.acc-presta-modal-list-name {
  font-size: 0.82rem; color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 10px;
}
.acc-presta-modal-list-name::before {
  content: '';
  width: 5px; height: 5px;
  background: #C9A96E; border-radius: 50%;
  flex-shrink: 0;
}
.acc-presta-modal-list-price {
  font-size: 0.75rem; font-weight: 700;
  color: #C9A96E; letter-spacing: 0.03em;
  white-space: nowrap;
}
.acc-presta-modal-empty {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  text-align: center; padding: 24px 0;
}
.acc-presta-modal-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.acc-presta-modal-cta {
  flex: 1; min-width: 160px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  background: #C9A96E; color: #000;
  border: none; border-radius: 8px;
  font-family: "Poppins", sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.acc-presta-modal-cta:hover { background: #e0bd82; transform: translateY(-2px); }
.acc-presta-modal-cta-outline {
  flex: 1; min-width: 120px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  font-family: "Poppins", sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.acc-presta-modal-cta-outline:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
@media (max-width: 480px) {
  .acc-presta-modal-card { padding: 28px 20px 24px; }
  .acc-presta-modal-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   TIKTOK Premium Sequential Loading & UI
   ═══════════════════════════════════════════════════════════ */
.acc-tiktok-section {
  padding: 120px 0 80px;
  background: #000;
  color: #fff;
}
.acc-tiktok-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.acc-tiktok-header {
  display: block;
  padding: 0 64px;
  margin-bottom: 56px;
}
.acc-tiktok-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 12px;
}
.acc-tiktok-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.acc-tiktok-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 60px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.acc-tiktok-scroll::-webkit-scrollbar { height: 4px; }
.acc-tiktok-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.acc-tiktok-scroll::-webkit-scrollbar-thumb { background: #C9A96E; border-radius: 4px; }

.acc-tiktok-track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  width: max-content;
  margin: 0 auto; /* Tentative de centrage si peu d'items */
}
.acc-tiktok-card {
  width: 320px;
  height: 720px;
  background: #000;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.acc-tiktok-card-inner {
  width: 100%;
  height: 100%;
}
.acc-tiktok-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  transform: scale(1.02); /* Mask TikTok edges */
}

/* ── Stepper: Expedition Mode ── */
.dv-expedition-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.dv-expedition-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  width: 100%;
}
.dv-expedition-card:hover {
  border-color: var(--black);
  background: var(--gray-50);
  transform: translateX(4px);
}
.dv-expedition-card.selected {
  border-color: var(--black);
  background: var(--gray-50);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.dv-expedition-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.dv-expedition-card.selected .dv-expedition-card-icon {
  background: var(--black);
  color: #fff;
}
.dv-expedition-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dv-expedition-card-body strong {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}
.dv-expedition-card-body span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.dv-expedition-check {
  font-size: 1rem;
  color: var(--black);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dv-expedition-card.selected .dv-expedition-check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .acc-tiktok-card { width: 280px; height: 640px; }
  .acc-tiktok-track { padding: 0 20px; }
  .dv-expedition-card { padding: 16px; gap: 16px; }
  .dv-expedition-card-icon { width: 40px; height: 40px; font-size: 1rem; }
}

/* Overrides for Cart Type Column */
.acc-cart-item { display: flex !important; align-items: center !important; gap: 14px !important; }
.acc-cart-type-col { width: 60px; flex-shrink: 0; display: flex; align-items: center; }
.acc-cart-type-tag { font-size: 0.52rem !important; font-weight: 800 !important; text-transform: uppercase !important; padding: 3px 5px !important; border-radius: 4px !important; background: #f0f0f0 !important; color: #666 !important; letter-spacing: 0.05em !important; border: 1px solid rgba(0,0,0,0.05) !important; display: inline-block !important; line-height: 1 !important; }
.acc-cart-item--atelier .acc-cart-type-tag { background: rgba(201,169,110,0.1) !important; color: #C9A96E !important; border-color: rgba(201,169,110,0.2) !important; }
.acc-cart-item-name { font-size: 0.92rem !important; font-weight: 700 !important; color: #000 !important; margin-bottom: 2px !important; }


/* Tableur Cart Layout Overrides */
.acc-cart-table-header { display: flex !important; align-items: center !important; gap: 14px !important; padding: 8px 0 !important; border-bottom: 2px solid rgba(0,0,0,0.06) !important; margin-bottom: 8px !important; }
.acc-cart-table-header span { font-size: 0.65rem !important; font-weight: 800 !important; color: rgba(0,0,0,0.3) !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
.acc-cart-table-header .col-type { width: 60px !important; flex-shrink: 0 !important; }
.acc-cart-table-header .col-img { width: 40px !important; flex-shrink: 0 !important; }
.acc-cart-table-header .col-info { flex: 1 !important; }
.acc-cart-table-header .col-price { width: 80px !important; text-align: right !important; flex-shrink: 0 !important; }
.acc-cart-img-col { width: 40px !important; height: 40px !important; flex-shrink: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.acc-cart-item-img { width: 40px !important; height: 40px !important; object-fit: cover !important; border-radius: 4px !important; }
.acc-cart-placeholder-icon { width: 40px !important; height: 40px !important; background: rgba(0,0,0,0.03) !important; border-radius: 4px !important; display: flex !important; align-items: center !important; justify-content: center !important; color: rgba(0,0,0,0.2) !important; font-size: 1rem !important; }
.acc-cart-item-actions { width: 80px !important; flex-shrink: 0 !important; display: flex !important; flex-direction: column !important; align-items: flex-end !important; gap: 4px !important; }
.acc-cart-item-price { text-align: right !important; width: 100% !important; }


/* TikTok Tweaks */
.acc-tiktok-track { gap: 40px !important; }
.acc-tiktok-card-inner:hover { transform: none !important; box-shadow: 0 8px 40px rgba(0,0,0,0.65) !important; }


/* Sidebar Removal Overrides */





/* Hide TikTok Scrollbar */
.acc-tiktok-scroll::-webkit-scrollbar { display: none !important; }
.acc-tiktok-scroll { -ms-overflow-style: none !important; scrollbar-width: none !important; }


/* Aggressive TikTok Scrollbar Removal */
#tiktokScroll::-webkit-scrollbar, .acc-tiktok-scroll::-webkit-scrollbar, .acc-tiktok-track::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
#tiktokScroll, .acc-tiktok-scroll, .acc-tiktok-track { -ms-overflow-style: none !important; scrollbar-width: none !important; }


/* ════════════════════════════════════════════════════════════
   YËREDESIGN — MIDNIGHT REDESIGN  v2.5.61
   Tokens, hamburger, universe, process, bento, footer payment
   ════════════════════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────────────── */
body.page-accueil {
  --yd-bg:        #09090b;
  --yd-s1:        #111113;
  --yd-s2:        #18181b;
  --yd-s3:        #27272a;
  --yd-border:    rgba(255,255,255,0.07);
  --yd-border-md: rgba(255,255,255,0.12);
  --yd-gold:      #C9A96E;
  --yd-gold-dim:  rgba(201,169,110,0.55);
  --yd-gold-bg:   rgba(201,169,110,0.08);
  --yd-text:      #ffffff;
  --yd-text-2:    rgba(255,255,255,0.65);
  --yd-text-3:    rgba(255,255,255,0.35);
  --yd-r-sm:      12px;
  --yd-r-md:      20px;
  --yd-r-lg:      28px;
  --yd-r-xl:      36px;
  --yd-r-pill:    9999px;
}

/* ── Shared utilities ────────────────────────────────────── */
.yd-section-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px;
}
.yd-section-head {
  margin-bottom: 52px;
}
.yd-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yd-gold);
  margin-bottom: 14px;
}
.yd-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.0;
  color: var(--yd-text);
  margin: 0 0 0 0;
}
.yd-gold { color: var(--yd-gold); }
.yd-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yd-gold);
  color: #09090b;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--yd-r-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.yd-btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hamburger animated — mobile only ──────────────────── */
@media (max-width: 900px) {
  body.page-accueil .acc-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
}
.hb-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.175,0.885,0.32,1.275), opacity 0.18s ease;
  transform-origin: center;
}
body:has(#acc-mobile-menu:not(.hidden)) #acc-hamburger .hb-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body:has(#acc-mobile-menu:not(.hidden)) #acc-hamburger .hb-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body:has(#acc-mobile-menu:not(.hidden)) #acc-hamburger .hb-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile menu — slide animation ─────────────────────── */
body.page-accueil .acc-mobile-menu {
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}
body.page-accueil .acc-mobile-menu.hidden {
  display: flex !important;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  visibility: hidden;
}
body.page-accueil .acc-mobile-menu:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}

/* Mobile menu devis CTA row */
.acc-mob-cta-row {
  display: flex;
  gap: 10px;
  padding: 16px 16px 8px;
}
.acc-mob-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--yd-gold);
  color: #09090b;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: var(--yd-r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.acc-mob-cta-btn:hover { opacity: 0.85; }
.acc-mob-cta-btn--outline {
  background: transparent;
  border: 1px solid var(--yd-border-md);
  color: var(--yd-text-2);
}
.acc-mob-cta-btn--outline:hover { border-color: var(--yd-gold); color: var(--yd-gold); }

/* ── Universe selector ───────────────────────────────────── */
.yd-universe-section {
  background: var(--yd-s1);
  padding: 0;
  border-top: 1px solid var(--yd-border);
}
.yd-universe-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px;
}
.yd-universe-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yd-text-3);
  text-align: center;
  margin: 0 0 24px;
}
.yd-universe-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.yd-universe-card {
  position: relative;
  border-radius: var(--yd-r-xl);
  overflow: hidden;
  height: 340px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}
.yd-universe-card:hover { transform: translateY(-3px); }
.yd-universe-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.yd-img-atelier {
  background-image: url('https://images.unsplash.com/photo-1595950653106-6c9ebd614d3a?q=80&w=900');
}
.yd-img-boutique {
  background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?q=80&w=900');
}
.yd-universe-card:hover .yd-universe-img { transform: scale(1.04); }
.yd-universe-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  gap: 6px;
}
.yd-universe-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yd-gold);
  background: var(--yd-gold-bg);
  border: 1px solid var(--yd-gold-dim);
  padding: 4px 10px;
  border-radius: var(--yd-r-pill);
  width: fit-content;
  margin-bottom: 4px;
}
.yd-universe-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.yd-universe-title em { font-style: italic; color: var(--yd-gold); }
.yd-universe-desc {
  font-size: 0.8rem;
  color: var(--yd-text-2);
  margin: 0;
  line-height: 1.5;
}
.yd-universe-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--yd-r-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  width: fit-content;
  margin-top: 6px;
  transition: background 0.2s, color 0.2s;
}
.yd-universe-card:hover .yd-universe-pill { background: rgba(255,255,255,0.16); color: #fff; }
.yd-universe-pill--active {
  background: var(--yd-gold-bg);
  border-color: var(--yd-gold-dim);
  color: var(--yd-gold);
}
.yd-universe-active {
  outline: 2px solid var(--yd-gold);
  outline-offset: -2px;
}

@media (max-width: 640px) {
  .yd-universe-cards { grid-template-columns: 1fr; }
  .yd-universe-card  { height: 260px; }
}

/* ── Process redesign ────────────────────────────────────── */
.yd-process-new {
  background: var(--yd-bg);
}
.yd-process-new .yd-section-wrap {
  padding-bottom: 80px;
}
.yd-process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.yd-pstep {
  flex: 1;
  background: var(--yd-s2);
  border: 1px solid var(--yd-border);
  border-radius: var(--yd-r-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.yd-pstep:hover {
  border-color: var(--yd-gold-dim);
  transform: translateY(-3px);
}
.yd-pstep-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--yd-border-md);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.yd-pstep:hover .yd-pstep-num { color: var(--yd-gold-dim); }
.yd-pstep-icon {
  width: 40px;
  height: 40px;
  background: var(--yd-gold-bg);
  border: 1px solid var(--yd-gold-dim);
  border-radius: var(--yd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yd-gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.yd-pstep-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yd-text);
  margin: 0 0 6px;
}
.yd-pstep-body {
  font-size: 0.8rem;
  color: var(--yd-text-2);
  line-height: 1.55;
  margin: 0;
}
.yd-pstep-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--yd-border-md);
  font-size: 0.75rem;
  padding-top: 40px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .yd-process-row {
    flex-direction: column;
    gap: 10px;
  }
  .yd-pstep-arrow { display: none; }
  .yd-pstep { padding: 22px 20px; }
}

/* ── Prestations bento ───────────────────────────────────── */
.yd-presta-new {
  background: var(--yd-s1);
  border-top: 1px solid var(--yd-border);
}
.yd-presta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.yd-presta-sub {
  font-size: 0.88rem;
  color: var(--yd-text-2);
  margin: 10px 0 0;
}
.yd-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 240px 210px;
  gap: 10px;
}
.yd-bento-card {
  position: relative;
  border-radius: var(--yd-r-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--yd-s2);
  transition: transform 0.28s ease;
}
.yd-bento-card:focus-visible { outline: 2px solid var(--yd-gold); outline-offset: 2px; }
.yd-bento-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.yd-bento-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.yd-bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.yd-bento-wide              { grid-column: 1 / 3; grid-row: 3; }
.yd-bento-card:hover { transform: translateY(-3px); }
.yd-bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.yd-bento-card:hover img { transform: scale(1.05); }
.yd-bento-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.12) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}
.yd-bento-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yd-gold);
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--yd-gold-dim);
  padding: 4px 10px;
  border-radius: var(--yd-r-pill);
  width: fit-content;
  backdrop-filter: blur(6px);
}
.yd-bento-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.yd-bento-bottom h3 {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.yd-bento-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yd-gold);
  background: var(--yd-gold-bg);
  border: 1px solid var(--yd-gold-dim);
  padding: 4px 10px;
  border-radius: var(--yd-r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.yd-presta-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--yd-text-2);
  flex-wrap: wrap;
}
.yd-presta-stats strong { color: var(--yd-text); font-weight: 700; }
.yd-stat-sep { color: var(--yd-border-md); }

@media (max-width: 768px) {
  .yd-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px 200px;
  }
  .yd-bento-card:nth-child(1),
  .yd-bento-card:nth-child(2),
  .yd-bento-card:nth-child(3) { grid-column: 1; grid-row: auto; }
  .yd-bento-wide              { grid-column: 1; grid-row: auto; }
  .yd-presta-head             { flex-direction: column; align-items: flex-start; }
}

/* ── Footer payment strip ───────────────────────────────── */
.footer-payment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-payment-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-payment-icons i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.18s;
  line-height: 1;
}
.footer-payment-icons i:hover { color: rgba(255,255,255,0.7); }
.footer-stripe-icon { color: rgba(99,91,255,0.5) !important; }
.footer-stripe-icon:hover { color: #635bff !important; }
.footer-klarna-pill,
.footer-klarna-badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.18s;
}
.footer-klarna-pill:hover,
.footer-klarna-badge:hover { opacity: 1; }
.footer-klarna-badge svg { display: block; }

.footer-cb-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 3px 7px;
  transition: color 0.18s, border-color 0.18s;
}
.footer-cb-pill:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }

@media (max-width: 600px) {
  .footer-payment-strip {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
  }
  .footer-payment-label {
    justify-content: center;
    font-size: 0.65rem;
  }
  .footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .footer-payment-icons i {
    font-size: 1.65rem;
  }
  .footer-klarna-badge svg {
    width: 56px !important;
    height: 22px !important;
  }
}

/* Boutique page footer payment strip — inherit shared styles */
.page-boutique .footer-payment-strip,
.page-boutique .footer-payment-label,
.page-boutique .footer-payment-icons i,
.page-boutique .footer-klarna-pill {
  /* inherits from shared .footer-payment-* above */
}


/* ════════════════════════════════════════════════════════════
   HERO V2 + UNIVERSE BAR + PRESTA V2   v2.5.62
   ════════════════════════════════════════════════════════════ */

/* ── Hero slide content override ───────────────────────── */
body.page-accueil .acc-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 130px 72px;
  z-index: 2;
}
.yd-hero-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
}
.yd-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.yd-hero-eyebrow .tag-dot {
  position: relative;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yd-gold);
  flex-shrink: 0;
}
.yd-hero-eyebrow .tag-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--yd-gold);
  opacity: 0.5;
  animation: yd-pulse 2s infinite;
}
@keyframes yd-pulse {
  0%   { transform: scale(1);  opacity: 0.5; }
  100% { transform: scale(3.5); opacity: 0; }
}
.yd-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.92;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}
.yd-hero-em { font-style: normal; color: var(--yd-gold); }
.yd-hero-desc {
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}
.yd-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.yd-hero-cta-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yd-gold);
  color: #09090b;
  font-size: 0.82rem; font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--yd-r-pill);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.yd-hero-cta-solid:hover { opacity: 0.88; transform: translateY(-1px); }
.yd-hero-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem; font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--yd-r-pill);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}
.yd-hero-cta-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.32); }
.yd-hero-stats-row {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.yd-hs {
  display: flex; flex-direction: column; gap: 2px;
}
.yd-hs strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; line-height: 1;
  color: #fff; letter-spacing: 0.02em;
}
.yd-hs span {
  font-size: 0.62rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.yd-hs-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.14); margin: 0 22px; }

@media (max-width: 767px) {
  body.page-accueil .acc-slide-content { padding: 0 0 110px 24px; }
  .yd-hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .yd-hero-ctas { flex-direction: column; gap: 8px; }
  .yd-hero-cta-solid, .yd-hero-cta-ghost { width: fit-content; padding: 11px 22px; }
  .yd-hero-stats-row { margin-top: 14px; padding-top: 12px; }
  .yd-hs strong { font-size: 1.2rem; }
  .yd-hs-sep { margin: 0 14px; }
}

/* ── Universe switcher bar ───────────────────────────────── */
.yd-univ-bar {
  background: var(--yd-s2);
  border-top: 1px solid var(--yd-border);
  border-bottom: 1px solid var(--yd-border);
}
.yd-univ-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.yd-univ-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  text-decoration: none;
  position: relative;
  transition: background 0.2s;
}
.yd-univ-tab:hover { background: rgba(255,255,255,0.03); }
.yd-univ-on {
  background: var(--yd-gold-bg);
}
.yd-univ-on::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yd-gold);
}
.yd-univ-tab-icon {
  width: 40px; height: 40px;
  border-radius: var(--yd-r-sm);
  background: var(--yd-s3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.yd-univ-on .yd-univ-tab-icon {
  background: var(--yd-gold-bg);
  color: var(--yd-gold);
  border: 1px solid var(--yd-gold-dim);
}
.yd-univ-tab:not(.yd-univ-on):hover .yd-univ-tab-icon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.yd-univ-tab-text { flex: 1; min-width: 0; }
.yd-univ-tab-text strong {
  display: block;
  font-size: 0.9rem; font-weight: 700;
  color: var(--yd-text);
  margin-bottom: 2px;
  white-space: nowrap;
}
.yd-univ-tab-text span { font-size: 0.7rem; color: var(--yd-text-3); white-space: nowrap; }
.yd-univ-here {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yd-gold);
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0; white-space: nowrap;
}
.yd-univ-go {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0; white-space: nowrap;
  transition: color 0.2s;
}
.yd-univ-tab:hover .yd-univ-go { color: rgba(255,255,255,0.75); }
.yd-univ-sep {
  padding: 0 24px;
  color: var(--yd-text-3);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--yd-border);
  border-right: 1px solid var(--yd-border);
}

@media (max-width: 640px) {
  .yd-univ-bar-inner { grid-template-columns: 1fr 1fr; }
  .yd-univ-sep { display: none; }
  .yd-univ-here, .yd-univ-go { display: none; }
  .yd-univ-tab { padding: 16px 16px; gap: 10px; }
  .yd-univ-tab-text span { display: none; }
}

/* ── Prestations V2 — 2×2 full-image grid ───────────────── */
.yd-presta-v2 {
  background: var(--yd-bg);
  border-top: 1px solid var(--yd-border);
}
.yd-presta-v2-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.yd-presta-v2-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.yd-pv2-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--yd-text);
  margin: 10px 0 0;
}
.yd-pv2-sub { font-size: 0.84rem; color: var(--yd-text-2); margin: 8px 0 0; }
.yd-pv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.yd-pcard {
  position: relative;
  border-radius: var(--yd-r-xl);
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  background: var(--yd-s2);
  -webkit-tap-highlight-color: transparent;
}
.yd-pcard:focus-visible { outline: 2px solid var(--yd-gold); outline-offset: 3px; }
.yd-pcard img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.yd-pcard:hover img { transform: scale(1.08); }
.yd-pcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0) 35%,
    rgba(0,0,0,0.75) 80%,
    rgba(0,0,0,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: background 0.3s;
}
.yd-pcard:hover .yd-pcard-overlay {
  background: linear-gradient(165deg,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.82) 80%,
    rgba(0,0,0,0.96) 100%);
}
.yd-pcard-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.18em;
  transition: color 0.28s;
}
.yd-pcard:hover .yd-pcard-n { color: var(--yd-gold); }
.yd-pcard-mid {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 12px;
}
.yd-pcard-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.0;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.yd-pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.yd-pcard-price {
  font-size: 0.74rem; font-weight: 700;
  color: var(--yd-gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 5px 14px;
  border-radius: var(--yd-r-pill);
  backdrop-filter: blur(8px);
}
.yd-pcard-action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 600;
  color: transparent;
  transform: translateX(-8px);
  opacity: 0;
  transition: opacity 0.28s, transform 0.28s, color 0.28s;
  pointer-events: none;
}
.yd-pcard:hover .yd-pcard-action {
  color: rgba(255,255,255,0.9);
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.yd-pv2-stats {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
  font-size: 0.82rem; color: var(--yd-text-2);
  flex-wrap: wrap;
}
.yd-pv2-stats strong { color: var(--yd-text); }

@media (max-width: 768px) {
  .yd-pv2-grid { grid-template-columns: 1fr; gap: 8px; }
  .yd-pcard { height: 300px; }
  .yd-pcard-h { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .yd-presta-v2-top { flex-direction: column; align-items: flex-start; }
  .yd-pcard-action { opacity: 1; transform: translateX(0); color: rgba(255,255,255,0.7); }
}
@media (max-width: 480px) {
  .yd-pcard { height: 260px; border-radius: var(--yd-r-lg); }
  .yd-pcard-overlay { padding: 18px; }
  .yd-presta-v2-wrap { padding: 56px 16px 72px; }
}

/* ─── Tailwind custom classes ─────────────────────────────────────────── */

/* Universe bar grid */
.tw-univ-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
}

/* Tab base */
.tw-univ-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  min-width: 0;
}

/* Active tab */
.tw-univ-on {
  background: rgba(201,169,110,0.06);
  border-bottom: 2px solid #C9A96E;
}

/* Inactive tab */
.tw-univ-off {
  border-bottom: 2px solid transparent;
}
.tw-univ-off:hover {
  background: rgba(255,255,255,0.03);
  border-bottom-color: rgba(255,255,255,0.15);
}

/* Icons */
.tw-univ-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,169,110,0.25);
}
.tw-univ-icon-on { background: rgba(201,169,110,0.10); }
.tw-univ-icon-off { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }

/* Subtitle */
.tw-univ-sub {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}

/* Name colors */
.tw-name-on { color: #C9A96E; }
.tw-name-off { color: rgba(255,255,255,0.65); }
.tw-univ-off:hover .tw-name-off { color: rgba(255,255,255,0.9); }

/* VS separator column */
.tw-univ-sep-col {
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.tw-vs-text {
  color: rgba(255,255,255,0.18);
  font-size: 0.7rem;
}

/* "Explorer →" text */
.tw-go-text {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.tw-univ-off:hover .tw-go-text { color: rgba(255,255,255,0.75); }

/* Pulse dot animation */
.tw-pulse-dot {
  display: inline-block;
  animation: tw-pulse 2s ease-in-out infinite;
}
@keyframes tw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── Prestations editorial rows ──────────────────────────────────────── */
.tw-prow {
  transition: background 0.2s;
  min-height: 360px;
}
@media (min-width: 768px) {
  .tw-prow { min-height: 420px; }
}

/* Image zoom on hover */
.tw-img-zoom {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tw-prow:hover .tw-img-zoom { transform: scale(1.04); }

/* Fade overlays for image→text bleed */
.tw-prow-fade-r {
  position: absolute; inset: 0 0 0 auto;
  width: 80px;
  background: linear-gradient(to right, transparent, #09090b);
  pointer-events: none;
}
.tw-prow-fade-l {
  position: absolute; inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(to left, transparent, #09090b);
  pointer-events: none;
}

/* Row index label */
.tw-prow-idx {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

/* "Choisir →" CTA */
.tw-prow-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 6px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.tw-prow:hover .tw-prow-cta {
  opacity: 1;
  transform: translateX(0);
}

/* Generic Tailwind transition helper */
.tw-transition { transition: all 0.2s; }

/* Mobile: hide side-fades when stacked */
@media (max-width: 767px) {
  .tw-prow-fade-r,
  .tw-prow-fade-l { display: none; }
  .tw-prow-cta { opacity: 1; transform: translateX(0); color: rgba(255,255,255,0.45); }
}

@media (max-width: 767px) {
  .tw-univ-grid { grid-template-columns: 1fr auto 1fr; }
  .tw-univ-tab { padding: 12px 14px; gap: 10px; }
  .tw-univ-icon { width: 30px; height: 30px; }
  .tw-univ-sep-col { padding: 0 10px; }
}

/* ─── Adresse — transport pills ───────────────────────────────────────── */
.tw-transport-pill {
  display: inline-block;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  margin-right: 8px;
  letter-spacing: 0.04em;
}
.tw-tp-rerd { background: #B5004E; }
.tw-tp-rera { background: #E2231A; }
.tw-tp-bus  { background: #00814F; }
.tw-tp-m8   { background: #CEADD2; color: #1A1A2E; border: 1.5px solid #7B2D8E; }

/* ─── Adresse — horaires colonnes ─────────────────────────────────────── */
.tw-hor-day { min-width: 80px; flex-shrink: 0; }

/* ─── Map iframe ──────────────────────────────────────────────────────── */
.tw-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.75);
  pointer-events: none;
  transition: filter 0.3s;
}
#acc-map-wrapper.map-unlocked .tw-map-iframe {
  pointer-events: auto;
  filter: none;
}

/* ─── Modal auth — styles extraits ───────────────────────────────────── */
.acc-google-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.acc-auth-error-box {
  margin-top: 12px;
  text-align: center;
}

/* ─── Avis section ────────────────────────────────────────────────────── */
.tw-stars { color: #D4A843; letter-spacing: 0.04em; }
.tw-verified { color: #D4A843; font-size: 0.68rem; }
.tw-avis-avatar {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.tw-av-gold   { background: rgba(201,169,110,0.25); color: #C9A96E; }
.tw-av-purple { background: #4A2080; }
.tw-av-blue   { background: #1565C0; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  YD DESIGN SYSTEM — v2.5.64                             ║
   ║  Full navbar bar · Bento grid · Ticker · Process        ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR — full-width sticky bar (non pill)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  padding-top: env(safe-area-inset-top);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.yd-nav.scrolled {
  background: rgba(9,9,11,0.92);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  backdrop-filter: blur(24px) saturate(1.7);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 8px 40px rgba(0,0,0,0.6);
}
.yd-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px 0 28px;
}

/* Logo */
.yd-nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 32px;
}
.yd-nav-logo:hover { color: #C9A96E; text-decoration: none; }
.yd-nav-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(201,169,110,0.7);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 2px 6px;
  margin-left: 2px;
  font-family: 'Outfit', sans-serif;
}

/* Desktop links */
.yd-nav-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.yd-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 8px 14px;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.yd-nav-btn:hover { color: #fff; text-decoration: none; }
.yd-chevron { font-size: 0.6rem; transition: transform 0.2s; }
.acc-nav-item.has-dropdown:hover .yd-chevron { transform: rotate(180deg); }

/* Right actions — flex row, hamburger is the LAST item */
.yd-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Boutique link (desktop) */
.yd-nav-boutique {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  color: #C9A96E;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.yd-nav-boutique:hover {
  background: rgba(201,169,110,0.2);
  color: #d4b47a;
  text-decoration: none;
}

/* Icon buttons */
.yd-nav-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
}
.yd-nav-icon:hover { color: #fff; text-decoration: none; }

/* Hamburger — inside .yd-nav-actions, always last */
.yd-hamburger {
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.yd-hamburger:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.hb-line {
  width: 18px; height: 1.5px;
  background: currentColor;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state */
body:has(#acc-mobile-menu:not(.hidden)) .yd-hamburger { background: rgba(201,169,110,0.12); border-color: rgba(201,169,110,0.35); }
body:has(#acc-mobile-menu:not(.hidden)) .yd-hamburger .hb-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body:has(#acc-mobile-menu:not(.hidden)) .yd-hamburger .hb-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
body:has(#acc-mobile-menu:not(.hidden)) .yd-hamburger .hb-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hide hamburger on desktop (above 1024px) */
@media (min-width: 1025px) {
  .yd-hamburger { display: none; }
}

/* Hide desktop links on mobile */
@media (max-width: 1024px) {
  .yd-nav-links { display: none; }
  .yd-nav-boutique span { display: none; }
  .yd-nav-boutique { padding: 7px 12px; }
}

/* Mobile: always show hamburger on accueil */
body.page-accueil .yd-hamburger { display: flex !important; }

/* Mobile menu — attached to .yd-nav (redesign inactive : .yd-nav n'existe pas encore dans le HTML) */
.yd-nav .acc-mobile-menu {
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: rgba(9,9,11,0.97);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  backdrop-filter: blur(28px) saturate(1.6);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 0 24px;
  z-index: 800;
}

/* Section title spacing fix */
.acc-mobile-section-title--mt { margin-top: 16px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO CONTENT — new classes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-watermark {
  position: absolute;
  bottom: -20px; right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 28vw, 26rem);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.yd-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}
.yd-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.85);
}
.yd-hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.yd-hero-h1 em {
  font-style: normal;
  color: #C9A96E;
}
.yd-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.6;
  max-width: 500px;
}
.yd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.yd-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.yd-hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.yd-hstat:first-child { padding-left: 0; }
.yd-hstat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.yd-hstat span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}
.yd-hstat-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.12);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PULSE DOT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #C9A96E;
  border-radius: 50%;
  animation: yd-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes yd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.35); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C9A96E;
  color: #09090b;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.yd-btn-gold:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; color: #09090b; }

.yd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.yd-btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.05); text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER / EYEBROW / TITLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.yd-section-hd--solo { margin-bottom: 60px; }
.yd-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.7);
  margin: 0 0 12px;
}
.yd-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.yd-section-title em { font-style: normal; color: #C9A96E; }
.yd-section-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 10px 0 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-ticker {
  background: #C9A96E;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
.yd-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: yd-ticker-scroll 30s linear infinite;
  will-change: transform;
}
.yd-ticker-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #09090b;
  padding: 0 12px;
}
.yd-ticker-sep {
  color: rgba(9,9,11,0.35);
  font-size: 0.6rem;
  flex-shrink: 0;
}
@keyframes yd-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRESTATIONS — BENTO GRID
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-presta-section {
  background: #09090b;
  padding: 80px 0;
}
.yd-presta-section .yd-section-hd {
  max-width: 1320px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.yd-bento {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 6px;
}
/* Tall left card */
.yd-bcard--tall {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
/* Wide bottom-right card */
.yd-bcard--wide {
  grid-column: 2 / 4;
}

.yd-bcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111113;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.yd-bcard:focus-visible { outline: 2px solid #C9A96E; outline-offset: 2px; }
.yd-bcard-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  filter: brightness(0.7) saturate(0.85);
}
.yd-bcard:hover .yd-bcard-img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.7);
}
.yd-bcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.95) 0%, rgba(9,9,11,0.3) 55%, transparent 100%);
  z-index: 1;
}
.yd-bcard-body {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.yd-bcard-idx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(201,169,110,0.55);
}
.yd-bcard-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0;
}
.yd-bcard-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin: 2px 0 0;
}
.yd-bcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.yd-bcard-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #C9A96E;
}
.yd-bcard-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.yd-bcard:hover .yd-bcard-cta { color: rgba(255,255,255,0.8); }

/* Stats bar under bento */
.yd-presta-stats-bar {
  max-width: 1320px;
  margin: 20px auto 0;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.yd-presta-stats-bar strong { color: rgba(255,255,255,0.75); font-weight: 700; }
.yd-dot-sep { color: rgba(255,255,255,0.15); }

/* Responsive bento */
@media (max-width: 900px) {
  .yd-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 220px;
  }
  .yd-bcard--tall {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .yd-bcard--wide {
    grid-column: 1 / 3;
  }
}
@media (max-width: 600px) {
  .yd-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 16px;
  }
  .yd-bcard {
    min-height: 240px;
  }
  .yd-bcard--tall, .yd-bcard--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .yd-presta-section .yd-section-hd { padding: 0 16px; }
  .yd-presta-stats-bar { padding: 14px 16px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS — 4 étapes avec connecteurs
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-process {
  background: #111113;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 32px;
}
.yd-process-wrap { max-width: 1200px; margin: 0 auto; }
.yd-section-hd--solo { text-align: center; display: flex; flex-direction: column; align-items: center; }

.yd-steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 64px;
}
.yd-step-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}
.yd-step-line::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0.4), rgba(201,169,110,0.1));
}
.yd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.yd-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(201,169,110,0.45);
}
.yd-step-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #C9A96E;
  transition: background 0.3s, border-color 0.3s;
}
.yd-step:hover .yd-step-icon {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.45);
}
.yd-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
}
.yd-step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 180px;
}

@media (max-width: 860px) {
  .yd-steps-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px 20px;
  }
  .yd-step-line { display: none; }
}
@media (max-width: 480px) {
  .yd-steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .yd-process { padding: 60px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ADRESSE — yd-* classes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-addr-icon {
  width: 34px; height: 34px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.yd-addr-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  margin-bottom: 4px;
}

/* Map hint overlay */
.map-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}
.map-unlocked .map-hint { opacity: 0; }
.map-hint-label {
  background: rgba(9,9,11,0.85);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.1em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AVIS — yd-* classes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-stars { color: #D4A843; letter-spacing: 0.04em; }
.yd-verified { color: #4285F4; font-size: 0.7rem; }
.yd-avis-av {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.yd-av-gold   { background: rgba(201,169,110,0.22); color: #C9A96E; }
.yd-av-purple { background: #4A2080; }
.yd-av-blue   { background: #1565C0; }

/* Google badge */
.yd-google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}
.yd-gbadge-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }
.yd-gbadge-label { font-size: 0.65rem; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 0.1em; line-height: 1.3; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TIKTOK IFRAME
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yd-tiktok-iframe {
  width: 100%;
  height: 560px;
  max-height: 560px;
  display: block;
  visibility: unset;
  border: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO PADDING (pour navbar pleine largeur)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-accueil .acc-hero {
  padding-top: 68px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE GLOBAL — padding adjustments
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .yd-nav { height: 60px; }
  .yd-nav-inner { height: 60px; padding: 0 16px; }
  body.page-accueil .acc-hero { padding-top: 60px; }
  .yd-nav .acc-mobile-menu { top: 60px; }
  .yd-presta-section { padding: 60px 0; }
  .yd-section-hd { flex-direction: column; align-items: flex-start; }
  .yd-hero-h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .yd-hero-stats { flex-wrap: wrap; gap: 16px; }
  .yd-hstat { padding: 0 12px; }
  .yd-hero-ctas { gap: 10px; }
  .yd-btn-gold, .yd-btn-ghost { padding: 11px 20px; font-size: 0.78rem; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  EC — NOUVEAU DESIGN ÉDITORIAL v2.5.64                  ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — CONTENU CENTRÉ ÉDITORIAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-slide-overlay-dark {
  background: linear-gradient(
    to bottom,
    rgba(7,7,10,0.55) 0%,
    rgba(7,7,10,0.45) 40%,
    rgba(7,7,10,0.75) 80%,
    rgba(7,7,10,0.92) 100%
  );
}
.ec-hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 760px;
}
.ec-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.85);
}
.ec-pulse-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #C9A96E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ec-pulse 2.4s ease-in-out infinite;
}
.ec-pulse-dot-sm {
  display: inline-block;
  width: 5px; height: 5px;
  background: #C9A96E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ec-pulse 2.4s ease-in-out infinite;
}
@keyframes ec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.ec-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
.ec-title-accent {
  font-style: normal;
  color: #C9A96E;
  display: block;
}
.ec-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 500px;
}
.ec-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOUTONS EC
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #C9A96E;
  color: #07070a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ec-btn-primary:hover { opacity: 0.85; transform: translateY(-1px); color: #07070a; text-decoration: none; }
.ec-btn-lg { padding: 18px 36px; font-size: 0.88rem; }

.ec-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ec-btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.05); text-decoration: none; }
.ec-btn-sm { padding: 9px 18px; font-size: 0.73rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-ticker {
  background: #C9A96E;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.ec-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ec-ticker 28s linear infinite;
  will-change: transform;
}
.ec-ticker-txt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #07070a;
  padding: 0 14px;
}
.ec-ticker-sep {
  color: rgba(7,7,10,0.3);
  font-size: 0.55rem;
  flex-shrink: 0;
}
@keyframes ec-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EYEBROW & TITRE GLOBAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.7);
  margin: 0 0 14px;
}
.ec-eyebrow--dark { color: rgba(7,7,10,0.45); }
.ec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.ec-title em { font-style: normal; color: #C9A96E; }
.ec-title--light { color: #fff; }
.ec-title--sm { font-size: clamp(2.4rem, 4vw, 3.8rem); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES — RANGÉES ÉDITORIALES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-services {
  background: #07070a;
}
.ec-services-hd {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ec-services-hd-left { flex-shrink: 0; }
.ec-services-hd-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  max-width: 380px;
  text-align: right;
}
.ec-services-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* Row */
.ec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.ec-row--flip { direction: rtl; }
.ec-row--flip > * { direction: ltr; }

.ec-row-img {
  overflow: hidden;
  position: relative;
}
.ec-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  filter: brightness(0.62) saturate(0.8);
}
.ec-row:hover .ec-row-img img {
  filter: brightness(0.5) saturate(0.65);
}
.ec-row-img-3 img {
  object-position: center 20%;
}
.ec-row-img-1 img {
  object-position: center 90%;
}
.ec-row-img-2 img {
  object-position: center 45%;
}

.ec-row-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 60px;
  position: relative;
  background: #07070a;
  transition: background 0.35s;
}
.ec-row:hover .ec-row-content { background: #0d0d10; }

.ec-row-ghost {
  position: absolute;
  top: -10px; right: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.ec-row-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ec-row-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.ec-row-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ec-row-list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.ec-row-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ec-row-list li::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: rgba(201,169,110,0.4);
  flex-shrink: 0;
}
.ec-row-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}
.ec-row-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.ec-row-price strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #C9A96E;
  font-weight: 400;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.ec-row-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  transition: color 0.25s;
  white-space: nowrap;
}
.ec-row:hover .ec-row-cta { color: rgba(255,255,255,0.75); }

@media (max-width: 860px) {
  .ec-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ec-row--flip { direction: ltr; }
  .ec-row-img { height: 260px; }
  .ec-row-content { padding: 36px 28px; }
  .ec-row-ghost { display: none; }
  .ec-services-hd { padding: 60px 24px 40px; flex-direction: column; align-items: flex-start; }
  .ec-services-hd-right { align-items: flex-start; text-align: left; max-width: 100%; }

  /* Rangées compactes : le plafond desktop (380px) coupait le texte une fois la rangée empilée */
  .ec-row--compact {
    min-height: auto;
    max-height: none;
  }
  .ec-row--compact .ec-row-content {
    padding: 36px 28px;
  }
  .ec-row--compact .ec-row-img img {
    max-height: none;
  }
}
@media (max-width: 520px) {
  .ec-row-content { padding: 28px 20px; }
  .ec-row--compact .ec-row-content { padding: 28px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS — bande pleine largeur
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-stats {
  background: #0d0d10;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ec-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
}
.ec-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 48px 20px;
  transition: background 0.25s;
}
.ec-stat:hover { background: rgba(255,255,255,0.02); }
.ec-stat-div {
  width: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  align-self: stretch;
  margin: 20px 0;
}
.ec-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.ec-stat-sup {
  font-size: 0.55em;
  color: #C9A96E;
  vertical-align: super;
}
.ec-stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 640px) {
  .ec-stats-inner { flex-wrap: wrap; padding: 0; }
  .ec-stat { flex: 1 1 50%; padding: 32px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ec-stat-div { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS — liste verticale numérotée
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-process {
  background: #07070a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 96px 48px;
}
.ec-process-wrap { max-width: 1200px; margin: 0 auto; }
.ec-process-hd {
  margin-bottom: 72px;
}
.ec-process-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 480px;
}

.ec-process-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.ec-process-video {
  position: sticky;
  top: 100px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.ec-process-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

.ec-steps { display: flex; flex-direction: column; }
.ec-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  position: relative;
}
.ec-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ec-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(201,169,110,0.45);
  flex-shrink: 0;
  padding-top: 4px;
}
.ec-step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-top: 10px;
}
.ec-step-dot {
  width: 8px; height: 8px;
  border: 1.5px solid rgba(201,169,110,0.4);
  background: transparent;
  flex-shrink: 0;
}
.ec-step-dot--gold {
  background: #C9A96E;
  border-color: #C9A96E;
}
.ec-step-line {
  flex: 1;
  width: 1px;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.25), rgba(201,169,110,0.04));
  margin-top: 8px;
}
.ec-step-body {
  padding-bottom: 56px;
}
.ec-step--last .ec-step-body { padding-bottom: 0; }
.ec-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 12px;
}
.ec-step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 14px;
}
.ec-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
}
.ec-step-tag--gold { color: #C9A96E; border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.06); }

.ec-process-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .ec-process-body { grid-template-columns: 1fr; }
  .ec-process-video { position: static; max-width: 300px; margin: 0 auto 40px; }
}

@media (max-width: 640px) {
  .ec-process { padding: 64px 20px; }
  .ec-step { grid-template-columns: 52px 1fr; gap: 0 20px; }
  .ec-step-body { padding-bottom: 40px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOCIAL / COMMUNAUTÉ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-social {
  background: #0d0d10;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ec-social-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}
.ec-social-left {
  padding: 80px 60px 80px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.ec-social-right {
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-tiktok-video {
  width: 100%;
  height: 560px;
  max-height: 560px;
  display: block;
  border: none;
}

.ec-social-metrics {
  display: flex;
  align-items: center;
  gap: 0;
}
.ec-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ec-metric:first-child { padding-left: 0; }
.ec-metric:hover { opacity: 0.7; }
.ec-metric-icon {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}
.ec-metric-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.ec-metric-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}
.ec-metric-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ec-social-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 460px;
}
.ec-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ec-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ec-social-btn:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); text-decoration: none; }

@media (max-width: 900px) {
  .ec-social-wrap { grid-template-columns: 1fr; }
  .ec-social-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ec-social-right { padding: 32px 24px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ATELIER — CHIFFRES EN GRAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-atelier {
  background: #07070a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ec-atelier-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ec-atelier-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.88;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.ec-atelier-title em { font-style: normal; color: #C9A96E; }
.ec-atelier-head-right {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.ec-atelier-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
}
.ec-atelier-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ec-atel-m {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 48px 48px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.ec-atel-m:last-child { border-right: none; }
.ec-atel-m:hover { background: rgba(255,255,255,0.02); }
.ec-atel-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
}
.ec-atel-plus {
  font-size: 0.45em;
  color: #C9A96E;
  vertical-align: super;
}
.ec-atel-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.28);
}
@media (max-width: 860px) {
  .ec-atelier-metrics { grid-template-columns: 1fr 1fr; }
  .ec-atel-m { padding: 32px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ec-atelier-head { padding: 60px 24px 40px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .ec-atelier-metrics { grid-template-columns: 1fr 1fr; }
  .ec-atel-m { padding: 24px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ADRESSE / MAP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-adresse {
  background: #0d0d10;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ec-adresse-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  min-height: 560px;
}
.ec-adresse-info {
  padding: 72px 60px 72px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ec-addr-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 36px;
}
.ec-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ec-addr-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.18);
  color: #C9A96E;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ec-addr-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  margin-bottom: 5px;
}
.ec-addr-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.ec-addr-link { text-decoration: none; transition: color 0.2s; }
.ec-addr-link:hover { color: #C9A96E; }
.ec-horaires {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ec-hor-row {
  display: flex;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
}
.ec-hor-day { min-width: 84px; flex-shrink: 0; color: rgba(255,255,255,0.3); }
.ec-hor-val { color: rgba(255,255,255,0.6); }
.ec-hor-closed { color: rgba(255,255,255,0.2); }
.ec-transports { display: flex; flex-direction: column; gap: 8px; }
.ec-transp-txt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-left: 4px;
}
.ec-addr-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.ec-map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
@media (max-width: 860px) {
  .ec-adresse-wrap { grid-template-columns: 1fr; }
  .ec-adresse-info { padding: 48px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ec-map-wrap { min-height: 340px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAP HINT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.map-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}
.map-unlocked .map-hint { opacity: 0; }
.map-hint-label {
  background: rgba(7,7,10,0.88);
  color: rgba(255,255,255,0.55);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AVIS CLIENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-avis {
  background: #07070a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ec-avis-wrap { max-width: 1400px; margin: 0 auto; }
.ec-avis-hd {
  padding: 72px 48px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ec-google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.ec-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.ec-badge-stars { color: #D4A843; font-size: 0.65rem; letter-spacing: 0.04em; }
.ec-badge-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.ec-badge-lbl { font-family: 'Outfit', sans-serif; font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; line-height: 1.4; }

.ec-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ec-avis-card {
  padding: 40px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s;
}
.ec-avis-card:last-child { border-right: none; }
.ec-avis-card:hover { background: rgba(255,255,255,0.02); }
.ec-avis-header { display: flex; align-items: center; gap: 14px; }
.ec-avis-av {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  flex-shrink: 0; color: #fff;
}
.ec-av-gold   { background: rgba(201,169,110,0.2); color: #C9A96E; }
.ec-av-purple { background: #4A2080; }
.ec-av-blue   { background: #1565C0; }
.ec-avis-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ec-verified { color: #4285F4; font-size: 0.65rem; }
.ec-avis-meta { font-family: 'Outfit', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-top: 2px; }
.ec-stars { color: #D4A843; letter-spacing: 0.04em; font-size: 0.75rem; }
.ec-avis-txt { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.75; flex: 1; }

.ec-avis-footer {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ec-avis-footer-txt { font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

@media (max-width: 860px) {
  .ec-avis-grid { grid-template-columns: 1fr; }
  .ec-avis-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; }
  .ec-avis-hd { padding: 48px 24px 32px; }
  .ec-avis-footer { padding: 16px 24px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA FINALE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-cta-finale {
  background: #C9A96E;
  padding: 80px 48px;
}
.ec-cta-finale-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.ec-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.9;
  color: #07070a;
  letter-spacing: 0.02em;
  margin: 0;
}
.ec-cta-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: rgba(7,7,10,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.ec-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.ec-cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #07070a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.ec-cta-btn-main:hover { opacity: 0.82; }
.ec-cta-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(7,7,10,0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border: 1.5px solid rgba(7,7,10,0.35);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.ec-cta-btn-sec:hover { background: rgba(7,7,10,0.08); color: #07070a; text-decoration: none; }
.ec-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: rgba(7,7,10,0.45);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ec-cta-badges span { display: flex; align-items: center; gap: 6px; }
@media (max-width: 640px) {
  .ec-cta-finale { padding: 60px 24px; }
  .ec-cta-btns { flex-direction: column; width: 100%; }
  .ec-cta-btn-main, .ec-cta-btn-sec { justify-content: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CORRECTIFS — hauteur custom, TikTok, nav icons
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Rangée Custom — hauteur réduite (desktop uniquement : en dessous de 860px
   le layout passe en 1 colonne empilée, cf. le correctif dans le @media
   (max-width: 860px) plus haut, qui doit rester la seule règle active) */
@media (min-width: 861px) {
  .ec-row--compact {
    min-height: 320px;
    max-height: 380px;
  }
  .ec-row--compact .ec-row-content {
    padding: 36px 52px;
  }
  .ec-row--compact .ec-row-img img {
    height: 100%;
    max-height: 380px;
  }
}

/* Section TikTok — colonne droite plus large */
.ec-social-wrap {
  grid-template-columns: 1fr 520px !important;
}
.ec-social-right {
  padding: 0 !important;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0a0a0d;
}
.ec-tiktok-container {
  width: 100%;
  min-width: 325px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  box-sizing: border-box;
}
.ec-tiktok-video {
  width: 100% !important;
  min-width: 300px;
  max-width: 380px;
  height: 620px;
  max-height: 720px;
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 16px;
  object-fit: cover;
  background: #000;
}
@media (max-width: 1024px) {
  .ec-social-wrap { grid-template-columns: 1fr !important; }
  .ec-social-right { min-height: 540px; }
  .ec-tiktok-container { padding: 32px 24px; }
}

/* Hamburger — no border, no background */
/* Hamburger — 42px circle comme les autres */
@media (max-width: 900px) {
  body.page-accueil .acc-hamburger {
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    color: rgba(255,255,255,0.8) !important;
    width: 42px !important; height: 42px !important;
    padding: 0 !important;
  }
  body.page-accueil .acc-hamburger:hover {
    background: rgba(255,255,255,0.16) !important;
    border-color: rgba(255,255,255,0.35) !important;
    color: #fff !important;
    transform: scale(1.06) !important;
  }
}

/* Mode switcher — pill, même hauteur que les cercles */
body.page-accueil .acc-mode-switcher-btn,
body.page-accueil .acc-mode-switcher-link {
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.8) !important;
  box-shadow: none !important;
  border-radius: 21px !important;
  height: 42px !important;
  padding: 0 14px !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
body.page-accueil .acc-mode-switcher-btn:hover,
body.page-accueil .acc-mode-switcher-link:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO IMAGE FIXE — ec-hero-solo
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ec-hero-solo {
  position: relative;
  min-height: 100svh;        /* utilise svh pour mobile (évite la barre d'adresse) */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #07070a;
}

/* Image de fond */
.ec-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ec-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.52) saturate(0.75);
  transition: transform 8s ease;
  transform: scale(1.04);
}
.ec-hero-solo:hover .ec-hero-bg-img {
  transform: scale(1);
}
.ec-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,7,10,0.75) 0%, rgba(7,7,10,0.2) 60%, rgba(7,7,10,0.05) 100%),
    linear-gradient(to top,   rgba(7,7,10,0.9)  0%, rgba(7,7,10,0.0) 45%);
}

/* Zone contenu — prend tout l'espace disponible */
.ec-hero-body {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 140px 80px 60px;
}

/* Trust signals */
.ec-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.ec-trust-star { color: #D4A843; font-size: 0.65rem; }
.ec-trust-sep  { color: rgba(255,255,255,0.15); }

/* Ticker positionné en bas du hero — dernier item du flex */
.ec-ticker--in-hero {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

/* Fallback svh pour vieux navigateurs */
@supports not (min-height: 100svh) {
  .ec-hero-solo { min-height: 100vh; }
}

/* Mobile hero */
@media (max-width: 768px) {
  .ec-hero-body { padding: 100px 24px 40px; }
  .ec-hero-bg-img { object-position: 65% 30%; }
  .ec-hero-gradient {
    background:
      linear-gradient(to bottom, rgba(7,7,10,0.3) 0%, rgba(7,7,10,0.0) 30%),
      linear-gradient(to top,    rgba(7,7,10,0.95) 0%, rgba(7,7,10,0.4) 50%, rgba(7,7,10,0.0) 80%);
  }
  .ec-hero-trust { gap: 8px; }
}
@media (max-width: 480px) {
  .ec-hero-body { padding: 88px 20px 32px; }
  .ec-hero-trust { display: none; }
}

/* ── Rideau de théâtre à l'ouverture du hero ──────────────── */
.ec-hero-curtain {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: #07070a;
  pointer-events: none;
  animation: ec-curtain-rise 1.1s cubic-bezier(0.65,0,0.35,1) 0.3s forwards;
}
@keyframes ec-curtain-rise {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .ec-hero-curtain { display: none; }
}




