@charset "UTF-8";
/*
 * Contient toutes les variables globales :
 * couleurs, polices, tailles, espacements, ombres, etc.
 * Permet d’assurer une cohérence visuelle sur tout le site.
 */
/* VARIABLES GLOBALES */
/* === TYPOGRAPHIES === */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&display=swap");
/*=== OMBRES === */
/* pour les carte blanc */
/* pour les boutons */
/*
 * Contient les styles de base du site.
 * Sert à définir les styles généraux (reset, typographie globale, liens, balises HTML).
 */
/* Styles de base généraux */
body {
  font-family: "Lexend", "sans-serif";
  color: #5B5B5B;
  background-color: #FFF7D9;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: "Lexend", "sans-serif";
  color: #5B5B5B;
}

a {
  color: #5B5B5B;
  text-decoration: none;
}

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

/*
 * Mise en page générale du site
 */
body {
  margin: 0;
  padding: 0;
  font-family: "Lexend", "sans-serif";
  background-color: #FFF7D9;
  color: #5B5B5B;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* === BANDE SUPÉRIEURE : LOGO + BURGER === */
.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  box-sizing: border-box;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

.logo img {
  width: 70px;
  height: auto;
}

/* === IMAGE DE FOND HEADER === */
.hook {
  position: relative;
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* === TEXTE DU HEADER === */
.hook-content h1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 650px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* === BOUTON BURGER === */
.burger {
  position: relative;
  width: 45px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.2s ease;
}
.burger:hover {
  transform: scale(1.1); /* petit zoom au survol */
}

.burger .line {
  width: 100%;
  height: 4px; /* légèrement plus épais pour plus de visibilité */
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation croix */
.burger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active .line:nth-child(2) {
  opacity: 0;
}

.burger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === MENU LATÉRAL === */
.nav-menu {
  position: fixed;
  top: 0;
  right: -260px; /* caché par défaut */
  width: 260px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  transition: right 0.4s ease;
  z-index: 9999;
  box-sizing: border-box;
  overflow-y: auto;
}

.nav-menu.open {
  right: 0; /* visible quand actif */
}

.nav-menu a,
.nav-menu span {
  color: #fff;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-menu a:hover,
.nav-menu span:hover {
  color: #cba96b;
}

/* === OVERLAY === */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9000;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* === FOOTER FINAL === */
.site-footer {
  background-color: #FFF7D9;
  color: #5B5B5B;
  font-family: "Lexend", "sans-serif";
  padding: 1.5rem 2rem 1.5rem;
}

/* Grille principale du footer */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: start;
  max-width: 1150px;
  margin: 0 auto;
  column-gap: 3rem;
  padding-top: 0rem;
  padding-bottom: 0.5rem;
}

/* === Bloc logo === */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.01rem;
  justify-self: start;
  transform: translateY(4px);
}
.footer-logo img {
  width: 65px;
  height: auto;
}
.footer-logo .logo-text-footer {
  font-size: 1.4rem;
  font-weight: 400;
  color: #5B5B5B;
  margin: 0;
  line-height: 1;
}

/* === Titres des colonnes === */
.footer-links h3,
.footer-legal h3,
.footer-socials p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5B5B5B;
}

/* === Liens === */
.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: #5B5B5B;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-legal a:hover {
  color: #B4A37D;
}

/* === Réseaux sociaux === */
.footer-socials {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  transform: translateY(0px);
}
.footer-socials p {
  font-size: 1rem;
  font-weight: 600;
  color: #5B5B5B;
  margin-bottom: 1rem;
}
.footer-socials .social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-socials .social-icons a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-socials .social-icons a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* === Copyright === */
.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(91, 91, 91, 0.8);
  border-top: none;
}

/* Aligne les colonnes “Lien rapide” et “Politique de confidentialité” */
.footer-links,
.footer-legal {
  align-self: start;
}

/*** HEADER EN RESPONSIVE MOBILE ***/
@media (max-width: 768px) {
  /* --- HEADER TOP --- */
  .header-top {
    padding: 1rem 1.4rem;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 25px;
  }
  .site-header .logo img {
    width: 95px;
    height: auto;
  }
  .logo-text {
    font-size: 1.3rem;
    margin-left: -15px;
    color: #fff;
    line-height: 1;
    margin-top: -6px;
  }
  .burger {
    width: 50px;
    height: 35px;
    margin: 0;
    align-self: flex-start;
    margin-top: 10px;
    margin-right: 10px;
  }
  .burger .line {
    height: 3px;
  }
  .hook {
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .hook-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hook-content h1 {
    font-size: 1.25rem;
    max-width: 85%;
    text-align: center;
    line-height: 1.45;
    margin: 0 auto;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 9999;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-menu a,
  .nav-menu span {
    font-size: 1.2rem;
    margin: 1rem 0;
    text-align: center;
    color: #fff;
    width: 100%;
  }
  header.menu-open .logo {
    visibility: hidden;
  }
}
/*** FOOTER — MOBILE (CORRIGÉ & PROPRE) ***/
@media (max-width: 768px) {
  /* Conteneur principal */
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    padding: 1.5rem 1.2rem;
  }
  /* LOGO + TEXTE sur une seule ligne */
  .footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    margin-left: -5px;
    margin-top: -35px;
  }
  .footer-logo img {
    width: 70px;
  }
  .footer-logo .logo-text-footer {
    font-size: 1.5rem;
    margin-left: -0.7rem;
  }
  /* RÉSEAUX SOCIAUX — CENTRÉ */
  .footer-socials {
    order: 2;
    align-self: center;
    text-align: center;
  }
  .footer-socials p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .footer-socials .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-socials .social-icons a img {
    width: 42px;
    height: 42px;
  }
  /* LIEN RAPIDE — GAUCHE */
  .footer-links {
    order: 3;
    width: 100%;
    text-align: left;
  }
  .footer-links h3 {
    font-size: 1.25rem;
  }
  .footer-links a {
    font-size: 1rem;
    line-height: 1.6;
    display: block;
  }
  /* POLITIQUE — GAUCHE */
  .footer-legal {
    order: 4;
    width: 100%;
    text-align: left;
  }
  .footer-legal h3 {
    font-size: 1.25rem;
  }
  .footer-legal a {
    font-size: 1rem;
    line-height: 1.6;
    display: block;
  }
  /* COPYRIGHT — CENTRÉ */
  .footer-bottom {
    order: 5;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
  }
}
/*
 * Contient les composants réutilisables du site :
 * boutons, formulaires, cartes, popups, messages flash, etc.
 */
/* === Bande défilante === */
.notice-band {
  background: #B4A37D;
  margin-top: 70px;
  width: 100%;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(91, 91, 91, 0.12);
  border-bottom: 1px solid rgba(91, 91, 91, 0.12);
  padding: 1rem 0;
}
.notice-band .band {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.notice-band .scrolling-strip {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  will-change: transform;
  padding: 1rem 0;
  transform: translateX(0);
}
.notice-band .band-item {
  color: #483D3D;
  text-decoration: none;
  font-family: "Lexend", "sans-serif";
  font-weight: 380;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.notice-band .band-item:hover {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .notice-band .scrolling-strip {
    transition: none;
  }
}
/* === Séparateur ciseaux === */
.separator {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 50px;
}
.separator span {
  display: inline-block;
  width: clamp(1100px, 92vw, 3000px);
  height: clamp(70px, 6vw, 120px);
  background: url("../images/separateur-LAh8NQd.png") center no-repeat;
  background-size: contain;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .separator {
    margin-top: -40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .separator {
    margin-top: -30px;
    margin-bottom: 30px;
  }
  .separator span {
    width: 95vw;
    height: 60px;
  }
}
/*
 * Styles spécifiques à la page d'accueil
 */
/* === CONTENEUR PRINCIPAL === */
.home-content {
  background-color: #f6e9c5;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}
.home-content h2 {
  font-size: 2rem;
  color: #3a2c1a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.home-content p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4d3b24;
}

/* === Section À propos === */
.home-section.about {
  display: flex;
  justify-content: center;
  padding: 80px 20px 100px;
  margin-bottom: -50px;
}
.home-section.about .about-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(72, 61, 61, 0.35);
  max-width: 1750px;
  width: 100%;
  overflow: hidden;
  margin-top: 0px;
}
.home-section.about .about-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-section.about .about-image img {
  display: block;
  width: 80%;
  height: auto;
  object-fit: cover;
  margin: 55px 0;
  border-radius: 0;
}
.home-section.about .about-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 80px;
  color: #483D3D;
}
.home-section.about .about-text h3 {
  font-size: 2.75rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(72, 61, 61, 0.7);
  margin-bottom: 1rem;
}
.home-section.about .about-text h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.8rem;
  color: #483D3D;
}
.home-section.about .about-text p {
  font-size: 2.5rem;
  line-height: 1.55;
  color: rgba(72, 61, 61, 0.9);
  max-width: 42ch;
}

/* === Section Comment se déroule le rendez-vous === */
.home-section.rendezvous {
  text-align: center;
  color: #483D3D;
  padding: 20px 20px 80px;
  margin-top: -20px;
  margin-bottom: 30px;
}
.home-section.rendezvous h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
  color: #483D3D;
}
.home-section.rendezvous .btn-primary {
  display: inline-block;
  background-color: #F9DA97;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  font-size: 2rem;
  font-weight: 300;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.home-section.rendezvous .btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}
.home-section.rendezvous .btn-primary:hover {
  background-color: #fae3af;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
}
.home-section.rendezvous .btn-primary:hover:before {
  left: 100%;
}
.home-section.rendezvous .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* === Section Prestations (Coupe, couleur, coiffure...) === */
.home-section.prestations {
  display: flex;
  justify-content: center;
  padding: 20px 40px 100px;
  margin-top: -20px;
  margin-bottom: -50px;
}
.home-section.prestations .prestations-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 14px rgba(72, 61, 61, 0.35);
  max-width: 1600px;
  width: 100%;
  overflow: hidden;
  padding: 60px 60px;
}
.home-section.prestations .prestations-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 80px;
  color: #483D3D;
}
.home-section.prestations .prestations-text h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 4.5rem;
  color: #483D3D;
}
.home-section.prestations .prestations-text .btn-primary {
  display: inline-block;
  background-color: #F9DA97;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  font-size: 2rem;
  font-weight: 300;
  padding: 1.6rem 4.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.home-section.prestations .prestations-text .btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}
.home-section.prestations .prestations-text .btn-primary:hover {
  background-color: #fae3af;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
}
.home-section.prestations .prestations-text .btn-primary:hover:before {
  left: 100%;
}
.home-section.prestations .prestations-text .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.home-section.prestations .prestations-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 45px;
}
.home-section.prestations .prestations-image img {
  display: block;
  width: 95%;
  height: auto;
  object-fit: cover;
  margin: 50px 0;
}

/* === Section Localisation === */
.home-section.localisation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 120px;
  background: transparent;
  color: #483D3D;
  /* === MAP === */
  /* === INFO === */
}
.home-section.localisation .map-info-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 130px;
  width: 100%;
  max-width: 1650px;
}
.home-section.localisation .map {
  flex: 1 1 65%;
  display: flex;
  justify-content: flex-end;
}
.home-section.localisation .map #map {
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: none;
  object-fit: cover;
}
.home-section.localisation .info {
  flex: 1 1 35%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* === Horaires === */
}
.home-section.localisation .info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.home-section.localisation .info h3 strong {
  color: #5B5B5B;
  margin-right: 6px;
}
.home-section.localisation .info p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.home-section.localisation .info p img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.home-section.localisation .info p:nth-of-type(3) {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}
.home-section.localisation .info .hours {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
  margin-left: 0;
  width: 80%;
  border-top: none;
}
.home-section.localisation .info .hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: rgba(72, 61, 61, 0.9);
  padding: 0.9rem 0;
  border-bottom: 2px solid #B4A37D;
}
.home-section.localisation .info .hours li strong {
  font-weight: 500;
  color: rgba(72, 61, 61, 0.85);
}
.home-section.localisation .info .hours li:last-child {
  border-bottom: none;
}

/* ============================================
   HOME — RESPONSIVE MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* --------------------------------------------
     [GLOBAL] Réglages généraux du contenu home
     -------------------------------------------- */
  .home-content {
    background-color: #f6e9c5;
    padding: 3rem 1.25rem 4rem;
    text-align: center;
  }
  .home-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .home-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }
  /* --------------------------------------------
     [GLOBAL] Structure commune des sections home
     -------------------------------------------- */
  .home-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  /* === AJOUT : uniformisation des marges === */
  /* SECTION 3 — Prestations → même largeur que section À propos */
  .home-section.prestations .prestations-card {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* SECTION 4 — Localisation → mêmes marges horizontales */
  .home-section.localisation {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* ============================================
     SECTION 1 — À PROPOS
     ============================================ */
  .home-section.about {
    padding: 40px 16px 60px;
    margin-bottom: 0;
  }
  .home-section.about .about-card {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    border-radius: 16px;
  }
  .home-section.about .about-image {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home-section.about .about-image img {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin: 20px auto 0;
    display: block;
    object-fit: cover;
  }
  .home-section.about .about-text {
    flex: 0 0 auto;
    padding: 24px 20px 32px;
    text-align: center;
  }
  .home-section.about .about-text h3 {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.7rem;
  }
  .home-section.about .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .home-section.about .about-text p {
    font-size: 1.1rem;
    line-height: 1.55;
  }
  /* ============================================
     SECTION 2 — Comment se déroule le rendez-vous ?
     ============================================ */
  .home-section.rendezvous {
    padding: 40px 16px 60px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }
  .home-section.rendezvous h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .home-section.rendezvous .btn-primary {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 280px;
    border-radius: 999px;
    margin: 0 auto;
  }
  /* ============================================
     SECTION 3 — Prestations (coupe, couleur…)
     ============================================ */
  .home-section.prestations {
    /* même marge extérieure que la section 1 */
    padding: 30px 16px 90px;
    width: 100%;
    box-sizing: border-box;
  }
  .home-section.prestations .prestations-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* MARGE INTERNE FIXÉE — comme la card de À propos */
    padding: 24px 20px 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 14px rgba(72, 61, 61, 0.35);
  }
  .home-section.prestations .prestations-image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* ← correction propre, sans !important */
  }
  .home-section.prestations .prestations-image img {
    display: block;
    width: 100%;
    max-width: 330px;
    height: auto;
    margin: 0 auto 20px;
    object-fit: cover;
  }
  .home-section.prestations .prestations-text {
    order: 2;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-section.prestations .prestations-text h2 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .home-section.prestations .prestations-text .btn-primary {
    font-size: 1.1rem;
    padding: 0.9rem 1.8rem;
    width: 100%;
    max-width: 240px;
    border-radius: 999px;
    margin-top: 1.4rem;
  }
  .home-section.prestations .prestations-text .btn-primary {
    background-color: #F9DA97;
    color: #483D3D;
  }
  .home-section.prestations .prestations-text .btn-primary::before {
    background: transparent;
    left: 0;
    transform: none;
  }
  /* ============================================
     SECTION 4 — Localisation (map + infos)
     ============================================ */
  .home-section.localisation {
    padding: 0px 16px 50px;
  }
  .home-section.localisation .map-info-container {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }
  .home-section.localisation .info {
    order: 1;
    text-align: left;
  }
  .home-section.localisation .info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .home-section.localisation .info p {
    font-size: 1rem;
    line-height: 1.6;
    gap: 0.6rem;
  }
  .home-section.localisation .info p img {
    width: 22px;
    height: 22px;
  }
  .home-section.localisation .info .hours {
    width: 100%;
    margin-top: 1rem;
  }
  .home-section.localisation .info .hours li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }
  .home-section.localisation .map {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
  .home-section.localisation .map #map {
    width: 100%;
    min-height: 280px;
  }
  /* --------------------------------------------
     SÉPARATEURS ENTRE SECTIONS (mobile)
     -------------------------------------------- */
  .separator {
    margin: 0 0 32px;
  }
  .separator span {
    display: block;
  }
  /* Réduction de l’espace avant la section Localisation uniquement */
  .separator + .home-section.localisation {
    margin-top: 8px;
  }
}
/* ============================================
   FIX — Très petits écrans Android (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .home-section.prestations .prestations-card {
    padding: 24px 14px;
  }
  .home-section.prestations .prestations-image img {
    max-width: 280px;
  }
  .home-section.prestations .prestations-text .btn-primary {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-section.rendezvous .btn-primary {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-section.prestations .prestations-text .btn-primary {
    max-width: 200px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}
/*
 * Styles de la page "Tarifs et prestations"
 */
/* === Bandeau d’intro === */
.intro-banner {
  background: #B4A37D;
  color: #FEFEFE;
  text-align: center;
  padding: 120px 1rem 110px;
  margin-top: 80px;
  margin-bottom: 95px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}
.intro-banner h1 {
  margin: 0 0 1.8rem 0;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.03em;
  color: #FEFEFE;
}
.intro-banner p {
  margin: 0.8rem 0;
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* === Sections tarifs (cartes blanches) === */
.pricing-section {
  display: flex;
  justify-content: center;
  padding: 8px 12px 35px;
  margin-top: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  width: 100%;
  max-width: 1300px;
  background: #FEFEFE;
  border-radius: 20px;
  padding: 38px 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.pricing-card h2 {
  text-align: center;
  color: #5B5B5B;
  margin: 0 0 24px 0;
  font-weight: 600;
  font-size: 1.6rem;
}
.pricing-card h3 {
  text-align: center;
  color: #5B5B5B;
  margin: 26px 0 14px;
  font-weight: 600;
  font-size: 1.35rem;
}
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-card ul li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 1.15rem;
  color: rgba(91, 91, 91, 0.95);
}
.pricing-card ul li .service-name {
  white-space: nowrap;
}
.pricing-card ul li .dots {
  flex: 1 1 auto;
  height: 1px;
  transform: translateY(-1px);
  background-image: radial-gradient(rgba(91, 91, 91, 0.35) 1px, transparent 1px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: left center;
}
.pricing-card ul li .service-price {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* === Bloc double-carte (Coordonnées + Prendre rendez-vous) === */
.after-pricing-rdv {
  display: flex;
  justify-content: center;
  padding: 5px 12px 45px;
  margin-top: 0;
  margin-bottom: 45px;
  /* === Carte Coordonnées === */
  /* === Carte prendre rendez-vous === */
}
.after-pricing-rdv .double-card {
  width: 100%;
  max-width: 1300px;
  background: #FEFEFE;
  border-radius: 20px;
  padding: 50px 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.after-pricing-rdv .card-box {
  background: #FFF7D9;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.after-pricing-rdv .card-box h3 {
  margin: 0 0 14px 0;
  font-weight: 700;
  font-size: 1.3rem;
  color: #5B5B5B;
}
.after-pricing-rdv .card-box h3 strong {
  color: #B4A37D;
  margin-right: 6px;
}
.after-pricing-rdv .card-box.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 80px;
  /* === Phrases d’intro === */
  /* === Liste des horaires === */
}
.after-pricing-rdv .card-box.contact h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5B5B5B;
}
.after-pricing-rdv .card-box.contact h3 strong {
  color: #5B5B5B;
  margin-right: 6px;
}
.after-pricing-rdv .card-box.contact .contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0;
  font-size: 1.1rem;
  color: rgba(91, 91, 91, 0.95);
}
.after-pricing-rdv .card-box.contact .contact-line img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.after-pricing-rdv .card-box.contact .intro-name,
.after-pricing-rdv .card-box.contact .intro-zone {
  line-height: 1.6;
  color: rgba(91, 91, 91, 0.9);
  font-size: 1.1rem;
  margin: 0.6rem 0;
}
.after-pricing-rdv .card-box.contact .intro-name {
  font-weight: 500;
}
.after-pricing-rdv .card-box.contact .intro-zone {
  opacity: 0.95;
}
.after-pricing-rdv .card-box.contact .hours {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  width: 90%;
  border-top: none;
}
.after-pricing-rdv .card-box.contact .hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: rgba(91, 91, 91, 0.9);
  padding: 0.65rem 0;
  border-bottom: 2px solid #B4A37D;
}
.after-pricing-rdv .card-box.contact .hours li strong {
  font-weight: 500;
  color: rgba(91, 91, 91, 0.85);
}
.after-pricing-rdv .card-box.contact .hours li:last-child {
  border-bottom: none;
}
.after-pricing-rdv .card-box.rdv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* === Bouton "Votre rendez-vous" === */
}
.after-pricing-rdv .card-box.rdv h3 {
  line-height: 1.3;
  margin-bottom: 45px;
  font-size: 2rem;
  font-weight: 700;
  color: #5B5B5B;
}
.after-pricing-rdv .card-box.rdv .rdv-text {
  margin: 0 0 40px 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(91, 91, 91, 0.9);
  max-width: 38ch;
}
.after-pricing-rdv .card-box.rdv .btn-primary {
  display: inline-block;
  background-color: #F9DA97;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  font-weight: 300;
  font-size: 1.35rem;
  padding: 1.3rem 3rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.after-pricing-rdv .card-box.rdv .btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}
.after-pricing-rdv .card-box.rdv .btn-primary:hover {
  background-color: #fae3af;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(72, 61, 61, 0.4);
}
.after-pricing-rdv .card-box.rdv .btn-primary:hover:before {
  left: 100%;
}
.after-pricing-rdv .card-box.rdv .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ============================================
   SERVICES — RESPONSIVE MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* --- Bannière d’intro --- */
  .intro-banner {
    padding: 80px 16px 70px;
    margin-top: 70px;
    margin-bottom: 40px;
    text-align: center;
  }
  .intro-banner h1 {
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
  }
  .intro-banner p {
    max-width: 32ch;
    margin: 0.4rem auto;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  /* --- Sections tarifs --- */
  .pricing-section {
    display: flex;
    justify-content: center;
    padding: 0 16px 28px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .pricing-card {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding: 24px 18px 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    /* Espace entre Femmes et Colorations */
  }
  .pricing-card h2 {
    font-size: 1.35rem;
    margin: 0 0 28px 0;
  }
  .pricing-card h2 + ul + h2 {
    margin-top: 36px;
  }
  .pricing-card h3 {
    font-size: 1.25rem;
    margin: 22px 0 10px;
  }
  .pricing-card ul li {
    padding: 0.4rem 0;
    font-size: 1rem;
    gap: 0.6rem;
    /* FIX : autoriser le retour à la ligne */
  }
  .pricing-card ul li .service-name {
    white-space: normal;
  }
  .pricing-card ul li .dots {
    background-size: 5px 1px;
  }
  .pricing-card ul li .service-price {
    font-size: 1rem;
  }
  /* --- Bloc double-carte (Coordonnées + RDV) --- */
  .after-pricing-rdv {
    display: flex;
    justify-content: center;
    padding: 0 16px 40px;
    margin-top: 8px;
    margin-bottom: 15px;
    /* Carte Coordonnées */
    /* Carte Prendre rendez-vous */
  }
  .after-pricing-rdv .double-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 26px 18px 30px;
    border-radius: 18px;
  }
  .after-pricing-rdv .card-box {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .after-pricing-rdv .card-box.contact {
    align-items: flex-start;
    text-align: left;
    padding-left: 18px;
  }
  .after-pricing-rdv .card-box.contact h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }
  .after-pricing-rdv .card-box.contact .intro-name,
  .after-pricing-rdv .card-box.contact .intro-zone {
    font-size: 1rem;
    line-height: 1.5;
  }
  .after-pricing-rdv .card-box.contact .contact-line {
    font-size: 1rem;
    gap: 0.6rem;
  }
  .after-pricing-rdv .card-box.contact .contact-line img {
    width: 20px;
    height: 20px;
  }
  .after-pricing-rdv .card-box.contact .hours {
    width: 100%;
    margin-top: 0.8rem;
  }
  .after-pricing-rdv .card-box.contact .hours li {
    font-size: 0.95rem;
    padding: 0.55rem 0;
  }
  .after-pricing-rdv .card-box.rdv {
    align-items: center;
    text-align: center;
  }
  .after-pricing-rdv .card-box.rdv h3 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    line-height: 1.3;
  }
  .after-pricing-rdv .card-box.rdv .rdv-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.8rem 0;
    max-width: 32ch;
  }
  .after-pricing-rdv .card-box.rdv .btn-primary {
    font-size: 1.1rem;
    padding: 0.95rem 1.6rem;
    width: 100%;
    max-width: 240px;
    border-radius: 999px;
    margin: 0 auto;
  }
}
/* ============================================
   SERVICES — petits écrans (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .intro-banner {
    padding: 70px 14px 60px;
  }
  .intro-banner h1 {
    font-size: 1.8rem;
  }
  .intro-banner p {
    font-size: 0.95rem;
  }
  .pricing-section {
    padding: 0 14px 24px;
  }
  .pricing-card {
    padding: 20px 14px 22px;
    /* espacement */
  }
  .pricing-card h2 {
    font-size: 1.25rem;
  }
  .pricing-card h3 {
    font-size: 1.1rem;
  }
  .pricing-card ul li {
    font-size: 0.95rem;
    gap: 0.4rem;
    /* Retour ligne assuré sur très petits écrans */
  }
  .pricing-card ul li .service-name {
    white-space: normal;
  }
  .pricing-card h2 + ul + h2 {
    margin-top: 42px;
  }
  .after-pricing-rdv {
    padding: 0 14px 32px;
  }
  .after-pricing-rdv .double-card {
    padding: 22px 14px 26px;
    gap: 20px;
  }
  .after-pricing-rdv .card-box {
    padding: 18px 14px;
  }
  .after-pricing-rdv .card-box.rdv h3 {
    font-size: 1.4rem;
  }
  .after-pricing-rdv .card-box.rdv .rdv-text {
    font-size: 0.95rem;
  }
  .after-pricing-rdv .card-box.rdv .btn-primary {
    max-width: 200px;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
  }
}
/*
 * === Page Lieux de déplacements ===
 */
.location-page {
  display: flex;
  justify-content: center;
  padding: 8px 12px 80px;
  margin-top: 0;
  margin-bottom: 60px;
}
.location-page .location-card {
  position: relative;
  width: 100%;
  max-width: 1300px;
  background: #FFFCF4;
  border-radius: 20px;
  padding: 75px 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
  /* Loupe intégrée */
  /* === Message popup === */
}
.location-page .location-card h2 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #5B5B5B;
  margin-bottom: 28px;
  line-height: 1.6;
}
.location-page .location-card p {
  font-size: 1.15rem;
  color: rgba(91, 91, 91, 0.9);
  margin-bottom: 70px;
  line-height: 1.9;
}
.location-page .location-card form {
  position: relative;
  max-width: 960px;
  margin: 0 auto 100px auto;
}
.location-page .location-card input,
.location-page .location-card input[type=text],
.location-page .location-card input[type=search] {
  width: 100%;
  height: 60px;
  padding: 1.1rem 3rem 1.1rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: rgba(180, 163, 125, 0.24);
  font-family: "Lexend", "sans-serif";
  font-size: 1.05rem;
  color: rgba(72, 61, 61, 0.65);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}
.location-page .location-card input::placeholder,
.location-page .location-card input[type=text]::placeholder,
.location-page .location-card input[type=search]::placeholder {
  color: rgba(72, 61, 61, 0.65);
}
.location-page .location-card input:focus,
.location-page .location-card input[type=text]:focus,
.location-page .location-card input[type=search]:focus {
  outline: none;
  background: rgba(187, 172, 138, 0.24);
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}
.location-page .location-card button {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b4a37d;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.location-page .location-card button:hover {
  color: #a18c5d;
}
.location-page .location-card button i {
  pointer-events: none;
}
.location-page .location-card #map {
  width: 889px;
  height: 477px;
  border: none;
  margin: 0 auto;
  margin-top: 25px;
  border-radius: 12px;
}
.location-page .location-card .popup-message {
  position: absolute;
  top: 370px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFCF4;
  color: #483D3D;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 20;
}
.location-page .location-card .popup-message.show {
  opacity: 1;
  transform: translate(-50%, -10px);
}
.location-page .location-card .popup-message.success {
  background-color: rgba(79, 178, 89, 0.85);
  color: #fff;
}
.location-page .location-card .popup-message.error {
  background-color: rgba(185, 78, 78, 0.9);
  color: #fff;
}

/* === Bannière contact PLEIN ÉCRAN, centrée === */
.location-contact-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #B4A37D;
  color: #FFFCF4;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 80px;
  margin-bottom: 120px;
}

/* Bloc interne */
.location-contact-banner h2 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #FFFCF4;
}

.location-contact-banner p {
  font-size: 1.5rem;
  line-height: 1.9;
  margin: 0;
  color: #FFFCF4;
  opacity: 0.95;
}

/* Bloc téléphone */
.location-contact-banner .contact-info {
  margin-top: 15px;
}

.location-contact-banner .contact-info p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #FFFCF4;
}

/* ============================================
   LOCATION — Responsive Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* --- Intro banner (identique à Services) --- */
  .intro-banner {
    padding: 80px 16px 70px;
    margin-top: 70px;
    margin-bottom: 40px;
  }
  .intro-banner h1 {
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
  }
  .intro-banner p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0.4rem auto;
  }
  /* --- Location card (form + map) --- */
  .location-page {
    padding: 0 16px 0px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .location-page .location-card {
    padding: 30px 18px 40px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .location-page .location-card h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .location-page .location-card p {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.55;
  }
  .location-page .location-card form {
    margin-bottom: 180px;
    /* === placeholder mobile === */
  }
  .location-page .location-card form input[type=text],
  .location-page .location-card form input[type=search] {
    height: 52px;
    padding: 0.9rem 3rem 0.9rem 1.2rem;
    font-size: 1rem;
    border-radius: 999px;
  }
  .location-page .location-card form input::placeholder {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .location-page .location-card form button {
    right: 14px;
    font-size: 1.2rem;
  }
  .location-page .location-card #map {
    width: 100%;
    height: 260px;
    margin-top: 20px;
    border-radius: 12px;
  }
  .location-page .location-card .popup-message {
    top: 310px;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    width: 85%;
    max-width: 280px;
  }
  /* --- Contact Banner (mobile ajusté) --- */
  .location-contact-banner {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 70px 16px;
    text-align: center;
    box-sizing: border-box;
  }
  .location-contact-banner h2 {
    font-size: 2rem;
    line-height: 1.35;
    margin-bottom: 1.2rem;
  }
  .location-contact-banner p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 auto;
  }
  .location-contact-banner .contact-info p {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  /* --- Double card --- */
  .after-pricing-rdv {
    padding: 0 16px 30px;
    margin-top: 0;
    margin-bottom: 15px;
    /* Coordonnées */
    /* RDV */
  }
  .after-pricing-rdv .double-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 26px 18px 30px;
    border-radius: 18px;
  }
  .after-pricing-rdv .card-box {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .after-pricing-rdv .card-box.contact {
    text-align: left;
  }
  .after-pricing-rdv .card-box.contact h3 {
    font-size: 1.35rem;
  }
  .after-pricing-rdv .card-box.contact .contact-line {
    font-size: 1rem;
  }
  .after-pricing-rdv .card-box.contact .contact-line img {
    width: 20px;
    height: 20px;
  }
  .after-pricing-rdv .card-box.contact .intro-name,
  .after-pricing-rdv .card-box.contact .intro-zone {
    font-size: 1rem;
  }
  .after-pricing-rdv .card-box.contact .hours li {
    font-size: 0.95rem;
    padding: 0.55rem 0;
  }
  .after-pricing-rdv .card-box.rdv {
    text-align: center;
  }
  .after-pricing-rdv .card-box.rdv h3 {
    font-size: 1.55rem;
    margin-bottom: 1.3rem;
  }
  .after-pricing-rdv .card-box.rdv .rdv-text {
    font-size: 1rem;
    margin-bottom: 1.7rem;
  }
  .after-pricing-rdv .card-box.rdv .btn-primary {
    width: 100%;
    max-width: 240px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-size: 1.1rem;
  }
}
/* ============================================
   LOCATION — Très petits écrans (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .intro-banner {
    padding: 65px 14px 55px;
  }
  .intro-banner h1 {
    font-size: 1.75rem;
  }
  .intro-banner p {
    font-size: 0.9rem;
  }
  .location-page .location-card {
    padding: 24px 14px 32px;
  }
  .location-page .location-card h2 {
    font-size: 1.4rem;
  }
  .location-page .location-card p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .location-page .location-card input[type=text],
  .location-page .location-card input[type=search] {
    height: 48px;
    font-size: 0.95rem;
  }
  .location-page .location-card #map {
    height: 220px;
  }
  .location-contact-banner {
    padding: 55px 14px 55px;
  }
  .location-contact-banner h2 {
    font-size: 1.5rem;
  }
  .location-contact-banner p {
    font-size: 0.9rem;
  }
  .location-contact-banner .contact-info p {
    font-size: 1.05rem;
  }
  .after-pricing-rdv {
    padding: 0 14px 26px;
  }
  .after-pricing-rdv .double-card {
    padding: 20px 14px 24px;
    gap: 18px;
  }
  .after-pricing-rdv .card-box {
    padding: 16px 14px;
  }
  .after-pricing-rdv .card-box.rdv h3 {
    font-size: 1.35rem;
  }
  .after-pricing-rdv .card-box.rdv .rdv-text {
    font-size: 0.9rem;
  }
  .after-pricing-rdv .card-box.rdv .btn-primary {
    max-width: 200px;
    padding: 0.85rem 1.1rem;
    font-size: 1rem;
  }
}
/*
 * === Page Demande de rendez-vous ===
 */
.appointment-page {
  display: flex;
  justify-content: center;
  padding: 15px 12px 100px;
}
.appointment-page .appointment-card {
  background: #FEFEFE;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 70px 80px;
  width: 100%;
  max-width: 1300px;
  text-align: left;
}
.appointment-page .appointment-card form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* === Double colonnes === */
  /* === Champs généraux === */
  /* === Civilité : aligner Monsieur / Madame sur une seule ligne === */
  /* aligne Monsieur / Madame sur une seule ligne */
  /* === Bloc de choix de dates === */
  /* === Matin / Après-midi côte à côte === */
  /* === Bloc adresse et message === */
  /* === Bouton principal === */
}
.appointment-page .appointment-card form .form-columns {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}
.appointment-page .appointment-card form .form-columns.small {
  margin-top: -10px;
  gap: 60px;
}
.appointment-page .appointment-card form .form-columns .form-column {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.appointment-page .appointment-card form label {
  display: block;
  font-weight: 600;
  color: #483D3D;
  font-size: 1rem;
  margin-bottom: 8px;
}
.appointment-page .appointment-card form input,
.appointment-page .appointment-card form select,
.appointment-page .appointment-card form textarea {
  width: 100%;
  background: rgba(102, 102, 102, 0.08);
  border: none;
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1rem;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.appointment-page .appointment-card form input:focus,
.appointment-page .appointment-card form select:focus,
.appointment-page .appointment-card form textarea:focus {
  outline: none;
  background: rgba(102, 102, 102, 0.15);
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}
.appointment-page .appointment-card form input::placeholder,
.appointment-page .appointment-card form select::placeholder,
.appointment-page .appointment-card form textarea::placeholder {
  color: rgba(72, 61, 61, 0.55);
}
.appointment-page .appointment-card form textarea {
  min-height: 130px;
  resize: vertical;
}
.appointment-page .appointment-card form #appointement_civility {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.appointment-page .appointment-card form #appointement_civility input[type=radio] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
}
.appointment-page .appointment-card form #appointement_civility label {
  margin: 0;
  font-weight: 500;
  color: #483D3D;
  display: flex;
  align-items: center;
  gap: 6px;
}
.appointment-page .appointment-card form .form-group.civility {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.appointment-page .appointment-card form .choice-block {
  background: none;
  box-shadow: none;
  border-radius: 15px;
  margin-top: 5px;
  padding: 0;
  /* --- Harmonisation du placeholder du champ date --- */
  /* Checkbox Matin / Après-midi côte à côte */
  /* aligne Matin / Après-midi sur une seule ligne */
}
.appointment-page .appointment-card form .choice-block label {
  font-weight: 600;
  color: #483D3D;
  margin-bottom: 10px;
}
.appointment-page .appointment-card form .choice-block input[type=date] {
  background: rgba(102, 102, 102, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  border: none;
  width: 100%;
  font-family: "Lexend", "sans-serif";
  margin-bottom: 15px;
}
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit,
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit-fields-wrapper,
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit-text,
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit-month-field,
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit-day-field,
.appointment-page .appointment-card form .choice-block input[type=date]::-webkit-datetime-edit-year-field {
  color: rgba(72, 61, 61, 0.55);
  font-family: "Lexend", "sans-serif";
}
.appointment-page .appointment-card form .choice-block input[type=date]:focus::-webkit-datetime-edit {
  color: #483D3D;
}
.appointment-page .appointment-card form .choice-block .form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 25px;
  margin-bottom: 0;
}
.appointment-page .appointment-card form .choice-block .form-check input[type=checkbox] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
}
.appointment-page .appointment-card form .choice-block .form-check label {
  margin: 0;
  font-weight: 500;
  color: #483D3D;
}
.appointment-page .appointment-card form .choice-block .moment-options {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.appointment-page .appointment-card form .choice-block .validate-choice {
  display: inline-block;
  margin-top: 10px;
  background: #F9DA97;
  color: #483D3D;
  font-size: 1rem;
  font-weight: 200;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.appointment-page .appointment-card form .choice-block .validate-choice:hover {
  background: #f8d17f;
  transform: translateY(-2px);
}
.appointment-page .appointment-card form #appointement_moment1,
.appointment-page .appointment-card form #appointement_moment2,
.appointment-page .appointment-card form #appointement_moment3 {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.appointment-page .appointment-card form #appointement_moment1 input[type=checkbox],
.appointment-page .appointment-card form #appointement_moment2 input[type=checkbox],
.appointment-page .appointment-card form #appointement_moment3 input[type=checkbox] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.appointment-page .appointment-card form #appointement_moment1 label,
.appointment-page .appointment-card form #appointement_moment2 label,
.appointment-page .appointment-card form #appointement_moment3 label {
  font-weight: 500;
  color: #483D3D;
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.appointment-page .appointment-card form .address-block,
.appointment-page .appointment-card form .message-block {
  margin-top: 20px;
}
.appointment-page .appointment-card form .submit-container {
  text-align: center;
  margin-top: 20px;
}
.appointment-page .appointment-card form .submit-container .btn-primary {
  background: #F9DA97;
  color: #483D3D;
  font-size: 1.5rem;
  font-weight: 200;
  border: none;
  border-radius: 50px;
  padding: 15px 45px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.appointment-page .appointment-card form .submit-container .btn-primary:hover {
  background: #f8d384;
  transform: translateY(-3px);
}

/* === Harmonisation complète du champ Select2 (simple & multiple) === */
.appointment-page .appointment-card form .select2-container--default {
  /* Ajustement de la flèche */
}
.appointment-page .appointment-card form .select2-container--default .select2-selection--single,
.appointment-page .appointment-card form .select2-container--default .select2-selection--multiple {
  background: rgba(102, 102, 102, 0.08);
  border: none;
  border-radius: 12px;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-size: 1rem;
  color: #483D3D;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.appointment-page .appointment-card form .select2-container--default .select2-selection--single:focus,
.appointment-page .appointment-card form .select2-container--default .select2-selection--multiple:focus {
  background: rgba(102, 102, 102, 0.15);
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}
.appointment-page .appointment-card form .select2-container--default .select2-selection__arrow b {
  border-color: #483D3D transparent transparent transparent;
}

/* Correction de la couleur du texte et du placeholder dans le champ Select2 */
.appointment-page .appointment-card form {
  /* Hover et focus pour cohérence visuelle */
}
.appointment-page .appointment-card form .select2-container--default .select2-selection__rendered {
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
}
.appointment-page .appointment-card form .select2-container--default .select2-selection__placeholder {
  color: rgba(72, 61, 61, 0.55);
}
.appointment-page .appointment-card form .select2-container--default .select2-selection--single:hover,
.appointment-page .appointment-card form .select2-container--default .select2-selection--multiple:hover {
  background: rgba(102, 102, 102, 0.12);
}

/* === Popup de confirmation RDV === */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.popup-overlay .popup-card {
  background: #FEFEFE;
  color: #483D3D;
  border-radius: 20px;
  padding: 45px 70px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  max-width: 520px;
  width: 90%;
  animation: popup-appear 0.5s ease forwards;
}
.popup-overlay .popup-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #B4A37D;
  margin-bottom: 18px;
}
.popup-overlay .popup-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* === Effets visuels quand le choix est validé  === */
.appointment-page .appointment-card form .choice-block {
  /* Champ date validé */
  /* Créneau “Matin / Après-midi” sélectionné */
}
.appointment-page .appointment-card form .choice-block input[type=date].validated {
  border: 2px solid #2e8b57; /* vert doux */
  background-color: #e6ffe6;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.18);
  transition: all 0.25s ease;
}
.appointment-page .appointment-card form .choice-block .form-check.moment-selected label {
  color: #2e8b57;
  font-weight: 600;
}
.appointment-page .appointment-card form .choice-block .form-check.moment-selected input[type=checkbox] {
  accent-color: #2e8b57;
}

/* === Animation d’apparition === */
@keyframes popup-appear {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
/* ============================================
   APPOINTEMENT — Responsive Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .appointment-page {
    /* même logique de marges que les autres pages */
    padding: 15px 16px 25px;
    /* AJOUT DES MARGES */
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .appointment-page .appointment-card {
    padding: 30px 18px 20px;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
  }
  .appointment-page .appointment-card form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* Taille placeholder */
    /* === Civilité en haut, plus compacte === */
    /* === Colonnes → une seule colonne en mobile === */
    /* Labels & champs */
    /* Civilité : radios un peu plus serrés */
    /* Bloc dates */
    /* Bloc adresse / message */
    /* Bouton d’envoi */
  }
  .appointment-page .appointment-card form input,
  .appointment-page .appointment-card form select,
  .appointment-page .appointment-card form textarea,
  .appointment-page .appointment-card form .select2-selection--single,
  .appointment-page .appointment-card form .select2-selection--multiple {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .appointment-page .appointment-card form input::placeholder,
  .appointment-page .appointment-card form textarea::placeholder,
  .appointment-page .appointment-card form select::placeholder,
  .appointment-page .appointment-card form .select2-selection__placeholder {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .appointment-page .appointment-card form .form-group.civility {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .appointment-page .appointment-card form .form-columns {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .appointment-page .appointment-card form .form-columns .form-column {
    width: 100%;
    gap: 20px;
  }
  .appointment-page .appointment-card form .form-columns.small {
    margin-top: 10px;
    gap: 20px;
  }
  .appointment-page .appointment-card form label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .appointment-page .appointment-card form input,
  .appointment-page .appointment-card form select,
  .appointment-page .appointment-card form textarea {
    font-size: 1rem;
    padding: 13px 15px;
    border-radius: 10px;
  }
  .appointment-page .appointment-card form textarea {
    min-height: 110px;
  }
  .appointment-page .appointment-card form #appointement_civility {
    gap: 18px;
  }
  .appointment-page .appointment-card form #appointement_civility input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .appointment-page .appointment-card form #appointement_civility label {
    font-size: 0.95rem;
  }
  .appointment-page .appointment-card form .choice-block {
    margin-top: 10px;
    padding: 0;
  }
  .appointment-page .appointment-card form .choice-block label {
    margin-bottom: 8px;
  }
  .appointment-page .appointment-card form .choice-block input[type=date] {
    padding: 11px 14px;
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .appointment-page .appointment-card form .choice-block .moment-options {
    gap: 18px;
  }
  .appointment-page .appointment-card form .choice-block .form-check {
    gap: 8px;
  }
  .appointment-page .appointment-card form .choice-block .form-check input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
  .appointment-page .appointment-card form .choice-block .form-check label {
    font-size: 0.95rem;
  }
  .appointment-page .appointment-card form .choice-block .validate-choice {
    margin-top: 10px;
    font-size: 0.95rem;
    padding: 8px 20px;
  }
  .appointment-page .appointment-card form .address-block,
  .appointment-page .appointment-card form .message-block {
    margin-top: 12px;
  }
  .appointment-page .appointment-card form .submit-container {
    margin-top: 10px;
    text-align: center;
  }
  .appointment-page .appointment-card form .submit-container .btn-primary {
    font-size: 1.15rem;
    padding: 13px 28px;
    width: 100%;
    max-width: 260px;
    border-radius: 999px;
  }
  /* select2 mobile */
  .appointment-page .appointment-card form .select2-container--default .select2-selection--single,
  .appointment-page .appointment-card form .select2-container--default .select2-selection--multiple {
    min-height: 48px;
    padding-left: 12px;
    font-size: 0.95rem;
  }
  /* popup mobile */
  .popup-overlay .popup-card {
    padding: 28px 20px;
    max-width: 90%;
  }
  .popup-overlay .popup-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .popup-overlay .popup-card p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/* ============================================
   APPOINTEMENT — Très petits écrans (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .appointment-page {
    padding: 30px 14px 70px;
  }
  .appointment-page .appointment-card {
    padding: 24px 14px 32px;
  }
  .appointment-page .appointment-card form {
    gap: 22px;
  }
  .appointment-page .appointment-card form label {
    font-size: 0.9rem;
  }
  .appointment-page .appointment-card form input,
  .appointment-page .appointment-card form select,
  .appointment-page .appointment-card form textarea {
    font-size: 0.95rem;
    padding: 11px 13px;
  }
  .appointment-page .appointment-card form textarea {
    min-height: 100px;
  }
  .appointment-page .appointment-card form .form-columns {
    gap: 18px;
  }
  .appointment-page .appointment-card form .form-columns .form-column {
    gap: 16px;
  }
  .appointment-page .appointment-card form .choice-block input[type=date] {
    font-size: 0.9rem;
  }
  .appointment-page .appointment-card form .choice-block .validate-choice {
    font-size: 0.9rem;
    padding: 7px 16px;
  }
  .appointment-page .appointment-card form .submit-container .btn-primary {
    font-size: 1.05rem;
    padding: 11px 22px;
    max-width: 230px;
  }
  /* Select2 encore un peu plus compact */
  .appointment-page .appointment-card form .select2-container--default .select2-selection--single,
  .appointment-page .appointment-card form .select2-container--default .select2-selection--multiple {
    min-height: 44px;
    font-size: 0.9rem;
  }
  .popup-overlay .popup-card {
    padding: 22px 16px;
  }
  .popup-overlay .popup-card h3 {
    font-size: 1.25rem;
  }
  .popup-overlay .popup-card p {
    font-size: 0.95rem;
  }
}
/*
 * === Page Connexion / Inscription ===
 */
.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #fff8e0; /* même fond doux */
  padding: 80px 12px 100px;
}
.auth-page .auth-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.auth-page .auth-section .auth-card {
  background: #FEFEFE;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 70px 80px;
  width: 100%;
  max-width: 1300px;
  text-align: left;
}

/* === Éléments communs (Connexion / Inscription) === */
.auth-section .auth-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  text-align: center;
}
.auth-section .auth-header .auth-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.auth-section .auth-header .auth-icon img {
  width: 80px;
  height: 80px;
}
.auth-section .auth-header h2 {
  font-size: 2rem;
  color: #483D3D;
  font-weight: 600;
  font-family: "Lexend", "sans-serif";
}
.auth-section .btn-primary {
  background: #F9DA97;
  color: #483D3D;
  font-size: 1.5rem;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  padding: 15px 45px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  align-self: center;
  display: flex;
  justify-content: center;
  margin: 30px auto 0 auto;
}
.auth-section .btn-primary:hover {
  background: #f8d384;
  transform: translateY(-3px);
}

/* === Style de base des champs === */
.auth-form label {
  display: block;
  font-weight: 600;
  color: #483D3D;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.2;
}
.auth-form input,
.auth-form select,
.auth-form textarea {
  background: rgba(102, 102, 102, 0.08);
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 1rem;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  outline: none;
  background: rgba(102, 102, 102, 0.15);
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}
.auth-form input::placeholder,
.auth-form select::placeholder,
.auth-form textarea::placeholder {
  color: rgba(72, 61, 61, 0.55);
}

/* === Section Connexion === */
.login-section .auth-card {
  margin-top: -80px;
  margin-bottom: 20px;
}
.login-section .auth-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* === LIGNE "Se souvenir de moi" + "Mot de passe oublié ?" === */
}
.login-section .auth-form label,
.login-section .auth-form input {
  max-width: 800px;
  width: 100%;
}
.login-section .auth-form label {
  text-align: left;
  margin-bottom: 2px;
}
.login-section .auth-form input[type=email] {
  margin-bottom: 20px;
}
.login-section .auth-form label + input {
  margin-top: 0;
}
.login-section .auth-form .auth-remember {
  display: flex;
  justify-content: space-between; /* ➜ l’alignement gauche/droite */
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-top: 6px;
  /* Bloc gauche : checkbox + texte */
  /* Bloc droite : lien "mot de passe oublié" */
}
.login-section .auth-form .auth-remember .remember-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-section .auth-form .auth-remember .remember-left input[type=checkbox] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
  margin: 0;
}
.login-section .auth-form .auth-remember .remember-left label {
  font-weight: 500;
  color: #483D3D;
  font-size: 1rem;
  margin: 0;
}
.login-section .auth-form .auth-remember .forgot-password {
  font-size: 0.95rem;
  color: #B4A37D;
  text-decoration: underline;
  cursor: pointer;
}
.login-section .auth-form .auth-remember .forgot-password:hover {
  color: #a59163;
}

/* === Section Inscription === */
.register-section .auth-card {
  margin-bottom: -70px;
}
.register-section .auth-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 24px;
  align-items: start;
  justify-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  /* === Civilité === */
  /* === Colonne gauche === */
  /* Ajustements fins des espacements à gauche */
  /* === Colonne droite === */
  /* === Conditions d’utilisation === */
  /* === Bouton centré === */
}
.register-section .auth-form label,
.register-section .auth-form input,
.register-section .auth-form select,
.register-section .auth-form textarea {
  max-width: none;
  width: 100%;
}
.register-section .auth-form label[for=registration_form_civility] {
  grid-column: 1;
  align-self: center;
  margin-bottom: 0;
}
.register-section .auth-form #registration_form_civility {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}
.register-section .auth-form #registration_form_civility input[type=radio] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}
.register-section .auth-form #registration_form_civility label {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #483D3D;
  font-size: 1rem;
  margin: 0 32px 0 0;
}
.register-section .auth-form > div:nth-child(2),
.register-section .auth-form > div:nth-child(3),
.register-section .auth-form > div:nth-child(4),
.register-section .auth-form > div:nth-child(5),
.register-section .auth-form > div:nth-child(6),
.register-section .auth-form > div:nth-child(7) {
  grid-column: 1;
  margin: 0;
}
.register-section .auth-form > div:nth-child(4) {
  margin-bottom: -12px;
}
.register-section .auth-form > div:nth-child(6) {
  margin-top: -50px;
}
.register-section .auth-form > div:nth-child(7) {
  margin-top: -20px;
}
.register-section .auth-form > div:nth-child(8) {
  grid-column: 2;
  grid-row: 2;
}
.register-section .auth-form > div:nth-child(9) {
  grid-column: 2;
  grid-row: 3;
}
.register-section .auth-form > div:nth-child(10) {
  grid-column: 2;
  grid-row: 4;
  position: relative;
}
.register-section .auth-form > div:nth-child(11) {
  grid-column: 2;
  grid-row: 5;
  margin-top: 50px;
}
.register-section .auth-form > div:nth-child(12) {
  grid-column: 2;
  grid-row: 6;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.register-section .auth-form > div:nth-child(12) input[type=checkbox] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
  margin: 0;
  order: 1;
}
.register-section .auth-form > div:nth-child(12) label {
  order: 2;
  font-size: 0.95rem;
  color: #483D3D;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}
.register-section .auth-form .btn-primary {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 30px;
}

/* === Positionnement du texte d’aide du mot de passe === */
#registration_form_plainPassword_first_help,
#registration_form_plainPassword_first_help.help-text {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  margin: 0;
  width: 100%;
  color: rgba(72, 61, 61, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  pointer-events: none;
}

/* === Texte d'aide sous les champs (exemples, consignes, etc.) === */
.auth-form .help-text {
  display: block;
  margin-top: 8px;
  color: rgba(72, 61, 61, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ========================================================= */
/* === RESPONSIVE : Style pour les écrans < 768px (Mobile) === */
/* ========================================================= */
@media (max-width: 768px) {
  .auth-page .auth-section .auth-card {
    padding: 70px 40px !important;
  }
  /* --- 0. Input sizing global --- */
  .auth-form input, .auth-form select, .auth-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
  }
  /* --- 1. Structure générale --- */
  .auth-page {
    padding: 25px 0 20px;
  }
  .auth-section {
    margin-bottom: 30px !important;
  }
  .auth-section .auth-card {
    padding: 70px 40px;
    width: calc(100% - 30px);
    margin: 0 15px;
    border-radius: 18px;
    overflow-x: hidden;
  }
  /* --- 2. Style global des champs --- */
  .auth-form > div {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px 0;
  }
  .auth-form label {
    margin-bottom: 9px;
    display: block !important;
    width: 100% !important;
  }
  /* ========================================================= */
  /* === 3. Formulaire Connexion === */
  /* ========================================================= */
  .login-section .auth-form {
    /* Alignement checkbox — SE SOUVENIR DE MOI */
  }
  .login-section .auth-form > div:last-of-type {
    margin-bottom: 0;
  }
  .login-section .auth-form .auth-remember {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .login-section .auth-form .auth-remember input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
  }
  .login-section .auth-form .auth-remember label {
    margin: 0 !important;
    padding: 0;
    line-height: 1.2;
    width: auto !important;
    display: inline-block;
  }
  /* ========================================================= */
  /* === 4. Alignement Checkbox — INSCRIPTION === */
  /* ========================================================= */
  .register-section .auth-form > div:nth-child(12) {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .register-section .auth-form > div:nth-child(12) input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
  }
  .register-section .auth-form > div:nth-child(12) label {
    margin: 0 !important;
    width: auto !important;
    display: inline-block;
    line-height: 1.3;
  }
  /* ========================================================= */
  /* === 5. Formulaire Inscription complet === */
  /* ========================================================= */
  .register-section .auth-form {
    display: flex;
    flex-direction: column;
    /* Civilité */
    /* Ville → Code Postal */
    /* Code postal → Complément d'adresse */
    /* Conditions */
  }
  .register-section .auth-form #registration_form_civility {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .register-section .auth-form #registration_form_civility > div {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .register-section .auth-form > div:nth-child(5) {
    margin-bottom: 40px !important;
  }
  .register-section .auth-form > div:nth-child(6) {
    margin-bottom: 25px !important;
  }
  .register-section .auth-form .help-text {
    word-wrap: break-word;
    width: 100%;
    display: block;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .register-section .auth-form > div:nth-child(12) {
    margin-bottom: 10px;
    margin-top: -10px;
  }
  .register-section .auth-form > div:last-child {
    margin-bottom: 0;
  }
  /* --- Boutons responsive (Connexion + Inscription) --- */
  .auth-form .btn-primary {
    padding: 10px 50px;
    font-size: 1.1rem;
    max-width: 250px;
    margin: 20px auto;
  }
}
/* ========================================================= */
/* === RESPONSIVE : Petits écrans (< 450px) === */
/* ========================================================= */
@media (max-width: 450px) {
  .auth-section .auth-card {
    padding: 20px 8px;
  }
}
/*
 * === Page Réalisations (Avant / Après) ===
 */
.achievements-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.achievements-gallery .achievement {
  background: #FEFEFE;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 50px 60px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 90px;
}
.achievements-gallery .achievement .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.achievements-gallery .achievement .before-after .before,
.achievements-gallery .achievement .before-after .after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.achievements-gallery .achievement .before-after .before img,
.achievements-gallery .achievement .before-after .after img {
  width: 100%;
  max-width: 450px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.achievements-gallery .achievement .before-after .before img:hover,
.achievements-gallery .achievement .before-after .after img:hover {
  transform: scale(1.03);
}
.achievements-gallery .achievement .before-after .before p,
.achievements-gallery .achievement .before-after .after p {
  margin-top: 12px;
  font-weight: 600;
  color: #483D3D;
  font-size: 1.1rem;
}

.before-after .image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 0;
}
.before-after .image-wrapper img {
  width: 100%;
  max-width: 450px;
  display: block;
}
.before-after .image-wrapper .label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(72, 61, 61, 0.6);
  color: #fff;
  text-transform: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 1px;
}

/* === Bloc “Envie d’un avant / après” — centré et bouton cohérent === */
.you-want-before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 150px;
  /* on réapplique le style du bouton global */
}
.you-want-before-after h2 {
  font-size: 2rem;
  color: #483D3D;
  font-weight: 400;
  margin-bottom: 30px;
}
.you-want-before-after .btn-primary {
  background: #F9DA97;
  color: #483D3D;
  font-size: 1.5rem;
  font-weight: 300;
  border: none;
  border-radius: 50px;
  padding: 15px 45px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.you-want-before-after .btn-primary:hover {
  background: #f8d384;
  transform: translateY(-3px);
}

/* ============================================
   RÉALISATIONS — Responsive Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* === Galerie et card principale === */
  .achievements-gallery {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .achievements-gallery .achievement {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    margin: 20px auto 40px;
    border-radius: 18px;
    box-sizing: border-box;
  }
  /* Avant / Après en colonne */
  .achievements-gallery .achievement .before-after {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
  }
  /* Bloc image */
  .before-after .image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .before-after .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  .before-after .image-wrapper .label {
    width: 100%;
    color: #fff;
    font-size: 0.95rem;
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
  }
  /* === Bloc "Envie d'un avant / après" === */
  .you-want-before-after {
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .you-want-before-after h2 {
    font-size: 1.7rem;
    line-height: 1.35;
    max-width: 30ch;
    margin-bottom: 24px;
  }
  .you-want-before-after .btn-primary {
    width: 100%;
    max-width: 260px;
    padding: 13px 24px;
    font-size: 1.1rem;
    border-radius: 999px;
  }
}
/* ============================================
   RÉALISATIONS — Très petits écrans (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .achievements-gallery .achievement {
    padding: 20px 14px;
    margin: 16px auto 32px;
    border-radius: 16px;
  }
  .before-after .image-wrapper .label {
    font-size: 0.85rem;
    padding: 6px 0;
  }
  .you-want-before-after h2 {
    font-size: 1.45rem;
    margin-bottom: 20px;
  }
  .you-want-before-after .btn-primary {
    max-width: 230px;
    font-size: 1rem;
    padding: 11px 20px;
  }
}
/*
 * === Page Profil utilisateur ===
 */
.profile-page {
  display: flex;
  justify-content: center;
  padding: 30px 12px 100px;
  background-color: #fff8e0;
}
.profile-page .profile-card {
  background: #FEFEFE;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 800px;
  padding: 45px 60px;
  text-align: left;
  margin-top: -30px;
  /* === Champs du formulaire === */
}
.profile-page .profile-card h1 {
  color: #483D3D;
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}
.profile-page .profile-card p {
  color: #5a4d4d;
  margin-bottom: 35px;
  font-weight: 400;
  text-align: center;
}
.profile-page .profile-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* === Civilité === */
  /* === Bouton === */
}
.profile-page .profile-card form label {
  display: block;
  font-weight: 500;
  color: #483D3D;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.profile-page .profile-card form input,
.profile-page .profile-card form select,
.profile-page .profile-card form textarea {
  background: rgba(102, 102, 102, 0.08);
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 400;
  color: #483D3D;
  font-family: "Lexend", "sans-serif";
  width: 90%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.profile-page .profile-card form input:focus,
.profile-page .profile-card form select:focus,
.profile-page .profile-card form textarea:focus {
  outline: none;
  background: rgba(102, 102, 102, 0.15);
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}
.profile-page .profile-card form input::placeholder,
.profile-page .profile-card form select::placeholder,
.profile-page .profile-card form textarea::placeholder {
  color: rgba(72, 61, 61, 0.55);
}
.profile-page .profile-card form label[for=profile_civility] {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.profile-page .profile-card form #profile_civility {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.profile-page .profile-card form #profile_civility input[type=radio] {
  accent-color: #B4A37D;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}
.profile-page .profile-card form #profile_civility label {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #483D3D;
  font-size: 0.95rem;
  margin: 0 32px 0 0;
}
.profile-page .profile-card form .submit-container {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.profile-page .profile-card form .submit-container .btn-primary {
  background: #F9DA97;
  color: #483D3D;
  font-size: 1.3rem;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  padding: 14px 45px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.profile-page .profile-card form .submit-container .btn-primary:hover {
  background: #f8d384;
  transform: translateY(-3px);
}

/* ============================================
   PROFILE — Responsive Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .profile-page {
    padding: 15px 16px 25px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .profile-page .profile-card {
    padding: 30px 18px 20px;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .profile-page .profile-card form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    /* L’ensemble des champs devient full-width */
    /* Placeholder réduit */
    /* Labels */
    /* Civilité */
    /* Bouton — mobile */
  }
  .profile-page .profile-card form input,
  .profile-page .profile-card form select,
  .profile-page .profile-card form textarea {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 13px 15px;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .profile-page .profile-card form input::placeholder,
  .profile-page .profile-card form textarea::placeholder {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .profile-page .profile-card form label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .profile-page .profile-card form #profile_civility {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 10px;
  }
  .profile-page .profile-card form #profile_civility input[type=radio] {
    width: 18px;
    height: 18px;
    accent-color: #B4A37D;
  }
  .profile-page .profile-card form #profile_civility label {
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .profile-page .profile-card form .submit-container {
    text-align: center;
    margin-top: 10px;
  }
  .profile-page .profile-card form .submit-container .btn-primary {
    font-size: 1.15rem;
    padding: 13px 28px;
    width: 100%;
    max-width: 260px;
    border-radius: 999px;
  }
}
/* ============================================
   PROFILE — Très petits écrans (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .profile-page {
    padding: 30px 14px 70px;
  }
  .profile-page .profile-card {
    padding: 24px 14px 28px;
  }
  .profile-page .profile-card form {
    gap: 18px;
    /* Civilité */
    /* Bouton */
  }
  .profile-page .profile-card form label {
    font-size: 0.9rem;
  }
  .profile-page .profile-card form input,
  .profile-page .profile-card form select,
  .profile-page .profile-card form textarea {
    font-size: 0.95rem;
    padding: 11px 13px;
  }
  .profile-page .profile-card form textarea {
    min-height: 100px;
  }
  .profile-page .profile-card form #profile_civility {
    gap: 10px;
  }
  .profile-page .profile-card form #profile_civility label {
    font-size: 0.9rem;
  }
  .profile-page .profile-card form .submit-container .btn-primary {
    font-size: 1.05rem;
    padding: 11px 22px;
    max-width: 230px;
  }
}
/* ============================================
   PAGE MENTIONS LÉGALES — STYLE GLOBAL
============================================ */
.legal-page {
  background-color: #fff8e0; /* même fond doux que les autres pages */
  padding: 80px 20px; /* cohérent avec tes pages internes */
}

.legal-container {
  max-width: 900px; /* largeur confortable pour la lecture */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  color: #483D3D;
  font-family: "Lexend", sans-serif;
}

/* ============================================
   TITRES
============================================ */
.legal-container h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: #483D3D;
  font-weight: 600;
}

.legal-container h2 {
  font-size: 1.6rem;
  margin-top: 45px;
  margin-bottom: 15px;
  color: #B4A37D; /* doré clair */
  font-weight: 600;
}

.legal-container h3 {
  font-size: 1.25rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #5B5B5B;
  font-weight: 600;
}

/* ============================================
   PARAGRAPHES
============================================ */
.legal-container p {
  line-height: 1.65;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* ============================================
   LISTES
============================================ */
.legal-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-container li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ============================================
   LIENS
============================================ */
.legal-container a {
  color: #B4A37D;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.legal-container a:hover {
  border-bottom: 1px solid #B4A37D;
}

/* ============================================
   DATE (Dernière mise à jour)
============================================ */
.legal-container .update {
  margin-top: 40px;
  font-style: italic;
  text-align: right;
  color: #777;
}

/* ============================================
   RESPONSIVE (Mobile)
============================================ */
@media (max-width: 768px) {
  .legal-container {
    padding: 35px 22px;
    border-radius: 14px;
  }
  .legal-container h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .legal-container h2 {
    font-size: 1.35rem;
    margin-top: 35px;
  }
  .legal-container h3 {
    font-size: 1.15rem;
  }
  .legal-container p,
  .legal-container li {
    font-size: 1rem;
  }
}
/* ============================================================
   RESET PASSWORD — Pages : request / reset / check-email
   Card
   ============================================================ */
/* ----- CARD PRINCIPALE ----- */
.reset-container {
  max-width: 520px;
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 22px;
  margin: 110px auto 140px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* ----- TITRE ----- */
.reset-container h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #483D3D;
}

/* ----- TEXTES ----- */
.reset-container p {
  color: #5B5B5B;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ----- CONTENEUR DU LABEL + CHAMP ----- */
.reset-container form div {
  text-align: left;
  margin-bottom: 22px;
}

/* ----- LABEL ----- */
.reset-container form label {
  font-size: 15px;
  color: #483D3D;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ----- CHAMP INPUT ----- */
.reset-container form input {
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  transition: border 0.2s ease;
}
.reset-container form input:focus {
  border-color: #B4A37D;
  box-shadow: 0 0 0 3px rgba(180, 163, 125, 0.25);
}

/* ----- BOUTON ----- */
.btn-primary {
  background: #B4A37D;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #a9956a;
}

/* ============================================
   RESET PASSWORD — Responsive Mobile
   ============================================ */
@media (max-width: 768px) {
  .reset-container {
    max-width: 100%;
    margin: 60px 16px 80px;
    padding: 40px 22px;
    border-radius: 18px;
  }
  .reset-container h1 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .reset-container p {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .reset-container form div {
    margin-bottom: 18px;
  }
  .reset-container form input {
    height: 44px;
    font-size: 15px;
    padding: 10px 12px;
  }
  .btn-primary {
    padding: 12px 18px;
    font-size: 15px;
    margin-top: 10px;
  }
}
/* ============================================
   RESET PASSWORD — Responsive Very Small (380px)
   ============================================ */
@media (max-width: 380px) {
  .reset-container {
    padding: 30px 16px;
    margin: 50px 12px 70px;
    border-radius: 16px;
  }
  .reset-container h1 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .reset-container p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .reset-container form input {
    height: 42px;
    font-size: 14px;
    padding: 8px 10px;
  }
  .btn-primary {
    padding: 11px 16px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=app.output.css.map */
