@charset "UTF-8";
/* ========================================
   STYLE.SCSS - FICHIER PRINCIPAL
======================================== */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fbf7f2;
  color: #3b2f28;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   BASE STYLES
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #2c2623;
  background-color: #fbf8f2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =========================
   ACCESSIBILITÉ
========================= */
/* CONTRASTE ÉLEVÉ */
body.high-contrast,
html.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.high-contrast *,
html.high-contrast * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.high-contrast a,
html.high-contrast a {
  color: #ffff00 !important;
  text-decoration: underline !important;
}

body.high-contrast button,
html.high-contrast button {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #fff !important;
}

body.high-contrast img,
html.high-contrast img {
  opacity: 1 !important;
  filter: contrast(1.2) !important;
}

/* POLICE DYSLEXIQUE */
body.dyslexic-font,
body.dyslexic-font *,
html.dyslexic-font,
html.dyslexic-font * {
  font-family: "Comic Sans MS", "OpenDyslexic", Arial, sans-serif !important;
}

/* TAILLE DE TEXTE - VERSION FONT-SIZE */
html.text-size-110 {
  font-size: 110% !important;
}

html.text-size-110 body,
html.text-size-110 body * {
  font-size: 110% !important;
}

html.text-size-120 {
  font-size: 120% !important;
}

html.text-size-120 body,
html.text-size-120 body * {
  font-size: 120% !important;
}

html.text-size-130 {
  font-size: 130% !important;
}

html.text-size-130 body,
html.text-size-130 body * {
  font-size: 130% !important;
}

html.text-size-140 {
  font-size: 140% !important;
}

html.text-size-140 body,
html.text-size-140 body * {
  font-size: 140% !important;
}

html.text-size-150 {
  font-size: 150% !important;
}

html.text-size-150 body,
html.text-size-150 body * {
  font-size: 150% !important;
}

.accessibility {
  position: relative;
}

.accessibility-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.accessibility.active .accessibility-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@font-face {
  font-family: "Candle";
  src: url("..fonts/Candlescript Demo Version.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TimesItalic";
  src: url("../fonts/Times New Roman Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GlamourLocale";
  src: url("../fonts/Glamour.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  padding: 24px 80px;
}

.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}

.logo img {
  height: 80px;
  display: block;
}

/* ===== NAVIGATION AVEC LIGNE ANIMÉE ===== */
.nav {
  margin-left: 80px;
}

.nav a {
  position: relative;
  margin: 0 18px;
  text-decoration: none;
  color: #3b2f28;
  font-size: 14px;
  padding-bottom: 8px;
  display: inline-block;
  transition: color 0.3s ease;
}

/* LIGNE ANIMÉE */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #7a6a60;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* AU SURVOL : LA LIGNE S'ÉTEND */
.nav a:hover::after {
  width: 100%;
}

/* CHANGEMENT DE COULEUR AU SURVOL */
.nav a:hover {
  color: #7a6a60;
}

/* PAGE ACTIVE : LIGNE TOUJOURS VISIBLE */
.nav a.active::after {
  width: 100%;
  background-color: #7a6a60;
}

.nav a.active {
  color: #7a6a60;
  font-weight: 500;
}

/* ===== ACCESSIBILITÉ ===== */
.accessibility {
  position: relative;
  z-index: 20;
  background-color: #6b5a4d;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.accessibility:hover {
  background-color: #5a4a3f;
  transform: translateY(-2px);
}

.accessibility.active {
  background-color: #5a4a3f;
}

.accessibility-menu {
  position: absolute;
  top: 56px;
  right: 0;
  background-color: #7a6a60;
  border-radius: 20px;
  padding: 18px 22px;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.accessibility-menu button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  margin: 10px 0;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.accessibility-menu button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== ✅ NOUVEAU : BOUTON ADMIN ===== */
.admin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #5a4a3f;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.admin-button svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header {
    padding: 20px 60px;
  }
  .nav {
    margin-left: 60px;
  }
  .admin-button {
    width: 54px;
    height: 54px;
  }
  .admin-button svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px 40px;
  }
  .header-right {
    gap: 16px;
  }
  .nav {
    margin-left: 40px;
  }
  .nav a {
    margin: 0 12px;
    font-size: 13px;
  }
  .accessibility {
    padding: 10px 18px;
    font-size: 11px;
  }
  .admin-button {
    width: 48px;
    height: 48px;
  }
  .admin-button svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 14px 24px;
  }
  .header-right {
    gap: 12px;
  }
  .nav {
    display: none; /* Masquer la navigation sur mobile (à remplacer par un burger menu) */
  }
  .accessibility {
    padding: 8px 16px;
    font-size: 10px;
  }
  .admin-button {
    width: 44px;
    height: 44px;
  }
  .admin-button svg {
    width: 20px;
    height: 20px;
  }
}
.menu-access {
  position: absolute;
  right: 0;
  top: 55px;
  background: #6f5f59;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  padding: 10px;
  min-width: 180px;
}

.menu-access.open {
  display: flex;
}

.menu-access button {
  background: none;
  border: none;
  color: white;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.menu-access button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #4a3f3a;
  color: #fbf7f2;
  padding: 50px 80px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 35px;
}

.footer h4 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.2;
}

.footer p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(251, 247, 242, 0.2);
}

.footer-bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer {
    padding: 45px 60px 25px;
  }
  .footer-container {
    gap: 80px;
    margin-bottom: 30px;
  }
  .footer-logo img {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 40px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 25px;
    text-align: center;
  }
  .footer h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    text-align: center;
  }
  .footer-logo img {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 35px 24px 18px;
  }
  .footer-container {
    gap: 25px;
    margin-bottom: 20px;
  }
  .footer h4 {
    font-size: 22px;
  }
  .footer p {
    font-size: 11px;
  }
  .footer-bottom {
    padding-top: 18px;
  }
  .footer-bottom p {
    font-size: 11px;
  }
  .footer-logo img {
    width: 120px;
  }
}
/* =========================
   BASE ACCUEIL - RESPONSIVE
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
/* ===== VARIABLES ===== */
/* ===== BASE ===== */
body {
  background-color: #fbf8f2;
  color: #3a332e;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .hero {
    padding: 0 60px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 0 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 16px;
    margin-bottom: 20px;
  }
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero-container {
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .hero-container {
    border-radius: 16px;
  }
}
.hero-container img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .hero-container img {
    height: 500px;
  }
}
@media (max-width: 900px) {
  .hero-container img {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .hero-container img {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .hero-container img {
    height: 280px;
  }
}

/* TEXTE SUR L'IMAGE */
.hero-text {
  position: absolute;
  left: 64px;
  bottom: 64px;
  color: #fff;
  max-width: 420px;
}
@media (max-width: 1200px) {
  .hero-text {
    left: 40px;
    bottom: 40px;
    max-width: 380px;
  }
}
@media (max-width: 900px) {
  .hero-text {
    left: 24px;
    bottom: 24px;
    max-width: 340px;
  }
}
@media (max-width: 600px) {
  .hero-text {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 480px) {
  .hero-text {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}
.hero-text h1 {
  margin: 0 0 16px;
  line-height: 1;
  color: #fff;
}
@media (max-width: 600px) {
  .hero-text h1 {
    margin-bottom: 10px;
  }
}
.hero-text .lya {
  font-family: "GlamourLocale";
  font-size: 76px;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .hero-text .lya {
    font-size: 68px;
  }
}
@media (max-width: 900px) {
  .hero-text .lya {
    font-size: 56px;
  }
}
@media (max-width: 600px) {
  .hero-text .lya {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .hero-text .lya {
    font-size: 40px;
  }
}
.hero-text .coach {
  font-family: "CandlescriptDemoVersion";
  font-style: italic;
  font-size: 48px;
  margin-left: 6px;
}
@media (max-width: 1200px) {
  .hero-text .coach {
    font-size: 44px;
  }
}
@media (max-width: 900px) {
  .hero-text .coach {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .hero-text .coach {
    font-size: 32px;
    margin-left: 4px;
  }
}
@media (max-width: 480px) {
  .hero-text .coach {
    font-size: 28px;
  }
}
.hero-text p {
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0;
}
@media (max-width: 900px) {
  .hero-text p {
    font-size: 14px;
    margin: 12px 0;
  }
}
@media (max-width: 600px) {
  .hero-text p {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .hero-text p {
    font-size: 12px;
  }
}
.hero-text .btn-outline {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .hero-text .btn-outline {
    padding: 8px 18px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .hero-text .btn-outline {
    padding: 7px 16px;
    font-size: 12px;
    margin-top: 10px;
  }
}
.hero-text .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =========================
   BIENVENUE
========================= */
.welcome {
  max-width: 1400px;
  margin: 50px auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .welcome {
    padding: 0 60px;
    margin: 60px auto;
  }
}
@media (max-width: 900px) {
  .welcome {
    padding: 0 40px;
    margin: 40px auto;
  }
}
@media (max-width: 600px) {
  .welcome {
    padding: 0 24px;
    margin: 24px auto;
  }
}
@media (max-width: 480px) {
  .welcome {
    padding: 0 16px;
  }
}
.welcome .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  padding: 0;
}
@media (max-width: 768px) {
  .welcome .container {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .welcome .container {
    grid-template-columns: 140px 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .welcome .container {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }
}
.welcome img {
  width: 100%;
  border-radius: 24px;
}
@media (max-width: 600px) {
  .welcome img {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .welcome img {
    border-radius: 16px;
  }
}
.welcome .welcome-text h2 {
  font-family: "GlamourLocale";
  font-size: 64px;
  font-weight: normal;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .welcome .welcome-text h2 {
    font-size: 52px;
  }
}
@media (max-width: 600px) {
  .welcome .welcome-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .welcome .welcome-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
}
.welcome .welcome-text p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .welcome .welcome-text p {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media (max-width: 600px) {
  .welcome .welcome-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .welcome .welcome-text p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.welcome .welcome-text .btn-dark {
  display: inline-block;
  padding: 12px 26px;
  background-color: #4B3935;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .welcome .welcome-text .btn-dark {
    padding: 10px 22px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .welcome .welcome-text .btn-dark {
    padding: 8px 18px;
    font-size: 12px;
  }
}
.welcome .welcome-text .btn-dark:hover {
  background-color: #3d2d29;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 140px 0 180px;
}
@media (max-width: 1200px) {
  .services {
    padding: 100px 0 120px;
  }
}
@media (max-width: 900px) {
  .services {
    padding: 80px 0 100px;
  }
}
@media (max-width: 600px) {
  .services {
    padding: 60px 0 80px;
  }
}
@media (max-width: 480px) {
  .services {
    padding: 40px 0 60px;
  }
}

.services-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .services-container {
    padding: 0 16px;
  }
}

.services-title {
  font-family: "GlamourLocale";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: normal;
  font-size: 70px;
  line-height: 0;
  color: #3b2f28;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .services-title {
    font-size: 60px;
    top: -80px;
  }
}
@media (max-width: 900px) {
  .services-title {
    font-size: 52px;
    top: -70px;
  }
}
@media (max-width: 600px) {
  .services-title {
    font-size: 44px;
    top: -60px;
    position: relative;
    transform: none;
    left: auto;
    line-height: 1;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .services-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.services-title span {
  font-family: "GlamourLocale";
}

.services-block {
  margin: 0 auto;
  max-width: 1000px;
  background-color: #fbf7f2;
  border-radius: 70px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .services-block {
    max-width: 900px;
    border-radius: 50px;
  }
}
@media (max-width: 900px) {
  .services-block {
    max-width: 750px;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .services-block {
    max-width: 650px;
    border-radius: 30px;
  }
}
@media (max-width: 600px) {
  .services-block {
    max-width: 500px;
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  .services-block {
    max-width: 420px;
    border-radius: 20px;
  }
}

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

.service {
  height: 360px;
}
@media (max-width: 1200px) {
  .service {
    height: 340px;
  }
}
@media (max-width: 900px) {
  .service {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .service {
    height: 280px;
  }
}
@media (max-width: 600px) {
  .service {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .service {
    height: 220px;
  }
}
.service.text {
  background-color: #7a6a60;
  color: #fbf7f2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}
@media (max-width: 900px) {
  .service.text {
    padding: 24px 18px;
  }
}
@media (max-width: 768px) {
  .service.text {
    padding: 20px 14px;
  }
}
@media (max-width: 600px) {
  .service.text {
    padding: 16px 10px;
  }
}
@media (max-width: 480px) {
  .service.text {
    padding: 12px 8px;
  }
}
.service.text {
  /* Effet fluide */
}
.service.text::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 247, 242, 0.15);
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.service.text:hover::after {
  top: 0;
}
.service.text h3 {
  font-family: "TimesItalic";
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .service.text h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .service.text h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .service.text h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .service.text h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.service.text p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .service.text p {
    font-size: 11px;
    margin-bottom: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .service.text p {
    font-size: 10px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 600px) {
  .service.text p {
    font-size: 9px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .service.text p {
    font-size: 8px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
}
.service.text a {
  margin: 0 auto;
  padding: 8px 20px;
  border: 1px solid #fbf7f2;
  border-radius: 30px;
  font-size: 12px;
  text-decoration: none;
  color: #fbf7f2;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: 0.3s ease;
}
@media (max-width: 900px) {
  .service.text a {
    padding: 7px 16px;
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .service.text a {
    padding: 6px 14px;
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .service.text a {
    padding: 5px 12px;
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .service.text a {
    padding: 4px 10px;
    font-size: 8px;
  }
}
.service.text a:hover {
  background-color: rgba(251, 247, 242, 0.15);
}
.service.image {
  overflow: hidden;
}
.service.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   POURQUOI ME CHOISIR
========================= */
.why {
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .why {
    padding: 60px 0;
  }
}
@media (max-width: 600px) {
  .why {
    padding: 40px 0;
  }
}

.why-title {
  font-family: "GlamourLocale";
  font-size: 64px;
  margin-bottom: 80px;
  font-weight: normal;
}
@media (max-width: 900px) {
  .why-title {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .why-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

/* ===== CONTENEUR ===== */
.carousel {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
}

/* ===== TRACK ===== */
.carousel-track {
  display: flex;
  gap: 40px;
  /* 🔥 MOBILE : on empile */
}
@media (max-width: 768px) {
  .carousel-track {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

/* ===== SLIDE ===== */
.slide {
  width: 330px;
  height: 500px;
  background-color: #7a6a60;
  border-radius: 40px;
  color: #fbf7f2;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.slide.active {
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .slide {
    width: 300px;
    border-radius: 24px;
  }
}
.slide {
  /* 🔥 MOBILE : pleine largeur */
}
@media (max-width: 768px) {
  .slide {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    transform: none;
  }
}
.slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .slide img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .slide img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .slide img {
    height: 160px;
  }
}

/* ===== TEXTE ===== */
.slide-text {
  padding: 30px;
}
@media (max-width: 900px) {
  .slide-text {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .slide-text {
    padding: 16px;
  }
}
.slide-text h3 {
  font-family: "TimesItalic";
  font-size: 26px;
  margin-bottom: 10px;
}
.slide-text h4 {
  font-size: 16px;
  margin-bottom: 16px;
}
.slide-text p {
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   TÉMOIGNAGES
========================= */
.testimonials {
  padding: 140px 0;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .testimonials {
    padding: 100px 24px;
  }
}
@media (max-width: 900px) {
  .testimonials {
    padding: 80px 24px;
  }
}
@media (max-width: 600px) {
  .testimonials {
    padding: 60px 16px;
  }
}
@media (max-width: 480px) {
  .testimonials {
    padding: 40px 16px;
  }
}

.testimonials-title {
  font-family: "GlamourLocale";
  font-size: 70px;
  margin-bottom: 80px;
  color: #3b2f28;
  text-align: center;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .testimonials-title {
    font-size: 60px;
  }
}
@media (max-width: 900px) {
  .testimonials-title {
    font-size: 52px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .testimonials-title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .testimonials-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 900px) {
  .testimonials-carousel {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .testimonials-carousel {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .testimonials-carousel {
    gap: 10px;
  }
}

.testimonials-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .testimonials-container {
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .testimonials-container {
    max-width: 700px;
  }
}

.testimonial-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  background-color: #5a4d45;
  border-radius: 40px;
  overflow: hidden;
  height: 450px;
}
@media (max-width: 1200px) {
  .testimonial-card {
    height: 400px;
    border-radius: 30px;
  }
}
@media (max-width: 900px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    border-radius: 20px;
  }
}
.testimonial-card.active {
  display: grid;
}

@media (max-width: 900px) {
  .testimonial-image {
    order: 1;
  }
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  height: 450px;
}
@media (max-width: 1200px) {
  .testimonial-image img {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .testimonial-image img {
    height: 250px;
  }
}
@media (max-width: 600px) {
  .testimonial-image img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .testimonial-image img {
    height: 180px;
  }
}

.testimonial-text {
  padding: 50px 45px;
  color: #fbf7f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .testimonial-text {
    padding: 40px 36px;
  }
}
@media (max-width: 900px) {
  .testimonial-text {
    padding: 40px 24px;
    order: 2;
  }
}
@media (max-width: 600px) {
  .testimonial-text {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .testimonial-text {
    padding: 24px 16px;
  }
}
.testimonial-text h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 30px;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .testimonial-text h3 {
    font-size: 28px;
  }
}
@media (max-width: 900px) {
  .testimonial-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .testimonial-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .testimonial-text h3 {
    font-size: 22px;
  }
}
.testimonial-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .testimonial-text p {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .testimonial-text p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .testimonial-text p {
    font-size: 11px;
  }
}

/* FLÈCHES TÉMOIGNAGES */
.arrow-testi {
  background: none;
  border: none;
  font-size: 48px;
  cursor: pointer;
  color: #3b2f28;
  padding: 0;
  transition: 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .arrow-testi {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .arrow-testi {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .arrow-testi {
    font-size: 30px;
  }
}
.arrow-testi:hover {
  color: #5a4d45;
}

/* DOTS TÉMOIGNAGES */
.dots-testi {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 600px) {
  .dots-testi {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .dots-testi {
    margin-top: 24px;
  }
}

.dot-testi {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 600px) {
  .dot-testi {
    width: 7px;
    height: 7px;
    margin: 0 5px;
  }
}
@media (max-width: 480px) {
  .dot-testi {
    width: 6px;
    height: 6px;
    margin: 0 4px;
  }
}
.dot-testi.active {
  background-color: #3b2f28;
}
.dot-testi:hover {
  background-color: rgb(165.75, 165.75, 165.75);
}

/* =========================
   MENU BURGER
========================= */
.burger-menu {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002;
}
.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #3a332e;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   RESPONSIVE NAVIGATION
========================= */
@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }
  /* Menu mobile */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background-color: #fbf8f2;
    color: #000;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1002;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav a {
    padding: 15px 0;
    width: 100%;
    text-align: center;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
  }
  .nav a:last-child {
    border-bottom: none;
  }
  /* =========================
     FOND NOIR SEMI-TRANSPARENT
  ========================== */
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }
  .menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}
/* =========================
   À PROPOS - PAGE RESPONSIVE OPTIMISÉE
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
/* VARIABLES */
/* =========================
   SECTION 1 : INTRODUCTION
========================= */
.about-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media (max-width: 1200px) {
  .about-intro {
    padding: 60px 60px;
  }
}
@media (max-width: 992px) {
  .about-intro {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .about-intro {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .about-intro {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .about-intro {
    padding: 24px 20px;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE PRINCIPAL */
.about-main-title {
  font-family: "GlamourLocale";
  font-size: clamp(32px, 5vw, 70px);
  font-weight: normal;
  text-align: center;
  color: #3a332e;
  margin-top: 0;
  margin-bottom: clamp(40px, 6vw, 80px);
  line-height: 1.2;
}

/* SECTION AVEC IMAGE ET TEXTE */
.about-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.about-section.reverse {
  grid-template-columns: 1fr 380px;
}
@media (max-width: 1200px) {
  .about-section {
    grid-template-columns: 340px 1fr;
    gap: 50px;
  }
  .about-section.reverse {
    grid-template-columns: 1fr 340px;
  }
}
@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }
  .about-section.reverse {
    grid-template-columns: 1fr 280px;
  }
}
@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .about-section.reverse {
    grid-template-columns: 1fr 240px;
  }
}
@media (max-width: 576px) {
  .about-section {
    grid-template-columns: 180px 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .about-section.reverse {
    grid-template-columns: 1fr 180px;
  }
}
@media (max-width: 480px) {
  .about-section {
    grid-template-columns: 140px 1fr;
    gap: 12px;
  }
  .about-section.reverse {
    grid-template-columns: 1fr 140px;
  }
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}
@media (min-width: 769px) {
  .about-image img {
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .about-image img {
    border-radius: 20px;
    max-height: 400px;
  }
}
@media (max-width: 576px) {
  .about-image img {
    border-radius: 16px;
    max-height: 300px;
  }
}

/* CONTENU TEXTE */
@media (min-width: 769px) {
  .about-content {
    padding-top: 10px;
  }
}
.about-content h2 {
  font-family: "Times New Roman";
  font-size: clamp(14px, 2.5vw, 40px);
  font-weight: normal;
  color: #3a332e;
  margin-bottom: clamp(6px, 1.5vw, 20px);
  line-height: 1.15;
}
.about-content p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(8px, 1vw, 15px);
  line-height: 1.3;
  color: #3a332e;
  margin-bottom: 6px;
}
.about-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .about-content p {
    line-height: 1.25;
    margin-bottom: 4px;
  }
}

/* =========================
   SECTION 2 : MES VALEURS
========================= */
.values-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media (max-width: 1200px) {
  .values-section {
    padding: 60px 60px;
  }
}
@media (max-width: 992px) {
  .values-section {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .values-section {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .values-section {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .values-section {
    padding: 24px 20px;
  }
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE */
.values-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: normal;
  text-align: center;
  color: #3a332e;
  margin-bottom: clamp(32px, 5vw, 60px);
  line-height: 1.3;
}

/* CARTE PRINCIPALE */
.values-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background-color: #7a6a60;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .values-card {
    grid-template-columns: 380px 1fr;
    border-radius: 36px;
  }
}
@media (max-width: 992px) {
  .values-card {
    grid-template-columns: 320px 1fr;
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
  .values-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }
}
@media (max-width: 576px) {
  .values-card {
    border-radius: 24px;
  }
}

/* IMAGE */
.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .values-image {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .values-image {
    height: 260px;
  }
}
@media (max-width: 480px) {
  .values-image {
    height: 220px;
  }
}

/* CONTENU VALEURS */
.values-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .values-content {
    padding: 50px 45px;
    gap: 36px;
  }
}
@media (max-width: 992px) {
  .values-content {
    padding: 45px 40px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .values-content {
    padding: 40px 32px;
    gap: 28px;
  }
}
@media (max-width: 576px) {
  .values-content {
    padding: 32px 24px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .values-content {
    padding: 24px 20px;
    gap: 20px;
  }
}

/* ITEM VALEUR */
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .value-item {
    gap: 14px;
  }
}

.value-icon {
  flex-shrink: 0;
  color: #fbf7f2;
}
.value-icon svg {
  width: clamp(20px, 2.5vw, 32px);
  height: clamp(20px, 2.5vw, 32px);
}

.value-text h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: normal;
  color: #fbf7f2;
  margin-bottom: clamp(8px, 1vw, 12px);
  line-height: 1.3;
}
.value-text p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.6;
  color: #fbf7f2;
  opacity: 0.95;
}

/* =========================
   SECTION 3 : MA MÉTHODE UNIQUE
========================= */
.method-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media (max-width: 1200px) {
  .method-section {
    padding: 60px 60px;
  }
}
@media (max-width: 992px) {
  .method-section {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .method-section {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .method-section {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .method-section {
    padding: 24px 20px;
  }
}

.method-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #4B3935;
  border-radius: 50px;
  padding: 60px 70px;
}
@media (max-width: 1200px) {
  .method-container {
    border-radius: 46px;
    padding: 55px 60px;
  }
}
@media (max-width: 992px) {
  .method-container {
    border-radius: 42px;
    padding: 50px 50px;
  }
}
@media (max-width: 768px) {
  .method-container {
    border-radius: 36px;
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .method-container {
    border-radius: 30px;
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .method-container {
    border-radius: 24px;
    padding: 24px 20px;
  }
}

/* TITRE */
.method-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: normal;
  text-align: center;
  color: #fbf7f2;
  margin-bottom: clamp(32px, 4vw, 50px);
  line-height: 1.3;
}

/* GRILLE DES CARTES */
.method-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

/* CARTE MÉTHODE */
.method-card {
  display: flex;
  gap: 28px;
  background-color: #8b7b73;
  border-radius: 30px;
  padding: 40px 45px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .method-card {
    padding: 36px 40px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .method-card {
    padding: 32px 36px;
    gap: 24px;
    border-radius: 28px;
  }
}
@media (max-width: 768px) {
  .method-card {
    padding: 28px 28px;
    gap: 20px;
    border-radius: 24px;
  }
}
@media (max-width: 576px) {
  .method-card {
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    border-radius: 20px;
  }
}

/* NUMÉRO */
.method-number {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: normal;
  color: #fbf7f2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
@media (max-width: 576px) {
  .method-number {
    min-width: auto;
  }
}

/* CONTENU */
.method-content {
  flex: 1;
}
@media (min-width: 577px) {
  .method-content {
    padding-top: 8px;
  }
}
.method-content h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: normal;
  color: #fbf7f2;
  margin-bottom: clamp(8px, 1vw, 12px);
  line-height: 1.3;
}
.method-content p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.6;
  color: #fbf7f2;
  opacity: 0.95;
}

/* =========================
   SECTION 4 : CERTIFICATIONS
========================= */
.certifications-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media (max-width: 1200px) {
  .certifications-section {
    padding: 60px 60px;
  }
}
@media (max-width: 992px) {
  .certifications-section {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .certifications-section {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .certifications-section {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .certifications-section {
    padding: 24px 20px;
  }
}

.certifications-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE */
.certifications-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: normal;
  text-align: center;
  color: #3a332e;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  line-height: 1.3;
}

/* INTRODUCTION */
.certifications-intro {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.7;
  text-align: center;
  color: #3a332e;
  max-width: 1000px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
@media (max-width: 576px) {
  .certifications-intro {
    line-height: 1.6;
  }
}

/* GRILLE DES BADGES */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* BADGE CERTIFICATION */
.certification-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(14px, 1.5vw, 18px) clamp(20px, 2.5vw, 28px);
  border: 1.5px solid #4B3935;
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.certification-badge svg {
  flex-shrink: 0;
  color: #4B3935;
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
}
.certification-badge span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #3a332e;
  font-weight: 400;
}
.certification-badge:hover {
  background-color: #fbf7f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .certification-badge {
    gap: 10px;
  }
}

/* =========================
   SECTION 5 : CTA FINALE
========================= */
.cta-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media (max-width: 1200px) {
  .cta-section {
    padding: 60px 60px;
  }
}
@media (max-width: 992px) {
  .cta-section {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 24px 20px;
  }
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #4B3935;
  border-radius: 50px;
  padding: 80px 60px;
  text-align: center;
}
@media (max-width: 1200px) {
  .cta-container {
    border-radius: 46px;
    padding: 70px 50px;
  }
}
@media (max-width: 992px) {
  .cta-container {
    border-radius: 42px;
    padding: 60px 45px;
  }
}
@media (max-width: 768px) {
  .cta-container {
    border-radius: 36px;
    padding: 50px 32px;
  }
}
@media (max-width: 576px) {
  .cta-container {
    border-radius: 30px;
    padding: 40px 24px;
  }
}
@media (max-width: 480px) {
  .cta-container {
    border-radius: 24px;
    padding: 32px 20px;
  }
}

/* TITRE */
.cta-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: normal;
  color: #fbf7f2;
  margin-bottom: clamp(16px, 2vw, 20px);
  line-height: 1.3;
}

/* SOUS-TITRE */
.cta-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
  color: #fbf7f2;
  margin-bottom: clamp(28px, 3vw, 40px);
}

/* BOUTON */
.cta-button {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: #fbf7f2;
  background-color: transparent;
  border: 1.5px solid #fbf7f2;
  border-radius: 50px;
  padding: clamp(11px, 1.2vw, 14px) clamp(28px, 3vw, 36px);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-button:hover {
  background-color: rgba(251, 247, 242, 0.1);
  transform: translateY(-2px);
}
.cta-button:active {
  transform: translateY(0);
}

/* =========================
   PAGE SERVICES - RESPONSIVE OPTIMISÉ
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
/* VARIABLES */
/* =========================
   BANNIÈRE SERVICES
========================= */
.services-banner {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .services-banner {
    padding: 0 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .services-banner {
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .services-banner {
    padding: 0 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .services-banner {
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .services-banner {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.services-banner-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-banner-container {
    border-radius: 28px;
  }
}
@media (max-width: 576px) {
  .services-banner-container {
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  .services-banner-container {
    border-radius: 20px;
  }
}
.services-banner-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .services-banner-container img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .services-banner-container img {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .services-banner-container img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .services-banner-container img {
    height: 200px;
  }
}

/* TEXTE SUR L'IMAGE */
.services-banner-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.services-banner-text h1 {
  font-family: "GlamourLocale";
  font-size: 80px;
  font-weight: normal;
  margin: 0 0 50px;
  line-height: 1.1;
  color: #fff;
}
@media (max-width: 1200px) {
  .services-banner-text h1 {
    font-size: 70px;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .services-banner-text h1 {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .services-banner-text h1 {
    font-size: 50px;
    margin-bottom: 28px;
  }
}
@media (max-width: 576px) {
  .services-banner-text h1 {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .services-banner-text h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}

/* SOUS-TITRES */
.services-banner-links {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 992px) {
  .services-banner-links {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .services-banner-links {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .services-banner-links {
    flex-direction: column;
    gap: 16px;
  }
}
.services-banner-links a {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 38px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
  .services-banner-links a {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .services-banner-links a {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .services-banner-links a {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .services-banner-links a {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .services-banner-links a {
    font-size: 20px;
  }
}
.services-banner-links a:hover {
  opacity: 0.7;
}

/* =========================
   SECTIONS YIN YOGA / PILATES / FITNESS
========================= */
.yin-yoga-section,
.pilates-section,
.fitness-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .yin-yoga-section,
  .pilates-section,
  .fitness-section {
    padding: 0 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .yin-yoga-section,
  .pilates-section,
  .fitness-section {
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .yin-yoga-section,
  .pilates-section,
  .fitness-section {
    padding: 0 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .yin-yoga-section,
  .pilates-section,
  .fitness-section {
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .yin-yoga-section,
  .pilates-section,
  .fitness-section {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.yin-yoga-container,
.pilates-container,
.fitness-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE DE SECTION */
.yin-yoga-header,
.pilates-header,
.fitness-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .yin-yoga-header,
  .pilates-header,
  .fitness-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .yin-yoga-header,
  .pilates-header,
  .fitness-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .yin-yoga-header,
  .pilates-header,
  .fitness-header {
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .yin-yoga-header,
  .pilates-header,
  .fitness-header {
    margin-bottom: 24px;
  }
}
.yin-yoga-header h2,
.pilates-header h2,
.fitness-header h2 {
  font-family: "GlamourLocale";
  font-size: 70px;
  font-weight: normal;
  color: #3a332e;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .yin-yoga-header h2,
  .pilates-header h2,
  .fitness-header h2 {
    font-size: 64px;
  }
}
@media (max-width: 992px) {
  .yin-yoga-header h2,
  .pilates-header h2,
  .fitness-header h2 {
    font-size: 56px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .yin-yoga-header h2,
  .pilates-header h2,
  .fitness-header h2 {
    font-size: 48px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .yin-yoga-header h2,
  .pilates-header h2,
  .fitness-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .yin-yoga-header h2,
  .pilates-header h2,
  .fitness-header h2 {
    font-size: 34px;
  }
}
.yin-yoga-header p,
.pilates-header p,
.fitness-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #3a332e;
  margin: 0;
}
@media (max-width: 768px) {
  .yin-yoga-header p,
  .pilates-header p,
  .fitness-header p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .yin-yoga-header p,
  .pilates-header p,
  .fitness-header p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .yin-yoga-header p,
  .pilates-header p,
  .fitness-header p {
    font-size: 11px;
  }
}

/* CARTES */
.yin-yoga-cards,
.pilates-cards,
.fitness-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  .yin-yoga-cards,
  .pilates-cards,
  .fitness-cards {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .yin-yoga-cards,
  .pilates-cards,
  .fitness-cards {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .yin-yoga-cards,
  .pilates-cards,
  .fitness-cards {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .yin-yoga-cards,
  .pilates-cards,
  .fitness-cards {
    gap: 12px;
  }
}

.yin-card,
.pilates-card,
.fitness-card {
  background-color: #7a6a60;
  border-radius: 40px;
  padding: 50px;
  color: #fbf7f2;
}
@media (max-width: 1200px) {
  .yin-card,
  .pilates-card,
  .fitness-card {
    border-radius: 36px;
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .yin-card,
  .pilates-card,
  .fitness-card {
    border-radius: 30px;
    padding: 28px;
  }
}
@media (max-width: 768px) {
  .yin-card,
  .pilates-card,
  .fitness-card {
    border-radius: 24px;
    padding: 16px;
  }
}
@media (max-width: 576px) {
  .yin-card,
  .pilates-card,
  .fitness-card {
    border-radius: 20px;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .yin-card,
  .pilates-card,
  .fitness-card {
    border-radius: 16px;
    padding: 10px;
  }
}

/* LAYOUT CARTE : IMAGE + HEADER EN HAUT */
.yin-card-top,
.pilates-card-top,
.fitness-card-top {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .yin-card-top,
  .pilates-card-top,
  .fitness-card-top {
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .yin-card-top,
  .pilates-card-top,
  .fitness-card-top {
    grid-template-columns: 340px 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .yin-card-top,
  .pilates-card-top,
  .fitness-card-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .yin-card-top,
  .pilates-card-top,
  .fitness-card-top {
    gap: 12px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .yin-card-top,
  .pilates-card-top,
  .fitness-card-top {
    gap: 10px;
    margin-bottom: 12px;
  }
}

/* IMAGE */
.yin-card-image,
.pilates-card-image,
.fitness-card-image {
  width: 100%;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .yin-card-image,
  .pilates-card-image,
  .fitness-card-image {
    height: 300px;
    border-radius: 24px;
  }
}
@media (max-width: 992px) {
  .yin-card-image,
  .pilates-card-image,
  .fitness-card-image {
    height: 260px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .yin-card-image,
  .pilates-card-image,
  .fitness-card-image {
    height: 200px;
    border-radius: 18px;
  }
}
@media (max-width: 576px) {
  .yin-card-image,
  .pilates-card-image,
  .fitness-card-image {
    height: 160px;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .yin-card-image,
  .pilates-card-image,
  .fitness-card-image {
    height: 140px;
    border-radius: 14px;
  }
}
.yin-card-image img,
.pilates-card-image img,
.fitness-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HEADER DE CARTE */
.yin-card-header,
.pilates-card-header,
.fitness-card-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .yin-card-header,
  .pilates-card-header,
  .fitness-card-header {
    height: auto;
  }
}
.yin-card-header h3,
.pilates-card-header h3,
.fitness-card-header h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 42px;
  font-weight: normal;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .yin-card-header h3,
  .pilates-card-header h3,
  .fitness-card-header h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .yin-card-header h3,
  .pilates-card-header h3,
  .fitness-card-header h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .yin-card-header h3,
  .pilates-card-header h3,
  .fitness-card-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .yin-card-header h3,
  .pilates-card-header h3,
  .fitness-card-header h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .yin-card-header h3,
  .pilates-card-header h3,
  .fitness-card-header h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

/* BADGES */
.yin-card-badges,
.pilates-card-badges,
.fitness-card-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .yin-card-badges,
  .pilates-card-badges,
  .fitness-card-badges {
    gap: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .yin-card-badges,
  .pilates-card-badges,
  .fitness-card-badges {
    gap: 8px;
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .yin-card-badges,
  .pilates-card-badges,
  .fitness-card-badges {
    gap: 6px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .yin-card-badges,
  .pilates-card-badges,
  .fitness-card-badges {
    gap: 5px;
    margin-bottom: 8px;
  }
}

.badge {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  border: 1.5px solid #fbf7f2;
  border-radius: 25px;
  padding: 8px 20px;
}
@media (max-width: 992px) {
  .badge {
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .badge {
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .badge {
    font-size: 9px;
    padding: 4px 10px;
    border-radius: 14px;
  }
}
@media (max-width: 480px) {
  .badge {
    font-size: 8px;
    padding: 3px 8px;
    border-radius: 12px;
  }
}

/* DESCRIPTION */
.yin-card-description,
.pilates-card-description,
.fitness-card-description {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .yin-card-description,
  .pilates-card-description,
  .fitness-card-description {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .yin-card-description,
  .pilates-card-description,
  .fitness-card-description {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .yin-card-description,
  .pilates-card-description,
  .fitness-card-description {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .yin-card-description,
  .pilates-card-description,
  .fitness-card-description {
    font-size: 9px;
    margin-bottom: 6px;
  }
}

.pilates-card-option,
.fitness-card-option {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .pilates-card-option,
  .fitness-card-option {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pilates-card-option,
  .fitness-card-option {
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  .pilates-card-option,
  .fitness-card-option {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .pilates-card-option,
  .fitness-card-option {
    font-size: 8px;
  }
}

/* SECTIONS BIENFAITS & SÉQUENCE EN BAS */
.yin-card-details,
.pilates-card-details,
.fitness-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1200px) {
  .yin-card-details,
  .pilates-card-details,
  .fitness-card-details {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .yin-card-details,
  .pilates-card-details,
  .fitness-card-details {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .yin-card-details,
  .pilates-card-details,
  .fitness-card-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 576px) {
  .yin-card-details,
  .pilates-card-details,
  .fitness-card-details {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .yin-card-details,
  .pilates-card-details,
  .fitness-card-details {
    gap: 8px;
  }
}

.yin-detail-section h4,
.pilates-detail-section h4,
.fitness-detail-section h4 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (max-width: 1200px) {
  .yin-detail-section h4,
  .pilates-detail-section h4,
  .fitness-detail-section h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .yin-detail-section h4,
  .pilates-detail-section h4,
  .fitness-detail-section h4 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .yin-detail-section h4,
  .pilates-detail-section h4,
  .fitness-detail-section h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .yin-detail-section h4,
  .pilates-detail-section h4,
  .fitness-detail-section h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .yin-detail-section h4,
  .pilates-detail-section h4,
  .fitness-detail-section h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.yin-detail-section ul,
.pilates-detail-section ul,
.fitness-detail-section ul {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.95;
}
@media (max-width: 992px) {
  .yin-detail-section ul,
  .pilates-detail-section ul,
  .fitness-detail-section ul {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .yin-detail-section ul,
  .pilates-detail-section ul,
  .fitness-detail-section ul {
    font-size: 11px;
    line-height: 1.3;
  }
}
@media (max-width: 576px) {
  .yin-detail-section ul,
  .pilates-detail-section ul,
  .fitness-detail-section ul {
    font-size: 10px;
    line-height: 1.25;
  }
}
@media (max-width: 480px) {
  .yin-detail-section ul,
  .pilates-detail-section ul,
  .fitness-detail-section ul {
    font-size: 9px;
    line-height: 1.2;
  }
}
.yin-detail-section ul li,
.pilates-detail-section ul li,
.fitness-detail-section ul li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .yin-detail-section ul li,
  .pilates-detail-section ul li,
  .fitness-detail-section ul li {
    margin-bottom: 4px;
  }
}
@media (max-width: 576px) {
  .yin-detail-section ul li,
  .pilates-detail-section ul li,
  .fitness-detail-section ul li {
    margin-bottom: 3px;
  }
}
@media (max-width: 480px) {
  .yin-detail-section ul li,
  .pilates-detail-section ul li,
  .fitness-detail-section ul li {
    margin-bottom: 2px;
  }
}

/* =========================
   INFORMATIONS FITNESS
========================= */
.fitness-info-box {
  background-color: #f5f0e8;
  border-left: 4px solid #7a6a60;
  border-radius: 12px;
  padding: 40px 50px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .fitness-info-box {
    padding: 36px 45px;
    margin-top: 50px;
  }
}
@media (max-width: 992px) {
  .fitness-info-box {
    padding: 32px 40px;
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  .fitness-info-box {
    padding: 28px 32px;
    margin-top: 40px;
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .fitness-info-box {
    padding: 24px 24px;
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .fitness-info-box {
    padding: 20px 20px;
    margin-top: 24px;
    border-radius: 8px;
  }
}
.fitness-info-box h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 36px;
  color: #3a332e;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .fitness-info-box h3 {
    font-size: 32px;
    margin-bottom: 26px;
  }
}
@media (max-width: 992px) {
  .fitness-info-box h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .fitness-info-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .fitness-info-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .fitness-info-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

.info-section {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #3a332e;
  margin-bottom: 24px;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .info-section {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .info-section {
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .info-section {
    font-size: 11px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .info-section {
    font-size: 10px;
    margin-bottom: 14px;
    line-height: 1.4;
  }
}
.info-section:last-child {
  margin-bottom: 0;
}
.info-section strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .info-section strong {
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .info-section strong {
    margin-bottom: 5px;
  }
}
.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-section ul li {
  margin-bottom: 6px;
  padding-left: 0;
}
@media (max-width: 768px) {
  .info-section ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .info-section ul li {
    margin-bottom: 4px;
  }
}

.services-banner-links a {
  border: 2px solid #fff !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}
@media (max-width: 992px) {
  .services-banner-links a {
    padding: 6px 20px !important;
  }
}
@media (max-width: 768px) {
  .services-banner-links a {
    padding: 5px 16px !important;
  }
}
@media (max-width: 576px) {
  .services-banner-links a {
    padding: 4px 14px !important;
  }
}
@media (max-width: 480px) {
  .services-banner-links a {
    padding: 3px 12px !important;
  }
}
.services-banner-links a:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

/* =========================
   PAGE ACTUALITÉS - RESPONSIVE OPTIMISÉ
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
/* VARIABLES */
/* =========================
   BANNIÈRE ACTUALITÉS
========================= */
.news-hero {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .news-hero {
    padding: 0 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .news-hero {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .news-hero {
    padding: 0 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .news-hero {
    padding: 0 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .news-hero {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}

.news-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  height: 280px;
}
@media (max-width: 992px) {
  .news-hero-container {
    height: 240px;
    border-radius: 28px;
  }
}
@media (max-width: 768px) {
  .news-hero-container {
    height: 200px;
    border-radius: 24px;
  }
}
@media (max-width: 576px) {
  .news-hero-container {
    height: 180px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .news-hero-container {
    height: 160px;
    border-radius: 18px;
  }
}
.news-hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-hero-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  padding: 0 80px;
}
@media (max-width: 992px) {
  .news-hero-text {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .news-hero-text {
    padding: 0 32px;
  }
}
@media (max-width: 576px) {
  .news-hero-text {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .news-hero-text {
    padding: 0 20px;
  }
}
.news-hero-text h1 {
  color: #fff;
  font-family: "GlamourLocale";
  font-size: 70px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .news-hero-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .news-hero-text h1 {
    font-size: 50px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .news-hero-text h1 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .news-hero-text h1 {
    font-size: 32px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .news-hero-text h1 {
    font-size: 28px;
  }
}
.news-hero-text p {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .news-hero-text p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news-hero-text p {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .news-hero-text p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .news-hero-text p {
    font-size: 11px;
  }
}

/* =========================
   SECTION À LA UNE
========================= */
.featured-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .featured-section {
    padding: 0 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .featured-section {
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .featured-section {
    padding: 0 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .featured-section {
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .featured-section {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 38px;
  font-weight: normal;
  color: #3a332e;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .featured-title {
    font-size: 34px;
    margin-bottom: 28px;
  }
}
@media (max-width: 992px) {
  .featured-title {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .featured-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .featured-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .featured-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

/* ARTICLE PHARE */
.featured-article {
  background-color: #6b5c50;
  border-radius: 32px;
  padding: 48px 56px;
  color: #fff;
  position: relative;
}
@media (max-width: 1200px) {
  .featured-article {
    padding: 42px 48px;
    border-radius: 30px;
  }
}
@media (max-width: 992px) {
  .featured-article {
    padding: 36px 40px;
    border-radius: 28px;
  }
}
@media (max-width: 768px) {
  .featured-article {
    padding: 28px 32px;
    border-radius: 24px;
  }
}
@media (max-width: 576px) {
  .featured-article {
    padding: 20px 24px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .featured-article {
    padding: 16px 20px;
    border-radius: 18px;
  }
}

.article-badge {
  display: inline-block;
  background-color: #e8ddd6;
  color: #3a332e;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .article-badge {
    font-size: 9px;
    padding: 5px 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .article-badge {
    font-size: 8px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .article-badge {
    padding: 4px 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .article-badge {
    font-size: 7px;
    padding: 3px 10px;
    margin-bottom: 8px;
  }
}

.article-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 34px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .article-title {
    font-size: 30px;
    margin-bottom: 14px;
  }
}
@media (max-width: 992px) {
  .article-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .article-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .article-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .article-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

.article-meta {
  display: flex;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.9;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .article-meta {
    font-size: 12px;
    gap: 12px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .article-meta {
    font-size: 11px;
    gap: 10px;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .article-meta {
    font-size: 10px;
    gap: 8px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .article-meta {
    font-size: 9px;
    margin-bottom: 8px;
  }
}
.article-meta span {
  display: flex;
  align-items: center;
}

.article-excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
}
@media (max-width: 992px) {
  .article-excerpt {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .article-excerpt {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .article-excerpt {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 14px;
  }
}
@media (max-width: 480px) {
  .article-excerpt {
    font-size: 10px;
    margin-bottom: 12px;
  }
}

.article-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 10px 26px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .article-link {
    font-size: 12px;
    padding: 9px 22px;
  }
}
@media (max-width: 768px) {
  .article-link {
    font-size: 11px;
    padding: 8px 20px;
  }
}
@media (max-width: 576px) {
  .article-link {
    font-size: 10px;
    padding: 7px 18px;
  }
}
@media (max-width: 480px) {
  .article-link {
    font-size: 9px;
    padding: 6px 16px;
  }
}
.article-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =========================
   DERNIERS ARTICLES
========================= */
.articles-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .articles-section {
    padding: 0 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .articles-section {
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .articles-section {
    padding: 0 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .articles-section {
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .articles-section {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.articles-container {
  max-width: 1000px;
  margin: 0 auto;
}

.articles-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 38px;
  font-weight: normal;
  color: #3a332e;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1200px) {
  .articles-title {
    font-size: 34px;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .articles-title {
    font-size: 30px;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .articles-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .articles-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .articles-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* GRILLE D'ARTICLES */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .articles-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 576px) {
  .articles-grid {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .articles-grid {
    gap: 10px;
  }
}

/* CARTE ARTICLE */
.article-card {
  background-color: #766661;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .article-card {
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .article-card {
    border-radius: 22px;
  }
}
@media (max-width: 576px) {
  .article-card {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .article-card {
    border-radius: 18px;
  }
}

.article-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .article-image {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .article-image {
    height: 150px;
  }
}
@media (max-width: 576px) {
  .article-image {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .article-image {
    height: 120px;
  }
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.article-card:hover .article-image img {
  opacity: 0.7;
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 992px) {
  .article-content {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .article-content {
    padding: 14px;
  }
}
@media (max-width: 576px) {
  .article-content {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .article-content {
    padding: 10px;
  }
}

.article-category {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}
@media (max-width: 992px) {
  .article-category {
    font-size: 9px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .article-category {
    font-size: 8px;
    padding: 4px 10px;
  }
}
@media (max-width: 576px) {
  .article-category {
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .article-category {
    font-size: 7px;
    padding: 3px 8px;
  }
}

.article-card-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .article-card-title {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .article-card-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .article-card-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .article-card-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .article-card-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.article-info {
  display: flex;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  margin-bottom: 10px;
  opacity: 0.9;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .article-info {
    font-size: 10px;
    gap: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .article-info {
    font-size: 9px;
    gap: 6px;
  }
}
@media (max-width: 576px) {
  .article-info {
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .article-info {
    font-size: 8px;
    margin-bottom: 5px;
  }
}
.article-info span:not(:first-child):before {
  content: "•";
  margin-right: 10px;
}
@media (max-width: 992px) {
  .article-info span:not(:first-child):before {
    margin-right: 8px;
  }
}
@media (max-width: 768px) {
  .article-info span:not(:first-child):before {
    margin-right: 6px;
  }
}

.article-description {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0.95;
  flex: 1;
}
@media (max-width: 992px) {
  .article-description {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .article-description {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .article-description {
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .article-description {
    font-size: 8px;
    margin-bottom: 6px;
  }
}

.article-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 7px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  align-self: center;
  margin-top: auto;
}
@media (max-width: 992px) {
  .article-btn {
    font-size: 11px;
    padding: 6px 16px;
  }
}
@media (max-width: 768px) {
  .article-btn {
    font-size: 10px;
    padding: 6px 14px;
  }
}
@media (max-width: 576px) {
  .article-btn {
    font-size: 9px;
    padding: 5px 12px;
  }
}
@media (max-width: 480px) {
  .article-btn {
    font-size: 8px;
    padding: 4px 10px;
  }
}
.article-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =========================
   SECTION ARTICLES POPULAIRES
========================= */
.popular-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .popular-section {
    padding: 0 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .popular-section {
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .popular-section {
    padding: 0 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .popular-section {
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .popular-section {
    padding: 0 20px;
    margin-bottom: 24px;
  }
}

.popular-container {
  max-width: 1000px;
  margin: 0 auto;
}

.popular-card {
  background-color: #4B3935;
  border-radius: 28px;
  padding: 50px 60px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .popular-card {
    padding: 45px 50px;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .popular-card {
    padding: 36px 40px;
    margin-bottom: 28px;
    border-radius: 26px;
  }
}
@media (max-width: 768px) {
  .popular-card {
    padding: 28px 32px;
    margin-bottom: 24px;
    border-radius: 24px;
  }
}
@media (max-width: 576px) {
  .popular-card {
    padding: 20px 24px;
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .popular-card {
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 18px;
  }
}

.popular-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 42px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .popular-title {
    font-size: 36px;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .popular-title {
    font-size: 32px;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .popular-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .popular-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .popular-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 992px) {
  .popular-list {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .popular-list {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .popular-list {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .popular-list {
    gap: 12px;
  }
}

.popular-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .popular-item {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .popular-item {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .popular-item {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .popular-item {
    gap: 10px;
  }
}
.popular-item:hover {
  transform: translateX(5px);
}

.popular-number {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 52px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  min-width: 50px;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .popular-number {
    font-size: 46px;
    min-width: 45px;
  }
}
@media (max-width: 992px) {
  .popular-number {
    font-size: 40px;
    min-width: 40px;
  }
}
@media (max-width: 768px) {
  .popular-number {
    font-size: 34px;
    min-width: 35px;
  }
}
@media (max-width: 576px) {
  .popular-number {
    font-size: 28px;
    min-width: 30px;
  }
}
@media (max-width: 480px) {
  .popular-number {
    font-size: 24px;
    min-width: 25px;
  }
}

.popular-content {
  flex: 1;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .popular-content {
    padding-top: 6px;
  }
}
@media (max-width: 576px) {
  .popular-content {
    padding-top: 4px;
  }
}
@media (max-width: 480px) {
  .popular-content {
    padding-top: 2px;
  }
}

.popular-article-title {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .popular-article-title {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .popular-article-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .popular-article-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .popular-article-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .popular-article-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

.popular-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .popular-meta {
    font-size: 11px;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .popular-meta {
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  .popular-meta {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .popular-meta {
    font-size: 8px;
    gap: 4px;
  }
}
.popular-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
}
@media (max-width: 768px) {
  .popular-meta span:not(:last-child)::after {
    margin-left: 6px;
  }
}
@media (max-width: 480px) {
  .popular-meta span:not(:last-child)::after {
    margin-left: 4px;
  }
}

.view-more-container {
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #4B3935;
  border: 1.5px solid #4B3935;
  border-radius: 50px;
  padding: 12px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f6 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  min-height: calc(100vh - 120px);
  position: relative;
}
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 150px 1fr;
    padding: 0 0.75rem 0.75rem 0.75rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: 100px 1fr;
    padding: 0 0.5rem 0.5rem 0.5rem;
    gap: 0.75rem;
  }
}

.progress-bar {
  position: sticky;
  top: 0;
  height: fit-content;
  padding: 1rem 0 0 0;
  margin: 0;
  width: 200px;
}
.progress-bar > .step.completed:first-child {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .progress-bar {
    width: 150px;
    padding: 0.5rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .progress-bar {
    width: 100px;
    padding: 0.25rem 0 0 0;
  }
}

.side-image {
  width: 100%;
  max-width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  display: block;
}
@media (max-width: 1024px) {
  .side-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .side-image {
    height: 280px;
  }
}

.progress-bar-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 1.5rem 0 0 0;
  width: 100%;
  align-items: center;
  position: relative;
}
.progress-bar-vertical::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem);
  background: #4B3935;
  z-index: 0;
}
@media (max-width: 1024px) {
  .progress-bar-vertical {
    margin: 1rem 0 0 0;
  }
  .progress-bar-vertical::before {
    top: -2rem;
  }
}
@media (max-width: 768px) {
  .progress-bar-vertical {
    margin: 0.5rem 0 0 0;
  }
  .progress-bar-vertical::before {
    top: -1.5rem;
    width: 1.5px;
  }
}
.progress-bar-vertical .step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 4rem 0;
  padding: 0;
  width: auto;
}
.progress-bar-vertical .step:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .progress-bar-vertical .step {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .progress-bar-vertical .step {
    margin-bottom: 1.75rem;
  }
}
.progress-bar-vertical .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #4B3935;
  background: #faf8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4B3935;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  position: relative;
}
@media (max-width: 1024px) {
  .progress-bar-vertical .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .progress-bar-vertical .step-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
    border-width: 1.5px;
  }
}
.progress-bar-vertical .step-label {
  display: none;
}
.progress-bar-vertical .step.active .step-number {
  background: #4B3935;
  border-color: #4B3935;
  color: #fff;
}
.progress-bar-vertical .step.completed .step-number {
  background: #faf8f6;
  border-color: #4B3935;
  color: #4B3935;
}
.progress-bar-vertical .step-line {
  display: none;
}

.content-wrapper {
  width: 100%;
  padding: 1rem 0 0 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .content-wrapper {
    padding: 0.5rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 0.25rem 0 0 0;
  }
}

.main-content {
  width: 100%;
  padding: 0;
  margin: 0;
}

.card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.title {
  font-family: "Candlescript Demo Version", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c2623;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  .title {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
  }
}

.subtitle {
  font-size: 0.95rem;
  color: #6b5d54;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 300;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  .subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #4B3935;
  background: transparent;
}
@media (max-width: 1024px) {
  .form-progress {
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .form-progress {
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .form-step {
    gap: 0.25rem;
  }
}
.form-step .step-icon {
  font-size: 1.75rem;
  color: #9e9589;
  transition: color 0.3s ease;
}
@media (max-width: 1024px) {
  .form-step .step-icon {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .form-step .step-icon {
    font-size: 1.1rem;
  }
}
.form-step .step-icon.active {
  color: #3d2417;
  font-weight: 500;
}
.form-step .step-label {
  font-size: 0.85rem;
  color: #9e9589;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
@media (max-width: 1024px) {
  .form-step .step-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .form-step .step-label {
    font-size: 0.65rem;
  }
}
.form-step:hover .step-icon,
.form-step:hover .step-label {
  color: #6b5d54;
}

.form-section {
  margin-bottom: 2rem;
  border: 1px solid #4B3935;
  border-radius: 12px;
  padding: 2rem;
  background: transparent;
  transition: all 0.3s ease;
}
.form-section:hover {
  box-shadow: none;
}
.form-section.health-section {
  background: #E4DFD8;
}
@media (max-width: 1024px) {
  .form-section {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 8px;
  }
}
@media (max-width: 768px) {
  .form-section {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 6px;
  }
}

.section-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2623;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #4B3935;
  margin-left: 1rem;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .section-title::after {
    margin-left: 0.65rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .section-title::after {
    margin-left: 0.5rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .form-grid {
    gap: 0.75rem;
  }
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .form-stack {
    gap: 0.75rem;
  }
}
@media (max-width: 768px) {
  .form-stack {
    gap: 0.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .form-row {
    gap: 0.75rem;
  }
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full-width {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .form-group {
    gap: 0.25rem;
  }
}

.form-label {
  font-size: 0.875rem;
  color: #5c5550;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-label::after {
  content: "*";
  color: #c44;
  font-size: 0.75rem;
  margin-left: 0.15rem;
}
.form-label:not([class*=required])::after {
  content: none;
}
@media (max-width: 1024px) {
  .form-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .form-label {
    font-size: 0.75rem;
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #4B3935;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #2c2623;
  background: transparent;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: rgb(181.0093023256, 174.1441860465, 164.9906976744);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3d2417;
  box-shadow: 0 0 0 3px rgba(61, 36, 23, 0.08);
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #5c4a45;
}
@media (max-width: 1024px) {
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 4px;
  }
}
@media (max-width: 768px) {
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.5rem 0.65rem;
    font-size: 16px;
    border-radius: 4px;
  }
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c5550' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .form-select {
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
  }
}
@media (max-width: 768px) {
  .form-select {
    background-position: right 0.5rem center;
    padding-right: 2rem;
  }
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .form-textarea {
    min-height: 80px;
  }
}
@media (max-width: 768px) {
  .form-textarea {
    min-height: 60px;
  }
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (max-width: 768px) {
  .radio-group {
    gap: 0.5rem;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}
.radio-label:hover input[type=radio] + span::before {
  border-color: #3d2417;
}
.radio-label input[type=radio] {
  display: none;
}
.radio-label input[type=radio]:checked + span::before {
  border-color: #3d2417;
}
.radio-label input[type=radio]:checked + span::after {
  transform: scale(1);
}
.radio-label span {
  font-size: 0.9rem;
  color: #5c5550;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .radio-label span {
    font-size: 0.8rem;
    padding-left: 1.5rem;
  }
}
@media (max-width: 768px) {
  .radio-label span {
    font-size: 0.75rem;
    padding-left: 1.35rem;
  }
}
.radio-label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #4B3935;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  .radio-label span::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media (max-width: 768px) {
  .radio-label span::before {
    width: 0.95rem;
    height: 0.95rem;
    border-width: 1.5px;
  }
}
.radio-label span::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 0.625rem;
  height: 0.625rem;
  background: #3d2417;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .radio-label span::after {
    left: 0.3rem;
    width: 0.55rem;
    height: 0.55rem;
  }
}
@media (max-width: 768px) {
  .radio-label span::after {
    left: 0.25rem;
    width: 0.45rem;
    height: 0.45rem;
  }
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
@media (max-width: 768px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}
.checkbox-label:hover input[type=checkbox] + span::before {
  border-color: #3d2417;
}
.checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-label input[type=checkbox]:checked + span::before {
  background: #3d2417;
  border-color: #3d2417;
}
.checkbox-label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.checkbox-label span {
  font-size: 0.9rem;
  color: #5c5550;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .checkbox-label span {
    font-size: 0.8rem;
    padding-left: 1.5rem;
  }
}
@media (max-width: 768px) {
  .checkbox-label span {
    font-size: 0.75rem;
    padding-left: 1.35rem;
  }
}
.checkbox-label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #4B3935;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  .checkbox-label span::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media (max-width: 768px) {
  .checkbox-label span::before {
    width: 0.95rem;
    height: 0.95rem;
    border-width: 1.5px;
    border-radius: 3px;
  }
}
.checkbox-label span::after {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .checkbox-label span::after {
    left: 0.22rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .checkbox-label span::after {
    left: 0.18rem;
    font-size: 0.6rem;
  }
}

.consents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .consents-list {
    gap: 0.5rem;
  }
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.consent-label:hover {
  background: rgb(248.6428571429, 246.1, 243.5571428571);
}
.consent-label:hover input[type=checkbox] + span::before {
  border-color: #3d2417;
}
@media (max-width: 1024px) {
  .consent-label {
    padding: 0.5rem;
  }
}
@media (max-width: 768px) {
  .consent-label {
    padding: 0.4rem;
    border-radius: 4px;
  }
}
.consent-label input[type=checkbox] {
  display: none;
}
.consent-label input[type=checkbox]:checked + span::before {
  background: #3d2417;
  border-color: #3d2417;
}
.consent-label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.consent-label span {
  font-size: 0.9rem;
  color: #5c5550;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .consent-label span {
    font-size: 0.8rem;
    padding-left: 1.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .consent-label span {
    font-size: 0.75rem;
    padding-left: 1.35rem;
    line-height: 1.4;
  }
}
.consent-label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #4B3935;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  .consent-label span::before {
    width: 1.1rem;
    height: 1.1rem;
    top: 0.2rem;
  }
}
@media (max-width: 768px) {
  .consent-label span::before {
    width: 0.95rem;
    height: 0.95rem;
    border-width: 1.5px;
    top: 0.15rem;
    border-radius: 3px;
  }
}
.consent-label span::after {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .consent-label span::after {
    left: 0.22rem;
    top: 0.2rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .consent-label span::after {
    left: 0.18rem;
    top: 0.15rem;
    font-size: 0.6rem;
  }
}

.form-hint {
  font-size: 0.8rem;
  color: #9e9589;
  font-style: italic;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .form-hint {
    font-size: 0.7rem;
  }
}

.error-message {
  font-size: 0.8rem;
  color: #c44;
  margin-top: 0.25rem;
  min-height: 1rem;
  display: none;
}
.error-message.active {
  display: block;
}
@media (max-width: 768px) {
  .error-message {
    font-size: 0.75rem;
  }
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 0;
  border-top: none;
  background: transparent;
}
@media (max-width: 1024px) {
  .navigation-buttons {
    margin-top: 2rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .navigation-buttons {
    flex-direction: column-reverse;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

.btn-back,
.btn-next {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .btn-back,
  .btn-next {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .btn-back,
  .btn-next {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

.btn-back {
  background: transparent;
  color: #5c5550;
  border: 1px solid #4B3935;
}
.btn-back:hover {
  background: transparent;
  border-color: #5c4a45;
}
.btn-back i {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .btn-back i {
    font-size: 0.75rem;
  }
}

.btn-next {
  background: #3d2417;
  color: #fff;
  padding: 1rem 3rem;
}
.btn-next:hover:not(:disabled) {
  background: rgb(31.3714285714, 18.5142857143, 11.8285714286);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 36, 23, 0.25);
}
.btn-next:active:not(:disabled) {
  transform: translateY(0);
}
.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 1024px) {
  .btn-next {
    padding: 0.875rem 2.5rem;
  }
}
@media (max-width: 768px) {
  .btn-next {
    padding: 0.75rem 1.5rem;
  }
}
.btn-next i {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .btn-next i {
    font-size: 0.75rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-section {
  animation: fadeIn 0.5s ease forwards;
}
.form-section:nth-child(1) {
  animation-delay: 0.1s;
  opacity: 0;
}
.form-section:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0;
}
.form-section:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0;
}
.form-section:nth-child(4) {
  animation-delay: 0.4s;
  opacity: 0;
}
.form-section:nth-child(5) {
  animation-delay: 0.5s;
  opacity: 0;
}

[style*="display: none"] {
  display: none;
}

body.dark-mode.page-reservation-client {
  background-color: #4b3935 !important;
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .progress-bar-vertical::before {
  background: rgba(245, 235, 224, 0.25) !important;
}
body.dark-mode.page-reservation-client .progress-bar-vertical .step .step-number {
  background-color: transparent !important;
  border-color: rgba(245, 235, 224, 0.4) !important;
  color: rgba(245, 235, 224, 0.4) !important;
}
body.dark-mode.page-reservation-client .progress-bar-vertical .step:nth-child(3) .step-number {
  background-color: #f5ebe0 !important;
  border-color: #f5ebe0 !important;
  color: #4b3935 !important;
  font-weight: 600 !important;
}
body.dark-mode.page-reservation-client .title {
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .subtitle {
  color: rgba(245, 235, 224, 0.7) !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) {
  background: transparent !important;
  border: 2px solid #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .section-title {
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .section-title::after {
  background-color: #f5ebe0 !important;
  opacity: 0.4 !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-label,
body.dark-mode.page-reservation-client .form-section:not(.health-section) p,
body.dark-mode.page-reservation-client .form-section:not(.health-section) span,
body.dark-mode.page-reservation-client .form-section:not(.health-section) label {
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-input,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-select,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-textarea {
  background-color: transparent !important;
  border: 2px solid #f5ebe0 !important;
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-input::placeholder,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-select::placeholder,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-textarea::placeholder {
  color: rgba(245, 235, 224, 0.5) !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-input:focus,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-select:focus,
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-textarea:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(245, 235, 224, 0.2) !important;
}
body.dark-mode.page-reservation-client .form-section:not(.health-section) .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f5ebe0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
body.dark-mode.page-reservation-client .form-section.health-section {
  background-color: #f5ebe0 !important;
  border: none !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .section-title,
body.dark-mode.page-reservation-client .form-section.health-section h3,
body.dark-mode.page-reservation-client .form-section.health-section h4,
body.dark-mode.page-reservation-client .form-section.health-section p,
body.dark-mode.page-reservation-client .form-section.health-section span,
body.dark-mode.page-reservation-client .form-section.health-section label,
body.dark-mode.page-reservation-client .form-section.health-section .form-label {
  color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .section-title::after {
  background-color: rgba(75, 57, 53, 0.3) !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .form-input,
body.dark-mode.page-reservation-client .form-section.health-section .form-select,
body.dark-mode.page-reservation-client .form-section.health-section .form-textarea {
  background: transparent !important;
  border: 2px solid rgba(75, 57, 53, 0.5) !important;
  color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .form-input::placeholder,
body.dark-mode.page-reservation-client .form-section.health-section .form-select::placeholder,
body.dark-mode.page-reservation-client .form-section.health-section .form-textarea::placeholder {
  color: rgba(75, 57, 53, 0.4) !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234b3935' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .radio-label span {
  color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .radio-label span::before {
  border-color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .radio-label input:checked + span::after {
  background: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .checkbox-label span {
  color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .checkbox-label span::before {
  border-color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section.health-section .checkbox-label input:checked + span::before {
  background: #4b3935 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) {
  background: transparent !important;
  border: 2px solid #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .section-title {
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .section-title::after {
  background-color: #f5ebe0 !important;
  opacity: 0.4 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .consent-label span {
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .consent-label span::before {
  border-color: #f5ebe0 !important;
  border-width: 2px !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .consent-label input:checked + span::before {
  background: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .form-section:has(.consents-list) .consent-label input:checked + span::after {
  color: #4b3935 !important;
}
body.dark-mode.page-reservation-client .btn-back {
  background: transparent !important;
  border: 1px solid rgba(245, 235, 224, 0.4) !important;
  color: #f5ebe0 !important;
}
body.dark-mode.page-reservation-client .btn-back:hover {
  background: rgba(245, 235, 224, 0.05) !important;
}
body.dark-mode.page-reservation-client .btn-next {
  background-color: #f5ebe0 !important;
  color: #4b3935 !important;
  border: none !important;
}
body.dark-mode.page-reservation-client .btn-next:hover:not(:disabled) {
  background-color: #e8dfd3 !important;
}
body.dark-mode.page-reservation-client .error-message {
  color: #ff6b6b !important;
}
body.dark-mode.page-reservation-client .form-hint {
  color: rgba(245, 235, 224, 0.6) !important;
}

#formAlert {
  color: red;
  margin-bottom: 10px;
  display: none;
  font-weight: 500;
}

/* ============================================
   FORCE LEFT ALIGNMENT - OVERRIDE FILE
   ============================================
   Ajoutez ce fichier APRÈS tous les autres CSS
   ============================================ */
/* Force container to have no left padding */
.container {
  padding-left: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Force progress bar column to start at 0 */
.progress-bar {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Force image to be flush left with no margins */
.side-image {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  display: block !important;
}

/* Force progress bar vertical to have no left space */
.progress-bar-vertical {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Remove any left margins/padding from step items */
.progress-bar .step {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Specifically target the step that contains the image */
.progress-bar > .step.completed:first-child {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
body.page-reservation-service {
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f6 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body.page-reservation-service .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 0 !important;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  min-height: calc(100vh - 120px);
  position: relative;
}
body.page-reservation-service .container::before {
  content: none;
}
@media (max-width: 1024px) {
  body.page-reservation-service .container {
    grid-template-columns: 200px 1fr;
    padding: 0 1rem 1rem 1rem !important;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .container {
    grid-template-columns: 100px 1fr;
    padding: 0 0.5rem 0.5rem 0.5rem !important;
    gap: 0.75rem;
  }
}
body.page-reservation-service .progress-bar {
  position: sticky;
  top: 0;
  height: fit-content;
  padding: 1rem 0 0 0 !important;
  margin: 0 !important;
  width: 300px;
}
body.page-reservation-service .progress-bar > .step.completed:first-child {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 1024px) {
  body.page-reservation-service .progress-bar {
    width: 200px;
    padding: 0.5rem 0 0 0 !important;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .progress-bar {
    width: 100px;
    padding: 0.25rem 0 0 0 !important;
  }
}
body.page-reservation-service .side-image {
  width: 100% !important;
  max-width: 100% !important;
  height: 660px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}
@media (max-width: 1024px) {
  body.page-reservation-service .side-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .side-image {
    height: 280px;
  }
}
body.page-reservation-service .progress-bar-vertical {
  position: relative;
}
body.page-reservation-service .progress-bar-vertical::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem);
  background: #4B3935;
  z-index: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-service .progress-bar-vertical::before {
    top: -2rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .progress-bar-vertical::before {
    top: -1.5rem;
    width: 1.5px;
  }
}
body.page-reservation-service .progress-bar-vertical .step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  width: auto;
  margin-bottom: 4rem !important;
}
body.page-reservation-service .progress-bar-vertical .step:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
  body.page-reservation-service .progress-bar-vertical .step {
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .progress-bar-vertical .step {
    margin-bottom: 1.75rem !important;
  }
}
body.page-reservation-service .progress-bar-vertical .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #4B3935;
  background: #faf8f6 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4B3935 !important;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  position: relative;
}
@media (max-width: 1024px) {
  body.page-reservation-service .progress-bar-vertical .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .progress-bar-vertical .step-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
    border-width: 1.5px;
  }
}
body.page-reservation-service .progress-bar-vertical .step-label {
  display: none !important;
}
body.page-reservation-service .progress-bar-vertical .step:not(.active) .step-number {
  background: #faf8f6 !important;
  border-color: #4B3935 !important;
  color: #4B3935 !important;
}
body.page-reservation-service .progress-bar-vertical .step.active .step-number {
  background: #4B3935 !important;
  border-color: #4B3935 !important;
  color: #fff !important;
}
body.page-reservation-service .progress-bar-vertical .step-line {
  display: none;
}
body.page-reservation-service .content-wrapper {
  width: 100%;
  padding: 1rem 0 0 0;
  margin: 0;
  display: flex;
  gap: 43px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .content-wrapper {
    gap: 20px;
    padding: 0.5rem 0 0 0;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .content-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0.25rem 0 0 0;
  }
}
body.page-reservation-service .main-content {
  flex: 1;
  padding: 0;
  margin: -20px;
}
body.page-reservation-service .card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.page-reservation-service .title {
  font-family: "Candlescript Demo Version", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c2623;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-service .title {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
  }
}
body.page-reservation-service .subtitle {
  font-size: 0.95rem;
  color: #6b5d54;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 300;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-service .subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
}
body.page-reservation-service .section {
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .section {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .section {
    margin-bottom: 16px;
  }
}
body.page-reservation-service .section-title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  body.page-reservation-service .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .section-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
body.page-reservation-service .discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .discipline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .discipline-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body.page-reservation-service .discipline-btn {
  padding: 28px;
  border-radius: 18px;
  border: 1.5px solid #e3d9d2;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
@media (max-width: 1024px) {
  body.page-reservation-service .discipline-btn {
    padding: 14px;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .discipline-btn {
    padding: 12px;
    border-radius: 10px;
  }
}
body.page-reservation-service .discipline-btn .discipline-name {
  font-family: "Times New Roman Italic", "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 2rem;
  color: #4B3935;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .discipline-btn .discipline-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .discipline-btn .discipline-name {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
}
body.page-reservation-service .discipline-btn:hover {
  border-color: #8b7368;
  transform: translateY(-2px);
}
body.page-reservation-service .discipline-btn.active {
  background-color: #4B3935;
  color: white;
  border-color: #4B3935;
}
body.page-reservation-service .discipline-btn.active .discipline-name {
  color: white;
}
body.page-reservation-service .discipline-btn.active .discipline-subtitle {
  color: #e8ddd6;
}
body.page-reservation-service .discipline-subtitle {
  color: #7d736d;
  font-size: 14px;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .discipline-subtitle {
    font-size: 12px;
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .discipline-subtitle {
    font-size: 11px;
  }
}
body.page-reservation-service .session-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-list {
    gap: 10px;
  }
}
body.page-reservation-service .session-item {
  border-radius: 20px;
  padding: 28px;
  border: 1.5px solid #e3d9d2;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-item {
    border-radius: 14px;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-item {
    border-radius: 12px;
    padding: 12px;
  }
}
body.page-reservation-service .session-item:hover {
  border-color: #8b7368;
  transform: translateY(-2px);
}
body.page-reservation-service .session-item.active {
  background-color: #4B3935;
  color: white;
  border-color: #4B3935;
}
body.page-reservation-service .session-item.active .session-name {
  color: white;
}
body.page-reservation-service .session-item.active .session-price {
  color: white;
  border-left-color: rgba(255, 255, 255, 0.3);
}
body.page-reservation-service .session-item.active .session-desc,
body.page-reservation-service .session-item.active .session-info {
  color: #e8ddd6;
}
body.page-reservation-service .session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-header {
    gap: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
  }
}
body.page-reservation-service .session-name {
  font-size: 1.3rem;
  color: #4B3935;
  font-weight: 600;
  flex: 1;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-name {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-name {
    font-size: 0.95rem;
  }
}
body.page-reservation-service .session-price {
  font-family: "Times New Roman Italic", "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #4B3935;
  white-space: nowrap;
  padding-left: 24px;
  border-left: 1px solid #4B3935;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-price {
    font-size: 1.35rem;
    padding-left: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-price {
    font-size: 1.15rem;
    padding-left: 0;
    border-left: none;
  }
}
body.page-reservation-service .session-desc {
  margin-bottom: 8px;
  color: #2f2a27;
  font-size: 0.95rem;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-desc {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-desc {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }
}
body.page-reservation-service .session-info {
  font-size: 0.9rem;
  color: #7d736d;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-info {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-info {
    font-size: 0.7rem;
  }
}
body.page-reservation-service .session-warning {
  margin-top: 12px;
  padding: 10px;
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 3px solid #ffc107;
  font-size: 0.85rem;
  color: #856404;
}
@media (max-width: 1024px) {
  body.page-reservation-service .session-warning {
    margin-top: 8px;
    padding: 6px;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .session-warning {
    margin-top: 6px;
    padding: 5px;
    font-size: 0.7rem;
  }
}
.session-item.active body.page-reservation-service .session-warning {
  background-color: rgba(255, 193, 7, 0.2);
  color: #fff3cd;
  border-left-color: #fff3cd;
}
body.page-reservation-service .session-warning i {
  margin-right: 6px;
}
@media (max-width: 768px) {
  body.page-reservation-service .session-warning i {
    margin-right: 3px;
  }
}
body.page-reservation-service .options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .options-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .options-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body.page-reservation-service .option-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: 20px;
  padding: 24px;
  border: 1.5px solid #e3d9d2;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-service .option-item {
    border-radius: 14px;
    padding: 14px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .option-item {
    border-radius: 12px;
    padding: 12px;
    gap: 8px;
  }
}
body.page-reservation-service .option-item:hover {
  border-color: #8b7368;
}
body.page-reservation-service .option-item input {
  margin-top: 6px;
}
@media (max-width: 768px) {
  body.page-reservation-service .option-item input {
    margin-top: 3px;
  }
}
body.page-reservation-service .option-item input:checked {
  accent-color: #f1e6df;
}
body.page-reservation-service .option-item:has(input:checked) {
  background-color: #4b3a33;
  color: white;
  border-color: #4b3a33;
}
body.page-reservation-service .option-item:has(input:checked) .option-name,
body.page-reservation-service .option-item:has(input:checked) .option-desc,
body.page-reservation-service .option-item:has(input:checked) .option-price {
  color: white;
}
body.page-reservation-service .option-name {
  font-size: 1rem;
}
@media (max-width: 1024px) {
  body.page-reservation-service .option-name {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .option-name {
    font-size: 0.8rem;
  }
}
body.page-reservation-service .option-desc {
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  body.page-reservation-service .option-desc {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .option-desc {
    font-size: 0.7rem;
  }
}
body.page-reservation-service .option-price {
  font-weight: bold;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .option-price {
    margin-top: 5px;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .option-price {
    margin-top: 4px;
    font-size: 0.8rem;
  }
}
body.page-reservation-service .sidebar {
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-service .sidebar {
    width: 300px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .sidebar {
    width: 100%;
    order: 999;
  }
}
body.page-reservation-service .summary-card {
  background-color: #8b7b73;
  color: white;
  border-radius: 24px;
  padding: 15px;
  position: sticky;
  top: 40px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .summary-card {
    border-radius: 16px;
    padding: 18px;
    top: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .summary-card {
    position: static;
    border-radius: 14px;
    padding: 16px;
  }
}
body.page-reservation-service .summary-title {
  font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .summary-title {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .summary-title {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
body.page-reservation-service .summary-details span {
  color: #d6c8bf;
}
body.page-reservation-service .summary-details p {
  margin-bottom: 12px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .summary-details p {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .summary-details p {
    font-size: 11px;
    margin-bottom: 6px;
  }
}
body.page-reservation-service .summary-options {
  margin: 24px 0;
}
@media (max-width: 1024px) {
  body.page-reservation-service .summary-options {
    margin: 16px 0;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .summary-options {
    margin: 12px 0;
  }
}
body.page-reservation-service .options-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  body.page-reservation-service .options-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .options-title {
    font-size: 11px;
    margin-bottom: 4px;
  }
}
body.page-reservation-service .total {
  font-size: 24px;
  font-weight: bold;
  margin: 32px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  body.page-reservation-service .total {
    font-size: 18px;
    margin: 20px 0;
    padding-top: 14px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .total {
    font-size: 16px;
    margin: 16px 0;
    padding-top: 10px;
  }
}
body.page-reservation-service .btn-next {
  width: 100%;
  background-color: #f1e6df;
  color: #4b3a33;
  border: none;
  border-radius: 40px;
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  body.page-reservation-service .btn-next {
    padding: 10px;
    font-size: 12px;
    border-radius: 28px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-service .btn-next {
    padding: 9px;
    font-size: 11px;
    border-radius: 24px;
  }
}
body.page-reservation-service .btn-next:hover:not(:disabled) {
  background-color: #e8d9cf;
  transform: translateY(-2px);
}
body.page-reservation-service .btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
body.page-reservation-creneau {
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f6 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body.page-reservation-creneau .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 0 !important;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  min-height: calc(100vh - 120px);
  position: relative;
}
body.page-reservation-creneau .container::before {
  content: none;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .container {
    grid-template-columns: 200px 1fr;
    padding: 0 1rem 1rem 1rem !important;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .container {
    grid-template-columns: 100px 1fr;
    padding: 0 0.5rem 0.5rem 0.5rem !important;
    gap: 0.75rem;
  }
}
body.page-reservation-creneau .progress-bar {
  position: sticky;
  top: 0;
  height: fit-content;
  padding: 1rem 0 0 0 !important;
  margin: 0 !important;
  width: 300px;
}
body.page-reservation-creneau .progress-bar > .step.completed:first-child {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .progress-bar {
    width: 200px;
    padding: 0.5rem 0 0 0 !important;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .progress-bar {
    width: 100px;
    padding: 0.25rem 0 0 0 !important;
  }
}
body.page-reservation-creneau .side-image {
  width: 100% !important;
  max-width: 100% !important;
  height: 660px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .side-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .side-image {
    height: 280px;
  }
}
body.page-reservation-creneau .progress-bar-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 !important;
  margin: 1.5rem 0 0 0 !important;
  width: 100%;
  align-items: center;
  position: relative;
}
body.page-reservation-creneau .progress-bar-vertical::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem);
  background: #4B3935;
  z-index: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .progress-bar-vertical::before {
    top: -2rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .progress-bar-vertical::before {
    top: -1.5rem;
    width: 1.5px;
  }
}
body.page-reservation-creneau .progress-bar-vertical .step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  width: auto;
  margin-bottom: 4rem !important;
}
body.page-reservation-creneau .progress-bar-vertical .step:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .progress-bar-vertical .step {
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .progress-bar-vertical .step {
    margin-bottom: 1.75rem !important;
  }
}
body.page-reservation-creneau .progress-bar-vertical .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #4B3935;
  background: #faf8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4B3935;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  position: relative;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .progress-bar-vertical .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .progress-bar-vertical .step-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
    border-width: 1.5px;
  }
}
body.page-reservation-creneau .progress-bar-vertical .step-label {
  display: none !important;
}
body.page-reservation-creneau .progress-bar-vertical .step-line {
  display: none;
}
body.page-reservation-creneau .progress-bar-vertical .step .step-number {
  background: #faf8f6;
  border-color: #4B3935;
  color: #4B3935;
}
body.page-reservation-creneau .progress-bar-vertical .step.active .step-number {
  background: #4B3935 !important;
  border-color: #4B3935 !important;
  color: #ffffff !important;
}
body.page-reservation-creneau .progress-bar-vertical .step.active .step-number {
  background: #4B3935;
  border-color: #4B3935;
  color: #ffffff;
}
body.page-reservation-creneau .content-wrapper {
  width: 100%;
  padding: 1rem 0 0 0;
  margin: 0;
  display: flex;
  gap: 9px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .content-wrapper {
    gap: 20px;
    padding: 0.5rem 0 0 0;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .content-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0.25rem 0 0 0;
  }
}
body.page-reservation-creneau .main-content {
  flex: 1;
  padding: 0;
  margin: 0;
}
body.page-reservation-creneau .card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.page-reservation-creneau .title {
  font-family: "Candlescript Demo Version", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c2623;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .title {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
  }
}
body.page-reservation-creneau .subtitle {
  font-size: 0.95rem;
  color: #6b5d54;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 300;
  padding: 0;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
}
body.page-reservation-creneau .section {
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .section {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .section {
    margin-bottom: 16px;
  }
}
body.page-reservation-creneau .section-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2f2a27;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .section-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
body.page-reservation-creneau .info-banner {
  border: 1.5px solid #e3d9d2;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 48px;
  background: transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .info-banner {
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .info-banner {
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
  }
}
body.page-reservation-creneau .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .info-grid {
    gap: 12px 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body.page-reservation-creneau .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #2f2a27;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .info-item {
    font-size: 0.8rem;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .info-item {
    font-size: 0.75rem;
    gap: 6px;
  }
}
body.page-reservation-creneau .info-item .info-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2f2a27;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .info-item .info-icon {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .info-item .info-icon {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
}
body.page-reservation-creneau .date-selector-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  body.page-reservation-creneau .date-selector-container {
    max-width: 100%;
  }
}
body.page-reservation-creneau .date-display {
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1.5px solid #e3d9d2;
  background: transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  color: #2f2a27;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .date-display {
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .date-display {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 32px;
  }
}
body.page-reservation-creneau .date-display:hover {
  border-color: #8b7368;
}
body.page-reservation-creneau .custom-calendar-popup {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  background: transparent;
  border: 6px solid #b8a599 !important;
  border-radius: 24px;
  padding: 32px;
  width: 100% !important;
  max-width: 600px !important;
  z-index: 1;
  box-shadow: none;
  margin-top: 12px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .custom-calendar-popup {
    border-width: 4px !important;
    border-radius: 18px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .custom-calendar-popup {
    border-width: 3px !important;
    border-radius: 14px;
    padding: 16px;
    margin-top: 8px;
    margin-bottom: 16px;
    max-width: 100% !important;
  }
}
body.page-reservation-creneau .custom-calendar-popup.active {
  display: block;
}
body.page-reservation-creneau .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-header {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-header {
    margin-bottom: 12px;
  }
}
body.page-reservation-creneau .calendar-title {
  font-family: "Times New Roman Italic", "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 2.2rem;
  color: #4b3a33;
  font-weight: 400;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-title {
    font-size: 1.3rem;
  }
}
body.page-reservation-creneau .calendar-nav-btn {
  background: none;
  border: none;
  color: #4b3a33;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-nav-btn {
    font-size: 16px;
    padding: 6px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-nav-btn {
    font-size: 14px;
    padding: 4px;
  }
}
body.page-reservation-creneau .calendar-nav-btn:hover {
  opacity: 1;
}
body.page-reservation-creneau .calendar-month-year {
  text-align: right;
  font-size: 1.1rem;
  color: #2f2a27;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-month-year {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-month-year {
    font-size: 0.85rem;
  }
}
body.page-reservation-creneau .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #7d736d;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-weekdays {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-weekdays {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
}
body.page-reservation-creneau .calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-days-grid {
    gap: 6px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-days-grid {
    gap: 4px;
  }
}
body.page-reservation-creneau .calendar-day {
  width: 52px;
  height: 52px;
  line-height: 46px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  color: #2f2a27;
  background: transparent;
  border: 3px solid transparent;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .calendar-day {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 0.9rem;
    border-width: 2px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .calendar-day {
    width: 32px;
    height: 32px;
    line-height: 28px;
    font-size: 0.8rem;
    border-width: 2px;
  }
}
body.page-reservation-creneau .calendar-day.inactive {
  color: rgb(236.7808219178, 230.2739726027, 225.7191780822);
  cursor: default;
  border-color: transparent;
}
body.page-reservation-creneau .calendar-day.disabled {
  color: rgb(236.7808219178, 230.2739726027, 225.7191780822);
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
}
body.page-reservation-creneau .calendar-day:not(.inactive):not(.disabled) {
  border-color: rgb(211.3506849315, 195.7616438356, 184.8493150685);
}
body.page-reservation-creneau .calendar-day:not(.inactive):not(.disabled):hover {
  border-color: #8b7368;
  background-color: transparent;
}
body.page-reservation-creneau .calendar-day.selected {
  background: #4b3a33;
  color: #ffffff;
  font-weight: 600;
  border-color: #4b3a33;
}
body.page-reservation-creneau #timeSection {
  margin-top: 48px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau #timeSection {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau #timeSection {
    margin-top: 16px;
  }
}
body.page-reservation-creneau #timeTitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #2f2a27;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau #timeTitle {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau #timeTitle {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
body.page-reservation-creneau .time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .time-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body.page-reservation-creneau .time-slot {
  border: 1.5px solid #e3d9d2;
  border-radius: 20px;
  padding: 20px 24px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .time-slot {
    border-radius: 14px;
    padding: 14px 18px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .time-slot {
    border-radius: 12px;
    padding: 12px 16px;
  }
}
body.page-reservation-creneau .time-slot:hover {
  border-color: #8b7368;
  transform: translateY(-2px);
}
body.page-reservation-creneau .time-slot.selected {
  background: #4b3a33;
  border-color: #4b3a33;
}
body.page-reservation-creneau .time-slot.selected .time-range {
  color: #ffffff;
}
body.page-reservation-creneau .time-slot.selected .time-status {
  color: rgba(255, 255, 255, 0.8);
}
body.page-reservation-creneau .time-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f2a27;
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .time-range {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .time-range {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
}
body.page-reservation-creneau .time-status {
  font-size: 0.85rem;
  color: #7d736d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .time-status {
    font-size: 0.75rem;
    gap: 4px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .time-status {
    font-size: 0.7rem;
    gap: 3px;
  }
}
body.page-reservation-creneau .time-status i {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  body.page-reservation-creneau .time-status i {
    font-size: 0.65rem;
  }
}
body.page-reservation-creneau .sidebar {
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .sidebar {
    width: 300px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .sidebar {
    width: 100%;
    order: 999;
  }
}
body.page-reservation-creneau .summary-card {
  background-color: #8b7b73;
  color: white;
  border-radius: 24px;
  padding: 32px;
  position: sticky;
  top: 40px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-card {
    border-radius: 16px;
    padding: 18px;
    top: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-card {
    position: static;
    border-radius: 14px;
    padding: 16px;
  }
}
body.page-reservation-creneau .summary-title {
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-title {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-title {
    font-size: 0.65rem;
    margin-bottom: 5px;
  }
}
body.page-reservation-creneau #dateTitle {
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-weight: 600;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau #dateTitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau #dateTitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
}
body.page-reservation-creneau .summary-section {
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-section {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-section {
    margin-bottom: 16px;
  }
}
body.page-reservation-creneau .summary-section .section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-section .section-title {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-section .section-title {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
}
body.page-reservation-creneau .session-details,
body.page-reservation-creneau .recommended-slots {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .session-details,
  body.page-reservation-creneau .recommended-slots {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .session-details,
  body.page-reservation-creneau .recommended-slots {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
body.page-reservation-creneau .session-details div,
body.page-reservation-creneau .recommended-slots div {
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  body.page-reservation-creneau .session-details div,
  body.page-reservation-creneau .recommended-slots div {
    margin-bottom: 3px;
  }
}
body.page-reservation-creneau .summary-section .recommended-slots + div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-section .recommended-slots + div {
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 14px;
    font-size: 0.75rem;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-section .recommended-slots + div {
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 12px;
    font-size: 0.7rem;
    gap: 6px;
  }
}
body.page-reservation-creneau .summary-section .recommended-slots + div i {
  font-size: 1rem;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .summary-section .recommended-slots + div i {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .summary-section .recommended-slots + div i {
    font-size: 0.8rem;
  }
}
body.page-reservation-creneau .total-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .total-summary {
    padding-top: 16px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .total-summary {
    padding-top: 12px;
    margin-top: 16px;
  }
}
body.page-reservation-creneau .total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .total-line {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .total-line {
    font-size: 0.9rem;
  }
}
body.page-reservation-creneau .total-line .total-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .total-line .total-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .total-line .total-label {
    font-size: 0.75rem;
  }
}
body.page-reservation-creneau .total-line .total-amount {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .total-line .total-amount {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .total-line .total-amount {
    font-size: 1.15rem;
  }
}
body.page-reservation-creneau .navigation-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .navigation-buttons {
    gap: 10px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .navigation-buttons {
    gap: 8px;
    margin-top: 16px;
  }
}
body.page-reservation-creneau .btn-back,
body.page-reservation-creneau .btn-next {
  flex: 1;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .btn-back,
  body.page-reservation-creneau .btn-next {
    padding: 10px 18px;
    font-size: 0.8rem;
    border-radius: 40px;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .btn-back,
  body.page-reservation-creneau .btn-next {
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: 32px;
    gap: 5px;
  }
}
body.page-reservation-creneau .btn-back i,
body.page-reservation-creneau .btn-next i {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  body.page-reservation-creneau .btn-back i,
  body.page-reservation-creneau .btn-next i {
    font-size: 0.7rem;
  }
}
body.page-reservation-creneau .btn-back {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
body.page-reservation-creneau .btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
}
body.page-reservation-creneau .btn-next {
  background: #ffffff;
  color: #4b3a33;
}
body.page-reservation-creneau .btn-next:hover:not(:disabled) {
  background: rgb(242.25, 242.25, 242.25);
  transform: translateY(-2px);
}
body.page-reservation-creneau .btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body.page-reservation-creneau .date-selector-container {
  max-width: 100% !important;
  width: 100% !important;
}
body.page-reservation-creneau .custom-calendar-popup {
  border: 6px solid #b8a599 !important;
  max-width: 650px !important;
  width: 100% !important;
}
@media (max-width: 1024px) {
  body.page-reservation-creneau .custom-calendar-popup {
    max-width: 500px !important;
  }
}
@media (max-width: 768px) {
  body.page-reservation-creneau .custom-calendar-popup {
    max-width: 100% !important;
  }
}

body.page-reservation-creneau .progress-bar-vertical .step:not(.active) .step-number {
  background: #faf8f6 !important;
  color: #4B3935 !important;
}

/* =========================
   RESET & BASE
========================= */
/* ========================================
   MIXINS RESPONSIVE - BREAKPOINTS
======================================== */
/* ========================================
   MIXINS UTILITAIRES
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f7f3ee;
  color: #2b2b2b;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .container {
    margin: 20px auto 30px;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 12px auto 20px;
    padding: 0 8px;
  }
}

/* =========================
   PROGRESS BAR
========================= */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .progress-bar {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .progress-bar {
    margin-bottom: 12px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #8c857d;
}
@media (max-width: 1024px) {
  .step {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .step {
    font-size: 9px;
  }
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #b8afa6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background: #fff;
}
@media (max-width: 1024px) {
  .step-number {
    width: 22px;
    height: 22px;
    font-size: 11px;
    margin-bottom: 3px;
  }
}
@media (max-width: 768px) {
  .step-number {
    width: 18px;
    height: 18px;
    font-size: 9px;
    border-width: 1px;
    margin-bottom: 2px;
  }
}

.step.completed .step-number,
.step.active .step-number {
  background-color: #6b5c50;
  color: #fff;
  border-color: #6b5c50;
}

.step-label {
  font-size: 13px;
}
@media (max-width: 1024px) {
  .step-label {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .step-label {
    font-size: 8px;
  }
}

.step-line {
  width: 60px;
  height: 1.5px;
  background-color: #b8afa6;
  margin: 0 10px;
}
@media (max-width: 1024px) {
  .step-line {
    width: 30px;
    margin: 0 5px;
  }
}
@media (max-width: 768px) {
  .step-line {
    width: 20px;
    margin: 0 3px;
    height: 1px;
  }
}

.step-line.completed {
  background-color: #6b5c50;
}

/* =========================
   LAYOUT
========================= */
.confirmation-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .confirmation-layout {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .confirmation-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================
   COLONNE GAUCHE
========================= */
.confirmation-main {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .confirmation-main {
    border-radius: 12px;
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .confirmation-main {
    border-radius: 10px;
    padding: 14px;
  }
}

.success-banner {
  background-color: #ebe6df;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .success-banner {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .success-banner {
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 12px;
  }
}

/* =========================
   SECTIONS
========================= */
.info-section {
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .info-section {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .info-section {
    margin-bottom: 12px;
  }
}

.info-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .info-section h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .info-section h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.info-section div {
  font-size: 15px;
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .info-section div {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
@media (max-width: 768px) {
  .info-section div {
    font-size: 12px;
    margin-bottom: 3px;
  }
}

.financial .total-amount {
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .financial .total-amount {
    margin-top: 6px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .financial .total-amount {
    margin-top: 5px;
    font-size: 13px;
  }
}

/* =========================
   ACTION BUTTONS
========================= */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 1024px) {
  .action-buttons {
    gap: 10px;
    margin: 18px 0;
  }
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    gap: 8px;
    margin: 14px 0;
  }
}

.btn-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #b8afa6;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .btn-secondary {
    padding: 9px 14px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .btn-secondary {
    padding: 8px 12px;
    font-size: 12px;
    width: 100%;
  }
}
.btn-secondary:hover {
  background: #f2eee9;
}

.btn-primary {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background-color: #6b5c50;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 9px 14px;
    font-size: 12px;
    width: 100%;
  }
}
.btn-primary:hover {
  background-color: #5b4d43;
}

/* =========================
   NOTE
========================= */
.important-note {
  font-size: 14px;
  color: #6f6a65;
}
@media (max-width: 1024px) {
  .important-note {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .important-note {
    font-size: 11px;
  }
}

/* =========================
   SIDEBAR
========================= */
.confirmation-sidebar {
  background-color: #6b5c50;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}
@media (max-width: 1024px) {
  .confirmation-sidebar {
    border-radius: 14px;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .confirmation-sidebar {
    border-radius: 12px;
    padding: 14px;
    order: -1;
  }
}

.sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .sidebar-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .sidebar-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.sidebar-section {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .sidebar-section {
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {
  .sidebar-section {
    margin-bottom: 12px;
  }
}

.sidebar-section h4 {
  font-size: 15px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .sidebar-section h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .sidebar-section h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.sidebar-section ul {
  list-style: none;
}

.sidebar-section li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
@media (max-width: 1024px) {
  .sidebar-section li {
    font-size: 12px;
    margin-bottom: 5px;
    padding-left: 10px;
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .sidebar-section li {
    font-size: 11px;
    margin-bottom: 4px;
    padding-left: 9px;
  }
}
.sidebar-section li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* =========================
   FIX STEPS - NE PAS TOUCHER
========================= */
.progress-bar-vertical .step:first-child .step-number {
  background: #faf8f6 !important;
  color: #4B3935 !important;
}

.progress-bar-vertical .step:nth-child(4) .step-number {
  background: #4B3935 !important;
  color: #ffffff !important;
}

/* =========================
   BOUTON HOME
========================= */
.btn-home-sidebar {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background-color: #f2ede6;
  color: #3a332e;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .btn-home-sidebar {
    padding: 11px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .btn-home-sidebar {
    padding: 10px;
    font-size: 12px;
  }
}
.btn-home-sidebar:hover {
  background-color: #e6dfd6;
}

/* =========================
   RESPONSIVE LEGACY
========================= */
@media (max-width: 900px) {
  .confirmation-layout {
    grid-template-columns: 1fr;
  }
  .confirmation-sidebar {
    order: -1;
  }
}
/* ========================================
   BACKOFFICE - STYLE
======================================== */
/* ===== VARIABLES COULEURS ===== */
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fbf7f2;
  color: #3b2f28;
}

/* ===== TITRES ===== */
h1, h2 {
  font-family: "TimesItalic";
  color: #3b2f28;
  margin-bottom: 16px;
  margin-left: 20px;
}

h1 {
  font-size: 26px;
  margin-top: 24px;
}

h2 {
  font-size: 22px;
  margin-top: 24px;
}

/* ========================================
   LAYOUT PLANNING / FORMULAIRE
======================================== */
.planning-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

/* ========================================
   PLANNING TABLE
======================================== */
.planning-container {
  overflow-x: auto;
}

#planningTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
#planningTable th, #planningTable td {
  padding: 6px 5px;
  font-size: 11px;
  text-align: center;
  border: 1px solid #d6d0cb;
}
#planningTable th {
  background-color: #7a6a60;
  color: #fff;
  height: 32px;
  font-weight: 500;
}
#planningTable td {
  background-color: rgb(253.4, 251.8, 249.8);
  height: 28px;
  transition: background-color 0.25s ease;
}
#planningTable td:hover {
  background-color: #7a6a60;
  color: #fff;
  cursor: pointer;
}

/* ========================================
   FORMULAIRE INDISPONIBILITÉ (À DROITE)
======================================== */
.planning-right {
  background-color: rgb(253.4, 251.8, 249.8);
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

#indispoForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#indispoForm label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(28.6060606061, 22.7878787879, 19.3939393939);
}

#indispoForm input,
#indispoForm select {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 10px;
  border: 1px solid #d6d0cb;
  background-color: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
#indispoForm input:focus,
#indispoForm select:focus {
  outline: none;
  border-color: #7a6a60;
  box-shadow: 0 0 0 3px rgba(122, 106, 96, 0.15);
}

/* Début / Fin alignés */
.time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Bouton */
#indispoForm button {
  margin-top: 10px;
  padding: 10px;
  border-radius: 999px;
  background-color: #4B3935;
  color: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#indispoForm button:hover {
  background-color: rgb(51.09375, 38.83125, 36.10625);
  transform: translateY(-1px);
}

/* ========================================
   LISTE DES RÉSERVATIONS
======================================== */
#reservationsList {
  max-width: 800px;
  margin: 12px auto;
  padding: 8px;
  gap: 6px;
  border-radius: 12px;
  margin: 50px auto 80px;
}

#reservationsList:empty::before {
  content: "Aucune réservation pour l’instant.";
  display: block;
  text-align: center;
  font-size: 14px;
  color: black;
  padding: 24px 0;
}

.reservation-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reservation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.reservation-card .reservation-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reservation-card .reservation-info strong {
  font-size: 13px;
}
.reservation-card .reservation-info span {
  font-size: 11px;
  color: black;
}
.reservation-card .reservation-status {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #7a6a60;
  color: #fff;
  text-transform: uppercase;
}

/* ========================================
   PAGINATION RÉSERVATIONS
======================================== */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pagination-controls button {
  padding: 4px 8px;
  border-radius: 6px;
  background-color: #4B3935;
  color: #fff;
  border: none;
  font-size: 11px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.pagination-controls button:hover:not(:disabled) {
  background-color: rgb(51.09375, 38.83125, 36.10625);
  transform: translateY(-1px);
}
.pagination-controls button:disabled {
  background-color: rgb(149.62109375, 113.83203125, 105.87890625);
  cursor: not-allowed;
  transform: none;
}
.pagination-controls span {
  font-size: 11px;
  color: #3b2f28;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .planning-layout {
    grid-template-columns: 1fr;
  }
  .planning-right {
    order: -1;
  }
}
@media (max-width: 768px) {
  #reservationsList {
    padding: 0 16px;
  }
  .reservation-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .reservation-card .reservation-status {
    margin-top: 8px;
  }
}
/* ========================================
   NAVIGATION SEMAINE
======================================== */
.week-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.week-navigation #currentWeekLabel {
  font-size: 14px;
  font-weight: 500;
  color: #3b2f28;
}
.week-navigation button {
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #4B3935;
  color: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.week-navigation button:hover {
  background-color: rgb(51.09375, 38.83125, 36.10625);
  transform: translateY(-1px);
}
.week-navigation button:disabled {
  background-color: rgb(134.765625, 102.421875, 95.234375);
  cursor: not-allowed;
  transform: none;
}

.map-wrapper {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 120px;
}

/* Popup  */
.zen-popup {
  font-size: 13px;
  color: #3b2f28;
  line-height: 1.4;
}

.zen-popup .leaflet-popup-close-button {
  color: #7a6a60;
  font-weight: bold;
  text-shadow: none;
  top: 6px;
  right: 6px;
}

/* Marker fixe à l'écran */
.zen-marker div {
  width: 16px; /* Taille du cercle */
  height: 16px;
  background-color: #7a6a60;
  border: 2px solid #fff;
  border-radius: 50%;
}

/*# sourceMappingURL=style.css.map */
