/* ==========================================================================
   PAGE : SOINS DÉPILATOIRES (Design Éditorial & Menu Spa)
   ========================================================================== */

:root {
  --color-accent: #c49d79;
  --color-plum: #9a1c6a;
  --color-pink: #b82b70;
  --bg-light: #fdfbf7;
  --text-dark: #1a1614;
  --text-muted: #666666;
  --border-light: rgba(0, 0, 0, 0.08);
}

.text-pink {
  color: var(--color-pink);
  font-style: italic;
  font-weight: normal;
}

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

/* --- HERO --- */
.depilatoire-hero {
  padding: 160px 0 80px 0;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.depilatoire-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.scroll-down {
  animation: bounce 2s infinite;
  margin-top: 20px;
}
.scroll-down svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* --- SECTIONS PRÉSENTATION --- */
.presentation-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-block.reverse {
  direction: rtl;
} /* Astuce pour inverser les colonnes */
.feature-block.reverse > * {
  direction: ltr;
}

.feature-img-wrapper {
  position: relative;
}
.feature-img-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-text .subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: block;
}
.feature-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
}
.feature-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Liste d'avantages (Info card épurée) */
.info-list {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed var(--border-light);
}
.info-list p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.info-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
}
.info-list li::before {
  content: "•";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* --- MENU DES PRIX (STYLE SPA) --- */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}
.pricing-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.pricing-header p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.pricing-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.pricing-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
}

/* Ligne de prix */
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}
.price-item:last-child {
  border-bottom: none;
}
.price-item .name {
  font-family: "Roboto", sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-item .prices {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--text-dark);
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-item .prices .abo {
  color: var(--color-pink);
  font-style: italic;
  font-size: 16px;
}
.price-item .prices .separator {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #ccc;
}

/* Légende des prix */
.pricing-legend {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-legend span.abo-legend {
  color: var(--color-pink);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  margin-left: 5px;
}

/* --- FORFAITS --- */
.forfaits-section {
  background-color: #ffffff;
  padding: 60px 50px;
  margin-top: 80px;
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.forfaits-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.forfait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.forfait-item {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  padding: 15px;
  border: 1px dashed var(--border-light);
}
.forfait-item strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  display: block;
  margin-top: 10px;
  font-weight: 400;
  color: var(--color-accent);
}

.forfait-note {
  margin-top: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: var(--color-pink);
  font-style: italic;
}

/* --- BOUTON DE RÉSERVATION GÉNÉRAL --- */
.btn-reserve-wrapper {
  text-align: center;
  margin-top: 50px;
}
.btn-reserve {
  display: inline-block;
  padding: 16px 45px;
  background-color: var(--text-dark);
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.btn-reserve:hover {
  background-color: var(--color-accent);
}

/* BOUTON SCROLL TOP */
#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#myBtn:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-col:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pricing-col:last-child {
    grid-column: auto;
  }
  .depilatoire-hero h1 {
    font-size: 42px;
  }
  .feature-text h2 {
    font-size: 36px;
  }
}
