/* ============================================
   REJUVA SKINCARE RDC — STYLE GLOBAL
   Direction artistique : cartes arrondies,
   fond crème, palette verte, Albert Sans.
   ============================================ */

:root {
  /* Palette Rejuva officielle */
  --rejuva-dark:    #234c29;
  --rejuva-darker:  #1a3a1f;
  --rejuva-deep:    #0f2613;
  --rejuva-green:   #58a722;
  --rejuva-mid:     #89c162;
  --rejuva-soft:    #badaa1;
  --rejuva-pale:    #ebf4e1;
  --rejuva-cream:   #f7f7f7;
  --rejuva-ink:     #1d1d1b;
  --rejuva-white:   #ffffff;
  
  /* Fond de page crème + cartes */
  --bg-cream:       #f5f1e8;
  --bg-page:        #f0ebe0;
  
  --text-dark:      #2a2a2a;
  --text-muted:     #6b6b6b;
  --text-light:     #9a9a9a;
  
  --border-soft:    rgba(35, 76, 41, 0.08);
  --border-hover:   rgba(35, 76, 41, 0.2);

  /* Texte d'accent qui s'adapte au thème (vert foncé en clair, vert clair en sombre) */
  --accent-text:    #234c29;
  --accent-strong:  #234c29;

  /* Surface élevée (carte qui flotte sur le fond) : blanc en clair, vert très foncé en sombre */
  --surface-elevated: #ffffff;

  --radius-card:    24px;
  --radius-pill:    100px;
  --radius-small:   14px;
  
  --shadow-soft:    0 4px 16px rgba(35, 76, 41, 0.06);
  --shadow-hover:   0 12px 32px rgba(35, 76, 41, 0.12);
  
  --font-display:   'Albert Sans', 'Helvetica Neue', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bouncy: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: clamp(12px, 1.5vw, 20px);
}

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

.page {
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION (présente sur toutes les pages)
   ============================================ */
.nav-card {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
  opacity: 0;
  animation: fadeDown 0.9s ease-out 0.2s forwards;
  position: relative;
}

.nav-logo img {
  height: clamp(32px, 4vw, 40px);
  width: auto;
  user-select: none;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--rejuva-ink);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--accent-text); }
.nav-links a.active {
  opacity: 1;
  color: var(--accent-text);
  font-weight: 500;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--rejuva-green);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Drapeau RDC */
.flag-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  transition: var(--transition-bouncy);
}
.flag-container:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
}

.rdc-flag {
  width: 38px;
  height: 29px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  animation: flag-wave 3.5s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes flag-wave {
  0%, 100% { transform: perspective(60px) rotateY(0deg) scale(1); }
  25% { transform: perspective(60px) rotateY(-8deg) scale(1.02); }
  50% { transform: perspective(60px) rotateY(0deg) scale(1); }
  75% { transform: perspective(60px) rotateY(8deg) scale(1.02); }
}
.flag-star {
  transform-origin: center;
  animation: star-pulse 2.5s ease-in-out infinite;
}
@keyframes star-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}
.flag-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rejuva-ink);
}

/* Burger menu mobile */
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.nav-burger:hover { background: var(--rejuva-green); }
.nav-burger svg { width: 18px; height: 18px; }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  z-index: 1000;
  padding: 80px 32px 32px;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--rejuva-ink);
  padding: 18px 0;
  border-bottom: 1px solid rgba(35, 76, 41, 0.1);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent-text); padding-left: 8px; }
.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border: none;
  cursor: pointer;
  font-size: 20px;
}

/* ============================================
   COMPOSANTS COMMUNS — CARDS
   ============================================ */
.card {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px);
  transition: var(--transition);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-dark {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
}

.card-image {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--rejuva-ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rejuva-green);
}
.eyebrow-center {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rejuva-green);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
}
.btn-primary:hover {
  background: var(--rejuva-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 167, 34, 0.25);
}

.btn-secondary {
  background: var(--bg-cream);
  color: var(--rejuva-ink);
  border-color: rgba(35, 76, 41, 0.15);
}
.btn-secondary:hover {
  background: var(--surface-elevated);
  border-color: var(--accent-text);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-text);
  border-color: rgba(35, 76, 41, 0.2);
}
.btn-ghost:hover {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border-color: var(--accent-text);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.btn:hover svg { transform: translateX(3px); }

/* Bouton WhatsApp signature */
.btn-whatsapp {
  background: #25D366;
  color: var(--rejuva-white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp svg { width: 16px; height: 16px; }

/* ============================================
   SECTIONS (espacement vertical)
   ============================================ */
.section {
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-title .eyebrow,
.section-title .eyebrow-center {
  margin-bottom: 16px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 640px; margin: 0 auto; }

/* ============================================
   GRILLES RÉUTILISABLES
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
}

/* ============================================
   FOOTER (commun à toutes les pages)
   ============================================ */
.site-footer {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px) clamp(24px, 3vw, 32px);
  margin-top: clamp(12px, 1.5vw, 16px);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(88, 167, 34, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--rejuva-white);
  font-weight: 400;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(247, 247, 247, 0.7);
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rejuva-soft);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(247, 247, 247, 0.7);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col a:hover {
  color: var(--rejuva-mid);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 247, 247, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(247, 247, 247, 0.5);
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rejuva-white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--rejuva-green);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

/* ============================================
   ANIMATIONS GLOBALES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up { opacity: 0; animation: fadeUp 1s ease-out forwards; }
.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }
.fade-up.delay-4 { animation-delay: 0.8s; }

/* ============================================
   FLOATING WHATSAPP BUTTON (sur toutes pages)
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--rejuva-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition-bouncy);
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.float-whatsapp svg { width: 28px; height: 28px; }
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { padding: 8px; }
  .nav-card, .card, .card-image, .site-footer {
    border-radius: 18px;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-whatsapp { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .float-whatsapp svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   ============================================
   ===   NOUVELLES FONCTIONNALITÉS (v2)     ===
   ============================================
   ============================================ */

/* ============================================
   THÈME SOMBRE — VARIABLES
   ============================================ */
:root {
  /* Transition douce entre les modes */
  --theme-transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

html { transition: background-color 0.5s ease; }

body,
.nav-card,
.card,
.card-image,
.site-footer,
.intro-text,
.intro-image,
.categories,
.category-card,
.testimonial,
.cta-section,
.highlight-image,
.contact-hero,
.method-card,
.contact-form-card,
.info-card,
.hours-card,
.form-field input,
.form-field select,
.form-field textarea,
.appointment,
.appointment-form-card,
.notif-popup,
.notif-popup-inner {
  transition: var(--theme-transition);
}

[data-theme="dark"] {
  --bg-page:        #0d1810;
  --bg-cream:       #16241a;
  /* --rejuva-white reste BLANC en mode sombre — il sert de texte sur fond foncé */
  --surface-elevated: #1d2e22;
  --rejuva-cream:   #16241a;
  --rejuva-pale:    #1f3624;

  --text-dark:      #e8e3d5;
  --text-muted:     #b8b3a8;
  --text-light:     #8a857a;
  --rejuva-ink:     #f5f1e8;

  --border-soft:    rgba(186, 218, 161, 0.14);
  --border-hover:   rgba(186, 218, 161, 0.35);

  /* En mode sombre, le texte d'accent devient vert clair pour rester lisible */
  --accent-text:    #badaa1;
  --accent-strong:  #89c162;

  --shadow-soft:    0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-hover:   0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Boutons primaires un peu plus lumineux en mode sombre pour le contraste */
[data-theme="dark"] .btn-primary {
  background: var(--rejuva-green);
  color: var(--rejuva-deep);
}
[data-theme="dark"] .btn-primary:hover {
  background: var(--rejuva-mid);
  color: var(--rejuva-deep);
  box-shadow: 0 8px 24px rgba(137, 193, 98, 0.35);
}

/* Ajustements ciblés pour le mode sombre */
[data-theme="dark"] body { color: var(--text-dark); }
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5 { color: var(--rejuva-ink); }

[data-theme="dark"] .intro-text h2 em,
[data-theme="dark"] .cta-section h2 em,
[data-theme="dark"] .contact-hero h1 em,
[data-theme="dark"] .info-card h3 em,
[data-theme="dark"] .hours-card h3 em,
[data-theme="dark"] .appointment h2 em { color: var(--rejuva-mid); }

[data-theme="dark"] .eyebrow,
[data-theme="dark"] .eyebrow-center,
[data-theme="dark"] .category-arrow { color: var(--rejuva-soft); }

[data-theme="dark"] .nav-links a { color: var(--text-dark); opacity: 0.75; }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active { color: var(--rejuva-soft); opacity: 1; }
[data-theme="dark"] .nav-links a.active::after { background: var(--rejuva-mid); }

[data-theme="dark"] .flag-container { background: rgba(255, 255, 255, 0.06); }
[data-theme="dark"] .flag-container:hover { background: rgba(255, 255, 255, 0.12); }
[data-theme="dark"] .flag-label { color: var(--rejuva-cream); }

[data-theme="dark"] .btn-secondary {
  background: var(--rejuva-darker);
  color: var(--rejuva-cream);
  border-color: rgba(186, 218, 161, 0.18);
}
[data-theme="dark"] .btn-secondary:hover {
  background: var(--rejuva-dark);
  border-color: var(--rejuva-mid);
}
[data-theme="dark"] .btn-ghost {
  color: var(--rejuva-soft);
  border-color: rgba(186, 218, 161, 0.25);
}
[data-theme="dark"] .btn-ghost:hover {
  background: var(--rejuva-soft);
  color: var(--rejuva-deep);
  border-color: var(--rejuva-soft);
}

[data-theme="dark"] .category-card { background: var(--surface-elevated); }
[data-theme="dark"] .category-card-image { background: var(--bg-page); }

[data-theme="dark"] .testimonial-quote { color: var(--rejuva-ink); }
[data-theme="dark"] .testimonial-author strong { color: var(--rejuva-soft); }

[data-theme="dark"] .mobile-menu { background: var(--bg-cream); }
[data-theme="dark"] .mobile-menu a { color: var(--text-dark); border-bottom-color: rgba(186,218,161,0.08); }

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
  background: var(--surface-elevated);
  color: var(--text-dark);
  border-color: rgba(186, 218, 161, 0.15);
}
[data-theme="dark"] .form-field input:focus,
[data-theme="dark"] .form-field select:focus,
[data-theme="dark"] .form-field textarea:focus {
  border-color: var(--rejuva-mid);
}

/* ============================================
   BOUTON THÈME (sun / moon)
   ============================================ */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(35, 76, 41, 0.08);
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bouncy);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  transform: translateY(-2px) rotate(15deg);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle { background: rgba(186, 218, 161, 0.12); color: var(--rejuva-soft); }
[data-theme="dark"] .theme-toggle:hover { background: var(--rejuva-soft); color: var(--rejuva-deep); }
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* ============================================
   SECTION RENDEZ-VOUS (BOOKING)
   ============================================ */
.appointment {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.appointment::before {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(88,167,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.appointment > * { position: relative; z-index: 1; }
.appointment-intro h2 {
  margin: 16px 0 20px;
}
.appointment-intro h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent-text);
}
.appointment-intro p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.appointment-perks {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}
.appointment-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dark);
}
.appointment-perks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rejuva-green);
  margin-top: 2px;
}
.appointment-form-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-small);
  padding: clamp(28px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
}
.appointment-form-card .eyebrow { margin-bottom: 10px; }
.appointment-form-card h3 { margin-bottom: 24px; }
.appointment .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.appointment .form-field { display: flex; flex-direction: column; }
.appointment .form-field.full { grid-column: 1 / -1; }
.appointment .form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 6px;
}
[data-theme="dark"] .appointment .form-field label { color: var(--rejuva-soft); }
.appointment .form-field input,
.appointment .form-field select,
.appointment .form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(35, 76, 41, 0.10);
  background: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.appointment .form-field input:focus,
.appointment .form-field select:focus,
.appointment .form-field textarea:focus {
  border-color: var(--accent-text);
}
.appointment .form-field textarea { resize: vertical; min-height: 90px; }
.appointment-submit {
  margin-top: 20px;
  width: 100%;
}
.appointment-alt {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}
.appointment-alt a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
[data-theme="dark"] .appointment-alt a { color: var(--rejuva-soft); }

@media (max-width: 768px) {
  .appointment { grid-template-columns: 1fr; }
  .appointment .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NOTIFICATION POPUP (modale d'inscription)
   ============================================ */
.notif-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 38, 19, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.notif-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.notif-popup-inner {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(32px, 4vw, 44px);
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.notif-popup.is-open .notif-popup-inner { transform: scale(1) translateY(0); }
.notif-popup-inner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(88,167,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.notif-popup-inner > * { position: relative; z-index: 1; }
.notif-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(35, 76, 41, 0.08);
  color: var(--accent-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.notif-close:hover { background: var(--rejuva-dark); color: var(--rejuva-white); transform: rotate(90deg); }
[data-theme="dark"] .notif-close { background: rgba(186,218,161,0.12); color: var(--rejuva-soft); }

.notif-badge {
  display: inline-flex;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rejuva-pale);
  color: var(--accent-text);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.notif-badge svg { width: 26px; height: 26px; }
[data-theme="dark"] .notif-badge { background: var(--rejuva-darker); color: var(--rejuva-soft); }

.notif-popup-inner h3 {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
}
.notif-popup-inner h3 em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent-text);
}
[data-theme="dark"] .notif-popup-inner h3 em { color: var(--rejuva-mid); }
.notif-popup-inner p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.notif-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notif-form input {
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(35,76,41,0.12);
  background: var(--surface-elevated);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}
.notif-form input:focus { border-color: var(--accent-text); }
[data-theme="dark"] .notif-form input { border-color: rgba(186, 218, 161, 0.18); }
[data-theme="dark"] .notif-form input::placeholder { color: var(--text-light); }
.notif-form button {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.notif-success {
  display: none;
  background: var(--rejuva-pale);
  color: var(--accent-text);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}
.notif-success.is-visible { display: block; animation: fadeUp 0.5s ease-out; }
[data-theme="dark"] .notif-success { background: var(--rejuva-darker); color: var(--rejuva-soft); }

.notif-mini-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* Variante mobile : popup en bas */
@media (max-width: 600px) {
  .notif-popup { align-items: flex-end; padding: 0; }
  .notif-popup-inner {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    transform: translateY(100%);
  }
  .notif-popup.is-open .notif-popup-inner { transform: translateY(0); }
}

/* ============================================
   BOUTON DE RECHERCHE (icône dans la nav)
   ============================================ */
.search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(35, 76, 41, 0.08);
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bouncy);
}
.search-toggle:hover {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  transform: translateY(-2px);
}
.search-toggle svg { width: 18px; height: 18px; }
[data-theme="dark"] .search-toggle { background: rgba(186, 218, 161, 0.12); }
[data-theme="dark"] .search-toggle:hover { background: var(--rejuva-soft); color: var(--rejuva-deep); }

/* ============================================
   OVERLAY DE RECHERCHE (modale centrée)
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 38, 19, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 12vh, 120px) 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay-inner {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  max-width: 580px;
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.search-overlay.is-open .search-overlay-inner { transform: translateY(0) scale(1); }
.search-overlay-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 14px;
}
.search-overlay-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-elevated);
  border: 1.5px solid rgba(35, 76, 41, 0.10);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-overlay-form:focus-within {
  border-color: var(--rejuva-dark);
  box-shadow: 0 4px 18px rgba(35, 76, 41, 0.10);
}
[data-theme="dark"] .search-overlay-form {
  border-color: rgba(186, 218, 161, 0.15);
}
[data-theme="dark"] .search-overlay-form:focus-within { border-color: var(--rejuva-mid); }
.search-overlay-form svg.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.search-overlay-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  padding: 12px 0;
}
.search-overlay-form input::placeholder { color: var(--text-light); }
.search-overlay-form button {
  border: none;
  cursor: pointer;
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.search-overlay-form button:hover {
  background: var(--rejuva-green);
  transform: translateY(-1px);
}
[data-theme="dark"] .search-overlay-form button {
  background: var(--rejuva-green);
  color: var(--rejuva-deep);
}
[data-theme="dark"] .search-overlay-form button:hover {
  background: var(--rejuva-mid);
}
.search-overlay-hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.search-overlay-hint kbd {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--surface-elevated);
  border: 1px solid rgba(35, 76, 41, 0.12);
  font-family: inherit;
  font-size: 11px;
  margin: 0 2px;
}
[data-theme="dark"] .search-overlay-hint kbd { border-color: rgba(186,218,161,0.18); }

.search-suggestions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-suggestion-chip {
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--rejuva-pale);
  color: var(--accent-text);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.search-suggestion-chip:hover {
  background: var(--rejuva-soft);
  transform: translateY(-1px);
}
[data-theme="dark"] .search-suggestion-chip {
  background: var(--rejuva-darker);
  color: var(--rejuva-soft);
}
[data-theme="dark"] .search-suggestion-chip:hover {
  background: var(--rejuva-dark);
}

@media (max-width: 600px) {
  .search-overlay { padding-top: 80px; }
  .search-overlay-form button span { display: none; }
}

/* ============================================
   BARRE DE RECHERCHE SUR LA PAGE PRODUITS
   ============================================ */
.product-search {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: var(--theme-transition);
}
.product-search-input-wrap {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  background: var(--surface-elevated);
  border: 1.5px solid rgba(35, 76, 41, 0.10);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 18px;
  transition: border-color 0.3s ease;
}
.product-search-input-wrap:focus-within {
  border-color: var(--rejuva-dark);
}
[data-theme="dark"] .product-search-input-wrap {
  border-color: rgba(186, 218, 161, 0.15);
}
[data-theme="dark"] .product-search-input-wrap:focus-within {
  border-color: var(--rejuva-mid);
}
.product-search-input-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 12px;
}
.product-search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  padding: 12px 0;
}
.product-search-input-wrap input::placeholder { color: var(--text-light); }
.product-search-clear {
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.product-search-clear:hover {
  background: rgba(35, 76, 41, 0.08);
  color: var(--accent-text);
}
[data-theme="dark"] .product-search-clear:hover { background: rgba(186,218,161,0.12); }
.product-search-result-count {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.product-search-result-count strong { color: var(--accent-text); font-weight: 600; }

.product-card.is-hidden,
.products-section.is-empty { display: none; }

.product-search-empty {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 60px);
  text-align: center;
  margin-bottom: clamp(12px, 1.5vw, 16px);
  display: none;
  transition: var(--theme-transition);
}
.product-search-empty.is-visible { display: block; }
.product-search-empty h3 {
  margin-bottom: 8px;
  color: var(--rejuva-ink);
}
.product-search-empty p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================
   AJUSTEMENTS DE LISIBILITÉ (mode sombre)
   ============================================ */

/* Supprimer les italiques partout — préférer le gras */
em {
  font-style: normal;
  font-weight: 500;
}
h1 em, h2 em, h3 em, h4 em {
  font-style: normal;
  font-weight: 500;
}

/* Drapeau RDC : texte blanc en mode sombre */
[data-theme="dark"] .flag-label {
  color: var(--rejuva-white);
}

/* Hero : bouton secondaire visible en mode sombre */
[data-theme="dark"] .hero .btn-secondary {
  background: var(--surface-elevated);
  color: var(--rejuva-ink);
  border-color: rgba(186, 218, 161, 0.18);
}
[data-theme="dark"] .hero .btn-secondary:hover {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border-color: var(--rejuva-mid);
}

/* Le hero h1 .accent doit rester lisible — il utilisait --rejuva-pale qui est foncé en sombre */
[data-theme="dark"] .hero h1 .accent {
  color: var(--rejuva-soft);
}

/* ============================================
   TÉMOIGNAGES — CARROUSEL
   ============================================ */
.testimonials {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 64px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  position: relative;
  overflow: hidden;
  transition: var(--theme-transition);
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(88,167,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials > * { position: relative; z-index: 1; }

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.testimonials-header .eyebrow-center { margin-bottom: 14px; }

.testimonials-stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 280px;
}
@media (max-width: 768px) { .testimonials-stage { min-height: 360px; } }
@media (max-width: 480px) { .testimonials-stage { min-height: 440px; } }

.testimonial-slide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-slide.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
}

.testimonial-slide .quote-icon {
  width: 42px;
  height: 42px;
  color: var(--rejuva-green);
  opacity: 0.5;
  margin-bottom: 18px;
}

.testimonial-slide .testimonial-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  line-height: 1.45;
  color: var(--rejuva-ink);
  max-width: 760px;
  margin: 0 auto 28px;
  letter-spacing: -0.015em;
}

.testimonial-slide .testimonial-author {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.testimonial-slide .testimonial-author strong {
  color: var(--accent-text);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
}

/* Navigation : points + flèches */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 36px);
}
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 76, 41, 0.15);
  background: transparent;
  color: var(--accent-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonial-arrow:hover {
  background: var(--rejuva-dark);
  color: var(--rejuva-white);
  border-color: var(--rejuva-dark);
  transform: scale(1.05);
}
[data-theme="dark"] .testimonial-arrow { border-color: rgba(186, 218, 161, 0.25); }
[data-theme="dark"] .testimonial-arrow:hover {
  background: var(--rejuva-soft);
  color: var(--rejuva-deep);
  border-color: var(--rejuva-soft);
}
.testimonial-arrow svg { width: 16px; height: 16px; }

.testimonial-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(35, 76, 41, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  padding: 0;
}
.testimonial-dot:hover {
  background: var(--accent-text);
  transform: scale(1.2);
}
.testimonial-dot.is-active {
  background: var(--rejuva-green);
  width: 28px;
  border-radius: 4px;
}
[data-theme="dark"] .testimonial-dot { background: rgba(186, 218, 161, 0.25); }
[data-theme="dark"] .testimonial-dot.is-active { background: var(--rejuva-mid); }

.testimonials-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--rejuva-green);
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .testimonials-nav { gap: 16px; }
  .testimonial-arrow { width: 38px; height: 38px; }
}

/* ============================================
   ============================================
   ===   AJUSTEMENTS MOBILE (v5)            ===
   ============================================
   ============================================ */

/* --------------------------------------------
   1. LOGO — PNG noir et SVG blanc ont maintenant
   le même ratio (800x238), donc on peut utiliser
   la contrainte par hauteur sans risque.
   -------------------------------------------- */
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: clamp(32px, 4vw, 40px);
  width: auto;
  object-fit: contain;
  user-select: none;
}

/* Footer logo : même règle si présent */
.footer-logo img {
  height: clamp(36px, 4.5vw, 44px);
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------
   2. EYEBROW LISIBLE EN MOBILE
   Le tracking large + petite police rendait
   "Soins professionnels • Peaux noires" cramped.
   On grossit, on réduit le letter-spacing et on
   raccourcit les barres décoratives.
   -------------------------------------------- */
@media (max-width: 600px) {
  .eyebrow,
  .eyebrow-center {
    font-size: 13px;
    letter-spacing: 0.12em;
    gap: 12px;
    font-weight: 600;
  }
  .eyebrow::before {
    width: 18px;
  }
  .eyebrow-center::before,
  .eyebrow-center::after {
    width: 18px;
  }

  /* Spécifique au hero : le texte "Soins professionnels • Peaux noires" 
     doit rester compact et lisible sur mobile. On supprime les barres
     décoratives qui prennent de la place inutilement. */
  .hero .eyebrow-center {
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 95%;
    line-height: 1.4;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    gap: 8px;
  }
  /* Sur mobile, on cache les barres dans le hero (gain de place) */
  .hero .eyebrow-center::before,
  .hero .eyebrow-center::after {
    display: none;
  }
}

@media (max-width: 380px) {
  /* Très petits écrans (iPhone SE etc.) */
  .eyebrow,
  .eyebrow-center {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .eyebrow-center::before,
  .eyebrow-center::after {
    width: 14px;
  }
}

/* --------------------------------------------
   3. CENTRAGE MOBILE GÉNÉRAL
   On rend les sections multi-colonnes pleinement
   centrées quand elles repassent en 1 colonne.
   -------------------------------------------- */
@media (max-width: 768px) {
  /* HERO : le contenu était déjà centré, on s'assure du padding */
  .hero-content {
    padding: clamp(32px, 6vw, 56px) clamp(20px, 5vw, 32px) !important;
  }
  .hero-buttons {
    width: 100%;
    justify-content: center;
  }
  .hero-buttons .btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }

  /* INTRO : texte centré quand l'image passe en dessous */
  .intro-text {
    text-align: center;
    align-items: center;
  }
  .intro-text .eyebrow,
  .intro-text .eyebrow-center {
    align-self: center;
  }
  .intro-text .btn-ghost {
    align-self: center;
  }

  /* HIGHLIGHT (Acne Ban) : on centre proprement */
  .highlight-content {
    text-align: center;
    align-items: center;
  }
  .highlight-content .eyebrow {
    align-self: center;
  }

  /* CATÉGORIES : flèche bien alignée */
  .category-card {
    text-align: center;
  }

  /* RENDEZ-VOUS : centrer l'intro */
  .appointment {
    padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 32px) !important;
  }
  .appointment-intro {
    text-align: center;
  }
  .appointment-intro .eyebrow {
    align-self: center;
  }
  .appointment-perks {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA section : déjà centré, on s'assure du padding */
  .cta-section {
    padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 32px) !important;
  }
  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-buttons .btn {
    min-width: 180px;
    justify-content: center;
  }

  /* FOOTER : layout mobile propre et bien espacé */
  .site-footer {
    text-align: center;
    padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 36px) clamp(24px, 4vw, 32px);
  }
  .footer-grid {
    gap: clamp(32px, 6vw, 48px);
    margin-bottom: clamp(24px, 4vw, 36px);
  }

  /* Brand block : titre et paragraphe bien centrés */
  .footer-brand {
    padding-bottom: clamp(8px, 2vw, 16px);
  }
  .footer-brand h3 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 14px;
  }
  .footer-brand p {
    max-width: 420px;
    margin: 0 auto;
    font-size: 13.5px;
    line-height: 1.65;
  }

  /* Colonnes : headers et listes alignés au centre */
  .footer-col h4,
  .footer-col h5 {
    margin: 0 auto 16px;
    font-size: 11.5px;
    letter-spacing: 0.22em;
  }
  .footer-col ul {
    padding: 0;
  }
  .footer-col li {
    margin-bottom: 10px;
  }
  .footer-col a {
    display: inline-block;
    padding: 4px 0;
  }
  .footer-col a:hover {
    padding-left: 0; /* annuler le décalage qui casse le centrage en mobile */
  }

  .footer-logo {
    justify-content: center;
    display: flex;
  }
  .footer-social {
    justify-content: center;
    gap: 14px;
  }

  /* Bottom strip : empilé et centré */
  .footer-bottom {
    justify-content: center;
    text-align: center;
    font-size: 11.5px;
    line-height: 1.6;
  }

  /* TÉMOIGNAGES : citation un peu plus serrée en mobile */
  .testimonial-slide .testimonial-quote {
    padding: 0 8px;
  }
}

/* --------------------------------------------
   4. PETIT TUNING POUR LE HERO H1 EN MOBILE
   Évite que le titre "Confiance Restaurée" ne
   touche les bords sur petits écrans.
   -------------------------------------------- */
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
    max-width: 100%;
    padding: 0 8px;
  }
  .hero-content {
    gap: 4px;
  }
}

/* ============================================
   CRÉDIT DE CONCEPTION (v6.2)
   ============================================ */
.footer-credit {
  font-size: 11.5px;
  color: rgba(247, 247, 247, 0.45);
}
.footer-credit a {
  color: rgba(247, 247, 247, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer-credit a:hover {
  color: var(--rejuva-soft);
}
