/* =========================================================
   AURA GLOW 3.0 — Charte Graphique "Black, Magenta Pink & White"
   Inspirée du modèle Hair Extensions de référence
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Palette de couleurs */
  --pink-primary: #E6007E;       /* Magenta / Rose fuchsia vif */
  --pink-hover: #C2185B;         /* Rose fuchsia foncé */
  --pink-light: #FF2E93;         /* Rose lumineux */
  --pink-soft: rgba(230, 0, 126, 0.08);
  --pink-border: rgba(230, 0, 126, 0.25);
  --pink-glow: 0 0 22px rgba(230, 0, 126, 0.28);

  /* Alias de compatibilité pour assurer la cohérence visuelle sur tous les composants */
  --gold: var(--pink-primary);
  --gold-hover: var(--pink-hover);
  --gold-light: var(--pink-light);
  --gold-soft: var(--pink-soft);
  --gold-border: var(--pink-border);
  --gold-glow: var(--pink-glow);
  --bg-surface-elevated: #FFFFFF;
  --ivory-muted: #666666;

  --black-header: #000000;       /* Noir pur du header */
  --black-topbar: #141414;       /* Noir graphite de la barre utilitaire */
  --black-footer: #111111;       /* Noir intense du footer */
  
  --bg-page: #F7F7F7;            /* Fond de page gris très clair */
  --bg-card: #FFFFFF;            /* Fond de carte blanc pur */
  --border-light: #E5E5E5;       /* Bordures discrètes */

  --text-main: #222222;          /* Texte principal sombre */
  --text-muted: #666666;         /* Texte secondaire gris */
  --text-light: #FFFFFF;         /* Texte blanc */

  --success: #2E7D32;
  --success-bg: #E8F5E9;
  --danger: #D32F2F;
  --danger-bg: #FFEBEE;
  --warning: #F57C00;
  --warning-bg: #FFF3E0;

  /* Typographie */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Arrondis */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Ombres portées haute définition */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.09);
  --shadow-pink: 0 8px 24px rgba(230, 0, 126, 0.28);

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Typographie */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--pink-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--pink-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Titre de section façon "FEATURED PRODUCTS" */
.section-title-wrap {
  text-align: center;
  margin-bottom: 2.8rem;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
  display: inline-block;
  position: relative;
  padding-bottom: 0.8rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--pink-primary);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: none;
}

/* =========================================================
   Top-Bar Utilitaire & Header Noir Style "HAIR EXTENSIONS"
   ========================================================= */

.top-bar {
  background-color: var(--black-topbar);
  color: #AAAAAA;
  font-size: 0.78rem;
  border-bottom: 1px solid #222222;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-links a {
  color: #BBBBBB;
  transition: color 0.2s;
  text-decoration: none;
}

.top-links a:hover {
  color: #FFFFFF;
}

.top-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-icon {
  color: var(--pink-primary);
  flex-shrink: 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #BBBBBB;
  transition: all 0.2s ease;
  text-decoration: none;
}

.top-action-btn:hover {
  color: var(--pink-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Header principal */
.site-header {
  background-color: var(--black-header);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo AURA (blanc) GLOW (rose) */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-aura {
  color: #FFFFFF;
}

.brand-glow {
  color: var(--pink-primary);
  margin-left: 2px;
}

/* Navigation avec onglet rose plein */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}

.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #DDDDDD;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.06);
}

/* Onglet actif signature rose fuchsia */
.nav-links a.current {
  background-color: var(--pink-primary);
  color: #FFFFFF !important;
}

.nav-links a.current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #FFFFFF;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--pink-primary);
  color: var(--pink-primary);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* =========================================================
   Boutons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--pink-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--pink-hover);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background-color: transparent;
  color: var(--pink-primary) !important;
  border: 2px solid var(--pink-primary);
}

.btn.ghost:hover {
  background-color: var(--pink-primary);
  color: #FFFFFF !important;
}

.btn.dark {
  background-color: #111111;
  color: #FFFFFF !important;
}

.btn.dark:hover {
  background-color: #333333;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn.subtle {
  background-color: #EEEEEE;
  color: #333333 !important;
}

.btn.subtle:hover {
  background-color: #DDDDDD;
}

/* =========================================================
   Hero Slider & Bannière N&B
   ========================================================= */

.hero-slider {
  position: relative;
  background-color: #111111;
  color: #FFFFFF;
  overflow: hidden;
  height: 480px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.65);
  transition: transform 0.8s ease;
}

.hero-slider:hover .hero-slide-bg {
  transform: scale(1.02);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-slide-content h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-slide-content h1 span {
  color: var(--pink-primary);
}

.hero-slide-content p {
  color: #E0E0E0;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
}

.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }

/* Page Hero pour les sous-pages */
.page-hero {
  background-color: #111111;
  color: #FFFFFF;
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 3px solid var(--pink-primary);
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: #CCCCCC;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* =========================================================
   Cartes Produits & Prestations (Style Modèle de Référence)
   ========================================================= */

.block {
  padding: 4.5rem 0;
}

.block.alt {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Carte Produit Blanche */
.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-border);
}

/* Badge SALE! / POPULAIRE Rose */
.badge-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--pink-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(230, 0, 126, 0.3);
}

.product-media {
  height: 200px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: #FAFAFA;
}

.product-media img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

/* Prix Rose Vif */
.product-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--pink-primary);
  margin-bottom: 0.4rem;
}

.product-price-old {
  font-size: 0.88rem;
  color: #999999;
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 500;
}

/* Titre Majuscules */
.product-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.84rem;
  color: #666666;
  margin-bottom: 1.3rem;
  line-height: 1.55;
  flex: 1;
}

/* Bouton rose plein avec icône */
.product-btn {
  width: 100%;
  background-color: var(--pink-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.product-btn:hover {
  background-color: var(--pink-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}

.product-btn:active {
  transform: translateY(0);
}

/* =========================================================
   Filtres de Catégories
   ========================================================= */

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  color: #444444;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--pink-primary);
  color: #FFFFFF;
  border-color: var(--pink-primary);
}

/* =========================================================
   Profils Équipe
   ========================================================= */

.stylist-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stylist-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  overflow: hidden;
  border: 3px solid var(--pink-primary);
}

.stylist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  background-color: var(--pink-soft);
  color: var(--pink-primary);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* =========================================================
   Galerie & Lightbox
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  background-color: #EEEEEE;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  border: 2px solid var(--pink-primary);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--pink-primary);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--pink-primary);
}

.lightbox-close { top: 25px; right: 25px; }
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

/* =========================================================
   Tunnel de Réservation Responsive
   ========================================================= */

.booking-flow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 3vw, 2.5rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* Stepper Wrappers */
.stepper-wrap {
  width: 100%;
  margin-bottom: 2.2rem;
}

.stepper-desktop {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.stepper-desktop::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 2px;
  background-color: #E5E7EB;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #D1D5DB;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 0.4rem;
  transition: all 0.25s ease;
}

.step-circle svg {
  display: block;
}

.step-item.active .step-circle {
  background-color: var(--pink-primary);
  color: #FFFFFF;
  border-color: var(--pink-primary);
  box-shadow: 0 0 14px rgba(230, 0, 126, 0.4);
}

.step-item.completed .step-circle {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #888888;
  transition: color 0.2s;
}

.step-item.active .step-label {
  color: var(--pink-primary);
}

.step-item.completed .step-label {
  color: #111111;
}

/* Stepper Mobile Adaptatif (< 768px) */
.stepper-mobile {
  display: none;
  background: #FAFAFA;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
}

.stepper-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.stepper-mobile-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-primary);
  background: var(--pink-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
}

.stepper-mobile-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
}

.stepper-progress-bar {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.stepper-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-primary) 0%, #FF2A9D 100%);
  border-radius: 9999px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
  .stepper-desktop {
    display: none !important;
  }
  .stepper-mobile {
    display: block !important;
  }
}

/* Conteneur Compact pour Formulaires & Étapes Centrées */
.booking-compact-container {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* Grille des Coiffeuses (Étape 2) */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 600px) {
  .stylists-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stylist-select-card {
  cursor: pointer;
  text-align: center;
  padding: 1.8rem 1.4rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  background: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stylist-select-card:hover {
  transform: translateY(-3px);
  border-color: #D1D5DB;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stylist-select-card.selected {
  border-color: var(--pink-primary) !important;
  box-shadow: 0 0 0 2px var(--pink-primary), 0 8px 24px rgba(230, 0, 126, 0.18) !important;
  transform: translateY(-2px);
}

.stylist-avatar-any {
  background: var(--pink-soft) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--pink-primary) !important;
}

/* Grille des Créneaux Horaires */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
}

.slot-btn {
  background-color: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  color: #1F2937;
  padding: 0.75rem 0.5rem;
  min-height: 46px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slot-btn:hover {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
  background: var(--pink-soft);
}

.slot-btn.selected {
  background-color: var(--pink-primary);
  color: #FFFFFF;
  border-color: var(--pink-primary);
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.35);
}

/* Heures indisponibles : affichées barrées et non sélectionnables */
.slot-btn.unavailable,
.slot-btn:disabled {
  background-color: #F3F4F6;
  border-color: #E5E7EB;
  border-style: dashed;
  color: #9CA3AF;
  cursor: not-allowed;
  box-shadow: none;
}

.slot-btn.unavailable:hover,
.slot-btn:disabled:hover {
  background-color: #F3F4F6;
  border-color: #E5E7EB;
  color: #9CA3AF;
}

.slot-btn.unavailable s {
  text-decoration-thickness: 2px;
}

/* Navigation jour précédent / suivant (étape 4) */
.slots-day-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
}

.slots-day-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #111111;
  text-align: center;
  text-transform: capitalize;
}

.slots-day-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slots-day-btn:hover:not(:disabled) {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.slots-day-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slots-empty {
  margin-top: 1.5rem;
}

.slots-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin: 1.2rem 0 0;
  font-size: 0.8rem;
  color: #6B7280;
}

.slots-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.slots-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid #E5E7EB;
  background: #FFFFFF;
  display: inline-block;
}

.slots-legend-swatch.is-off {
  background: #F3F4F6;
  border-style: dashed;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 540px) {
  .slots-day-btn span {
    display: none; /* Sur petit écran, seules les flèches restent visibles */
  }
}

/* Boutons de Navigation des Étapes */
.booking-nav-buttons {
  margin-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.booking-nav-buttons.booking-nav-compact {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.booking-nav-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.4rem;
}

@media (max-width: 540px) {
  .booking-nav-buttons {
    flex-direction: column-reverse;
    gap: 0.8rem;
  }
  .booking-nav-buttons .btn {
    width: 100%;
  }
}

/* Note d'information élégante */
.booking-info-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  background: #F9FAFB;
  border-radius: 6px;
  font-size: 0.84rem;
  color: #4B5563;
  border-left: 3px solid var(--pink-primary);
}

.booking-info-note svg {
  color: var(--pink-primary);
  flex-shrink: 0;
}

/* Récapitulatif Étape 6 */
.booking-summary-card {
  border-top: 3px solid var(--pink-primary) !important;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #F3F4F6;
  gap: 0.8rem;
}

.summary-label {
  color: #6B7280;
  font-size: 0.88rem;
}

.summary-val {
  color: #111827;
  font-size: 0.92rem;
  text-align: right;
  word-break: break-word;
}

.summary-val.highlight {
  color: var(--pink-primary);
}

.summary-row.price-row {
  padding: 1rem 0;
  border-bottom: 1.5px dashed #E5E7EB;
}

.summary-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--pink-primary);
  font-family: var(--font-heading);
}

.summary-policy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
}

.summary-policy svg {
  color: var(--pink-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Billet de Confirmation Étape 7 */
.booking-success-card {
  text-align: center;
  padding: 2.5rem 1.8rem;
  border-top: 3px solid var(--pink-primary) !important;
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(230, 0, 126, 0.3);
}

.booking-ticket {
  background: #FAFAFA;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  padding: 1.4rem;
  text-align: left;
  margin-bottom: 2rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #EEEEEE;
  gap: 0.8rem;
  font-size: 0.88rem;
}

.ticket-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-label {
  color: #6B7280;
}

.ticket-id {
  color: var(--pink-primary);
  font-family: monospace;
  font-size: 1rem;
}

.success-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .ticket-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .success-actions .btn {
    width: 100%;
  }
}

/* Formulaires & Champs */
.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  background-color: #FAFAFA;
  border: 1px solid #CCCCCC;
  color: #222222;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 2px rgba(230, 0, 126, 0.15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Toasts */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background-color: #111111;
  border-left: 4px solid var(--pink-primary);
  color: #FFFFFF;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  min-width: 280px;
  max-width: 420px;
}

.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--danger); }
.toast-warning { border-left-color: var(--warning); }
.toast-info { border-left-color: var(--pink-primary); }

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toast-icon {
  font-weight: 800;
  font-size: 1.1rem;
}

.toast-close {
  background: transparent;
  border: none;
  color: #AAAAAA;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.2s;
}

.toast-close:hover {
  color: #FFFFFF;
}

.toast.toast-hiding {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

/* =========================================================
   Skeleton Loaders & Effet Shimmer
   ========================================================= */
.skeleton {
  background: linear-gradient(90deg, #EEEEEE 25%, #F7F7F7 50%, #EEEEEE 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.skeleton-media {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 14px;
  width: 85%;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 50%;
}

.skeleton-title {
  height: 22px;
  width: 75%;
  border-radius: 4px;
  margin: 0.3rem 0;
}

.skeleton-btn {
  height: 42px;
  width: 100%;
  border-radius: var(--radius-sm);
  margin-top: 0.6rem;
}

/* =========================================================
   Scroll Reveal (Animations 60fps douces)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Modale de Confirmation Personnalisée (Remplacement confirm)
   ========================================================= */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.confirm-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-box {
  background: #FFFFFF;
  border-top: 4px solid var(--pink-primary);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.confirm-overlay.active .confirm-box {
  transform: translateY(0) scale(1);
}

.confirm-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #111111;
}

.confirm-box p {
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.confirm-actions .btn {
  flex: 1;
}

/* =========================================================
   Pied de page (Footer Noir Élégant)
   ========================================================= */
.site-footer {
  background-color: var(--black-footer);
  color: #CCCCCC;
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--pink-primary);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  color: #999999;
  font-size: 0.88rem;
}

.footer-col ul a:hover {
  color: var(--pink-primary);
  padding-left: 3px;
}

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid #222222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #777777;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   SYSTÈME RESPONSIVE MULTI-PALIERS FLUIDE
   ========================================================= */

/* Palier Ordinateur Portable (1024px) */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Palier Tablette (860px) */
@media (max-width: 860px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Hamburger Menu Tactile avec animation */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--pink-border);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition);
    border-radius: 1px;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--pink-primary);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--pink-primary);
  }

  /* Menu Drawer Mobile Déroulant avec Flou */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    height: auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 1.5rem 0 2rem;
    border-bottom: 3px solid var(--pink-primary);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    height: 52px;
  }

  .nav-links a {
    width: 100%;
    padding: 0 2rem;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
  }

  .nav-links a:hover {
    border-left-color: var(--pink-primary);
    padding-left: 2.3rem;
  }

  .nav-links a.current {
    border-left-color: #FFFFFF;
  }

  .nav-links a.current::after {
    display: none;
  }

  .top-hide-mobile {
    display: none !important;
  }

  .top-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
  }

  .top-bar-inner {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .top-links li:first-child {
    display: none !important;
  }
}

/* Palier Smartphone (600px) */
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .wrap {
    padding: 0 1rem;
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-slider {
    height: 420px;
  }

  .hero-slide-content h1 {
    font-size: 1.85rem;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
  }

  .slider-arrow {
    display: none; /* Flèches masquées sur mobile au profit du tactile */
  }

  .row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn {
    min-height: 44px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }

  .toast-container {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .toast {
    min-width: auto;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

/* Palier Petits Écrans (360px et moins) */
@media (max-width: 360px) {
  .brand {
    font-size: 1.5rem;
  }

  .product-media {
    height: 170px;
  }

  .stylist-avatar {
    width: 100px;
    height: 100px;
  }
}

/* =========================================================
   AURA GLOW 4.0 — Interface de Réservation par Cartes & Catégories
   ========================================================= */

/* Filtres par Catégories */
.booking-category-nav {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding: 0.3rem 0.2rem 0.8rem 0.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.booking-category-nav::-webkit-scrollbar {
  display: none;
}

.booking-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  min-height: 42px;
}

.booking-cat-btn:hover {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
  background: var(--pink-soft);
}

.booking-cat-btn.active {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(230, 0, 126, 0.3);
}

.booking-cat-count {
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
}

.booking-cat-btn.active .booking-cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* Grille des Cartes de Coiffures Fluid & Responsive */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Carte Individuelle de Prestation */
.service-booking-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
  cursor: pointer;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.service-booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
  border-color: #D1D5DB;
}

.service-booking-card.selected {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 2px var(--pink-primary), 0 12px 28px rgba(230, 0, 126, 0.2);
  transform: translateY(-2px);
}

/* Photo de la coiffure */
.service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  max-height: 220px;
  overflow: hidden;
  background: #111111;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-booking-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  border: 1px solid rgba(230, 0, 126, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}

.service-card-selected-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pink-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(230, 0, 126, 0.4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Corps de la carte */
.service-card-content {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  gap: 0.5rem;
}

.service-card-cat-label {
  color: var(--pink-primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-duration {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-duration svg {
  color: var(--pink-primary);
  flex-shrink: 0;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
  word-break: break-word;
}

.service-card-desc {
  font-size: 0.86rem;
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

/* Pied de carte avec Prix & Bouton */
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
  margin-top: auto;
  gap: 0.8rem;
}

.service-card-price-wrap {
  display: flex;
  flex-direction: column;
}

.service-card-price-label {
  font-size: 0.72rem;
  color: #9CA3AF;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
}

.btn-select-service {
  padding: 0.65rem 1.15rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid var(--pink-primary);
  background: transparent;
  color: var(--pink-primary);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-select-service:hover {
  background: var(--pink-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
}

.service-booking-card.selected .btn-select-service {
  background: var(--pink-primary);
  color: #FFFFFF;
  border-color: var(--pink-primary);
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.35);
}

/* Barre de continuation Étape 1 */
.booking-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-selection-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
}

.booking-selection-summary strong {
  color: var(--pink-primary);
}

.summary-active-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-primary);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .booking-step-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.1rem;
  }

  .booking-step-actions button {
    width: 100%;
    min-height: 48px;
  }
}

/* Footer Contact List Icon System */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #888888;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--pink-primary);
}

.footer-icon {
  color: var(--pink-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
