.accordeon-list {
  margin: 0 0 0 0;
  padding: 0 0 0 44px; /* Reculé encore plus à droite */
  list-style: disc inside;
}
.accordeon-list li {
  font-size: 13px;
  color: var(--text-dark); /* Texte bien lisible */
  margin-bottom: 16px; /* Plus d'espace entre chaque ligne */
  line-height: 1.9; /* Plus aéré */
  position: relative;
  padding-left: 2px; /* Décale légèrement le texte des puces */
}
.accordeon-list li:last-child {
  margin-bottom: 0;
}
/* ================================
   AERYS INSTITUT — Sections
   ================================ */

/* ---- INTRO ---- */

.intro {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 2200px; /* Largeur maximale de vos divs */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--rose-accent);
}

.intro-text p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.intro-visual {
  position: relative;
}

.intro-box {
  aspect-ratio: 4/4;
  background: linear-gradient(
    160deg,
    var(--blush-light) 0%,
    var(--blush) 55%,
    var(--blush-mid) 100%
  );
  position: relative;
  overflow: visible;
}

.intro-box::before {
  content: '';
  position: absolute;
  bottom: 36px;
  right: 36px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 97, 0.3);
}

.intro-box::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 44px;
  right: 44px;
  bottom: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.intro-dot-1 {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  top: 28px;
  right: -5px;
  opacity: 0.55;
}

.intro-dot-2 {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--blush-mid);
  border-radius: 50%;
  bottom: 55px;
  left: -4px;
}

.intro-stat {
  position: absolute;
  bottom: -22px;
  left: -32px;
  background: var(--text-dark);
  padding: 22px 30px;
}

.intro-stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  display: block;
}

.intro-stat .lbl {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 249, 247, 0.45);
  margin-top: 5px;
}

/* ---- SERVICES ---- */

.services {
  background: var(--blush-light);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  max-width: 460px;
}

.services-header h2 em {
  font-style: italic;
  color: var(--rose-accent);
}

.services-header p {
  font-size: 12px;
  color: var(--text-mid);
  max-width: 260px;
  line-height: 1.8;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 46px 34px;
  border: 1px solid rgba(196, 162, 97, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blush-mid), var(--gold));
  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(196, 121, 106, 0.1);
  border-color: rgba(196, 162, 97, 0.22);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--blush-deep);
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
  text-align: justify;
}

.service-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-tag {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--blush-mid);
  color: var(--rose-accent);
  background: var(--blush-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 28px;
  transition:
    gap 0.3s,
    color 0.3s;
}

.service-link:hover {
  gap: 18px;
  color: var(--rose-accent);
}

/* ================================
   CARTES AVEC FILIGRANE PERSONNALISÉ
   ================================ */

.service-card--watermark {
  position: relative;
  overflow: hidden;
}

.service-card__watermark {
  position: absolute;
  width: 190px; /* Ajustez selon la taille de votre image */
  height: auto;
  opacity: 0.8; /* Très transparent pour un effet filigrane */
  bottom: -10px;
  right: -10px;
  transform: rotate(5deg);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    width 0.4s ease;
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 0;
}

.service-card--watermark:hover .service-card__watermark {
  opacity: 0.15; /* Légèrement plus visible au survol */
  transform: rotate(0deg) scale(1.1);
  width: 130px;
}

/* Assurez-vous que le contenu reste au-dessus */
.service-card--watermark h3,
.service-card--watermark p,
.service-card--watermark .service-link {
  position: relative;
  z-index: 1;
}

/* Style de la barre (si vous voulez garder les barres de couleur) */
.service-card--watermark .service-card__bar {
  position: relative;
  z-index: 1;
}

/* ---- POURQUOI NOUS ---- */

.why {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
  max-width: 2200px; /* Largeur maximale de vos divs */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.why-box {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.why-box:nth-child(1) {
  background: var(--white);
  margin-bottom: 34px;
  background-image: url('../img/prestation-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 100;
}
.why-box:nth-child(2) {
  background: var(--blush);
  margin-top: 34px;
  background-image: url('../img/starvac-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 100;
}
.why-box:nth-child(3) {
  background: var(--gold);
  margin-top: -34px;
  margin-bottom: 34px;
  background-image: url('../img/starvac-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 100;
}
.why-box:nth-child(4) {
  background: var(--blush-light);

  background-image: url('../img/prestation-5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 100;
}

.why-box .bnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
}

.why-box:nth-child(1) .bnum {
  color: var(--text-dark);
}
.why-box:nth-child(2) .bnum {
  color: var(--text-dark);
}
.why-box:nth-child(3) .bnum {
  color: var(--white);
}
.why-box:nth-child(4) .bnum {
  color: var(--text-dark);
}

.why-box .blabel {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}

.why-box:nth-child(1) .blabel {
  color: var(--text-dark);
}
.why-box:nth-child(2) .blabel {
  color: var(--text-mid);
}
.why-box:nth-child(3) .blabel {
  color: rgba(255, 255, 255, 0.7);
}
.why-box:nth-child(4) .blabel {
  color: var(--text-dark);
}

.why-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.why-text h2 em {
  font-style: italic;
  color: var(--rose-accent);
}

.why-text > p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}

.why-features {
  margin-top: 42px;
}

.why-feature {
  padding: 19px 0;
  border-bottom: 1px solid rgba(232, 196, 188, 0.5);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.why-feature:first-child {
  border-top: 1px solid rgba(232, 196, 188, 0.5);
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  min-width: 26px;
}

.why-feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.why-feature p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ---- TESTIMONIAL ---- */

.testimonial {
  background: var(--blush);
  text-align: center;
  padding: 100px 120px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 360px;
  color: rgba(196, 162, 97, 0.1);
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  bottom: -90px;
  right: -70px;
  pointer-events: none;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 34px;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-accent);
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--blush-mid);
  border-radius: 50%;
}
.dot.active {
  background: var(--rose-accent);
}

/* ---- RESPONSIVE SECTIONS ---- */

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .services-header p {
    text-align: left;
  }
  .why {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .testimonial {
    padding: 70px 24px;
  }
}

/* ================================
   SECTIONS DÉTAIL (Starvac, Anti-âge)
   ================================ */

.detail-section {
  padding: 100px 80px;
  background: var(--white);
}

.detail-section.detail-alt {
  background: var(--blush-light);
}

.detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.detail-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.detail-inner h2 em {
  font-style: italic;
  color: var(--rose-accent);
}

.detail-intro {
  font-size: 13px;
  line-height: 2;
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 52px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.detail-block {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(196, 162, 97, 0.12);
}

.detail-section.detail-alt .detail-block {
  background: var(--white);
}

.detail-block h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 162, 97, 0.2);
}

.detail-block ul {
  list-style: none;
  padding: 0;
}
.detail-block ul li {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.detail-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.detail-block p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.detail-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.detail-zones span {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  color: var(--rose-accent);
}

.detail-tarif {
  background: var(--text-dark) !important;
  border-color: transparent !important;
  text-align: justify;;
}
.detail-tarif h4 {
  color: var(--off-white) !important;
  border-color: rgba(196, 162, 97, 0.2) !important;
}
.detail-tarif p {
  color: rgba(253, 249, 247, 0.55) !important;
}
.detail-tarif em {
  color: rgba(253, 249, 247, 0.4);
  font-style: italic;
}

.tarif-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196, 162, 97, 0.15);
  margin-bottom: 16px;
  font-size: 12px;
  color: rgba(253, 249, 247, 0.5);
}
.tarif-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

/* ================================
   IMAGE DE FOND STARVAC
   ================================ */

#minceur-detail {
  position: relative;
  overflow: hidden;
}

#minceur-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('../img/starvac-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 1;
}

/* Assurez-vous que le contenu reste au-dessus de l'image de fond */
#minceur-detail .detail-inner {
  position: relative;
  z-index: 2;
}

/* Ajustement responsive */
@media (max-width: 900px) {
  #minceur-detail::before {
    width: 100%; /* Sur mobile, l'image prend toute la largeur */
    opacity: 0.08; /* Plus subtile sur mobile */
  }
}

/* ================================
   IMAGE DE FOND STARVAC - Visage
   ================================ */

#antiage-detail {
  position: relative;
  overflow: hidden;
}

#antiage-detail::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../img/starvac-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 1;
}

/* Assurez-vous que le contenu reste au-dessus de l'image de fond */
#antiage-detail .detail-inner {
  position: relative;
  z-index: 2;
}

/* Ajustement responsive */
@media (max-width: 900px) {
  #antiage-detail::before {
    width: 100%; /* Sur mobile, l'image prend toute la largeur */
    opacity: 0.08; /* Plus subtile sur mobile */
  }
}

/* ================================
   IMAGE DE FOND LASER
   ================================ */

#epilation-detail {
  position: relative;
  overflow: hidden;
}

#epilation-detail::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 75%;
  opacity: 0.85; /* Ajustez l'opacité selon vos préférences (0 = invisible, 1 = opaque) */
  pointer-events: none; /* L'image ne bloque pas les clics */
  z-index: 1;
}

/* Assurez-vous que le contenu reste au-dessus de l'image de fond */
#epilation-detail .detail-inner {
  position: relative;
  z-index: 2;
}

/* Ajustement responsive */
@media (max-width: 900px) {
  #epilation-detail::before {
    width: 100%; /* Sur mobile, l'image prend toute la largeur */
    opacity: 0.08; /* Plus subtile sur mobile */
  }
}

/* ================================
   GRILLE TARIFS ÉPILATION
   ================================ */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 100%;
  padding-right: 10px;
}

.tarif-card {
  background: var(--blush-light);
  border: 1px solid rgba(196, 162, 97, 0.12);
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.tarif-card:hover {
  background: var(--blush);
  border-color: rgba(196, 162, 97, 0.25);
}

.tarif-zone {
  font-size: 13px;
  color: var(--text-dark);
}

.tarif-montant {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
}

.epilation-info {
  margin-top: 40px;
  margin-right: 14px;
  padding: 28px 32px;
  background: var(--blush-light);
  border-left: 3px solid var(--gold);
  width: 100%; /* Réduit de 50% à 45% */
}
.epilation-info p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.epilation-info p:last-child {
  margin-bottom: 0;
}
.epilation-info__highlight {
  margin-top: 15px;
  padding: 10px;
  background: rgba(196, 162, 97, 0.1);
  border-radius: 4px;
  width: 50%;
}

/* Responsive */
@media (max-width: 900px) {
  .detail-section {
    padding: 70px 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .tarifs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================
   DÉTAILS SECTIONS - NOUVELLE STRUCTURE
   ================================ */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Style commun des blocs */
.detail-block {
  padding: 32px 28px;
  border: 1px solid rgba(196, 162, 97, 0.12);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: justify;
}

.detail-alt .detail-block {
  background: var(--white);
}

/* Icône de bloc */
.detail-block__icon {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1;
}

/* Titres */
.detail-block h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 162, 97, 0.2);
}

/* Listes */
.detail-block ul {
  list-style: none;
  padding: 0;
}

.detail-block ul li {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-mid);
  padding: 4px 0 4px 14px;
  position: relative;
}

.detail-block ul li::before {
  content: '#';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

/* Bloc objectif */
.detail-block--objective {
  background: linear-gradient(145deg, #fff, var(--blush-light));
}

.detail-block__highlight {
  margin-top: 15px;
  padding: 10px;
  background: rgba(196, 162, 97, 0.1);
  border-radius: 4px;
}

.detail-block__highlight span {
  display: block;
  font-size: 11px;
  color: var(--text-dark);
  margin: 3px 0;
}

/* Bloc actions */
.detail-block--actions {
  background: var(--white);
}

.protocol-main {
  margin-bottom: 15px;
}

/* Accordéon */
.accordion {
  margin: 15px 0;
  border: 1px solid rgba(196, 162, 97, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.accordion__toggle {
  width: 100%;
  padding: 12px 15px;
  background: var(--blush-light);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  transition: background 0.3s;
}

.accordion__toggle:hover {
  background: var(--blush);
}

.accordion__icon {
  transition: transform 0.3s;
  font-size: 10px;
}

.accordion.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: var(--off-white);
}

.accordion.active .accordion__content {
  max-height: 100%; /* Ajustez selon le contenu */
  transition: max-height 0.5s ease-in;
}

.accordion__inner {
  padding: 15px;
  border-top: 1px solid rgba(196, 162, 97, 0.1);
}

.accordion__inner p {
  font-size: 11px;
  margin: 10px 0 5px;
  color: var(--text-dark);
  font-weight: 500;
}

.accordion__inner ul {
  margin-bottom: 10px;
}

.accordion__inner ul li {
  font-size: 11px;
  padding: 2px 0 2px 14px;
}

.accordion__note {
  margin-top: 10px;
  padding: 8px;
  background: rgba(196, 162, 97, 0.05);
  border-left: 2px solid var(--gold);
  font-style: italic;
}

/* Grille des techniques */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}

.tech-item {
  padding: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.tech-name {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-dark);
}

.tech-desc {
  display: block;
  font-size: 10px;
  color: var(--text-mid);
}

/* Zones traitées */
.detail-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.detail-zones span {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  color: var(--rose-accent);
  border-radius: 20px;
}

/* Bloc offre découverte */
.detail-block--offer {
  background: linear-gradient(145deg, var(--text-dark), #2a211e);
  color: var(--off-white);
  border-color: var(--gold);
}

.detail-block--offer h4 {
  color: var(--off-white);
  border-bottom-color: rgba(196, 162, 97, 0.3);
}

.detail-block--offer ul li {
  color: rgba(253, 249, 247, 0.8);
}

.detail-block--offer ul li::before {
  color: var(--gold);
}

/* Carte d'offre */
.offer-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.offer-card__badge {
  position: absolute;
  top: 8px;
  right: -25px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
}

.offer-card__content {
  flex: 1;
}

.offer-card__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 5px;
}

.offer-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.offer-card__old-price {
  font-size: 12px;
  color: rgba(253, 249, 247, 0.4);
  text-decoration: line-through;
}

.offer-card__new-price {
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-weight: 300;
}

.offer-card__duration {
  font-size: 11px;
  color: rgba(253, 249, 247, 0.5);
}

.offer-details {
  margin-bottom: 20px;
}

.offer-details p {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(253, 249, 247, 0.8);
}

.offer-note {
  margin-top: 10px;
  padding: 8px;
  background: rgba(196, 162, 97, 0.1);
  border-left: 2px solid var(--gold);
  font-style: italic;
  color: rgba(253, 249, 247, 0.6);
}

/* Bouton */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Animation de l'accordéon en JavaScript */

/* ================================
   RESPONSIVE - MODE TÉLÉPHONE
   ================================ */

@media (max-width: 768px) {
  /* Grille principale : 1 seule colonne */
  .detail-grid {
    grid-template-columns: 1fr !important; /* Force 1 colonne */
    gap: 20px;
  }

  /* Espacement des sections */
  .detail-section {
    padding: 60px 20px;
  }

  /* Ajustement des blocs pour mobile */
  .detail-block {
    padding: 25px 20px;
  }

  /* Titres plus petits sur mobile */
  .detail-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  /* Liste plus lisible */
  .detail-block ul li {
    font-size: 13px;
    line-height: 1.7;
  }

  /* Accordéon plus compact */
  .accordion__toggle {
    padding: 10px 12px;
    font-size: 12px;
  }

  .accordion__inner {
    padding: 12px;
  }

  /* Zones traitées en ligne */
  .detail-zones {
    gap: 5px;
  }

  .detail-zones span {
    font-size: 9px;
    padding: 3px 10px;
  }

  /* Offre découverte */
  .offer-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .offer-card__badge {
    top: 5px;
    right: -30px;
    padding: 3px 25px;
    font-size: 9px;
  }

  .offer-card__new-price {
    font-size: 22px;
  }

  .offer-details p {
    font-size: 13px;
  }

  /* Bouton plein largeur */
  .btn-block {
    width: 100%;
    text-align: center;
  }

  /* Grille des techniques sur mobile */
  .tech-grid {
    grid-template-columns: 1fr; /* Une seule colonne pour les techniques */
    gap: 8px;
  }

  .tech-item {
    padding: 6px 10px;
  }

  /* Espacement entre les sections */
  .detail-section + .detail-section {
    margin-top: 10px;
  }
}

/* Pour les très petits écrans (moins de 480px) */
@media (max-width: 480px) {
  .detail-section {
    padding: 40px 15px;
  }

  .detail-block {
    padding: 20px 15px;
  }

  .detail-block h4 {
    font-size: 16px;
  }

  .detail-block ul li {
    font-size: 12px;
  }

  .detail-block__icon {
    font-size: 28px;
  }

  .offer-card__title {
    font-size: 13px;
  }

  .offer-card__new-price {
    font-size: 20px;
  }

  .accordion__toggle {
    font-size: 11px;
    padding: 8px 10px;
  }

  .detail-zones span {
    font-size: 8px;
    padding: 2px 8px;
  }
}

@media (max-width: 900px) {
  /* ... autres règles existantes ... */

  /* MODIFICATION POUR EPILATION-INFO SUR MOBILE */
  .epilation-info {
    width: 100% !important; /* Force 100% sur mobile */
    max-width: 100%;
    margin-right: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Ajustement de la grille des tarifs sur mobile */
  .tarifs-grid {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    grid-template-columns: 1fr 1fr; /* Garde 2 colonnes sur mobile */
  }

  /* Pour très petits écrans, passe à 1 colonne */
  @media (max-width: 480px) {
    .tarifs-grid {
      grid-template-columns: 1fr; /* 1 seule colonne sur très petits écrans */
    }
  }
}

/* ================================
   ÉPILATION LASER - NOUVELLE STRUCTURE
   ================================ */

.epilation-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 pour les tarifs (gauche), 1/3 pour le bilan (droite) */
  gap: 30px;
  align-items: start;
  margin-bottom: 40px;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour les tarifs */
  gap: 14px;
}

.epilation-bilan {
  height: 100%; /* Prend toute la hauteur pour s'aligner */
  display: flex;
  flex-direction: column;
  background: var(--text-dark) !important;
  margin: 0;
  padding: 32px 28px;
}

.epilation-bilan h4 {
  color: var(--off-white) !important;
  border-bottom-color: rgba(196, 162, 97, 0.3) !important;
  margin-bottom: 20px;
}

.epilation-bilan p {
  color: rgba(253, 249, 247, 0.8) !important;
  margin-bottom: 15px;
  line-height: 1.7;
}

.epilation-bilan em {
  color: rgba(253, 249, 247, 0.6);
}

.epilation-bilan .btn-primary {
  margin-top: auto !important; /* Pousse le bouton en bas */
  width: 100%;
  text-align: center;
  margin-top: 20px !important;
}

/* Responsive mobile */
@media (max-width: 900px) {
  .epilation-wrapper {
    grid-template-columns: 1fr; /* Passe à 1 colonne sur mobile */
    gap: 24px;
  }

  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr); /* Garde 2 colonnes sur mobile */
  }

  .epilation-bilan {
    order: 2; /* Le bilan passe en dessous des tarifs sur mobile */
  }
}

@media (max-width: 480px) {
  .tarifs-grid {
    grid-template-columns: 1fr; /* 1 seule colonne sur très petits écrans */
  }
}

/* ================================
   GRILLE TARIFS ÉPILATION
   ================================ */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 colonnes par défaut */
  gap: 14px;
}

.tarif-card {
  background: var(--blush-light);
  border: 1px solid rgba(196, 162, 97, 0.12);
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.tarif-card:hover {
  background: var(--blush);
  border-color: rgba(196, 162, 97, 0.25);
}

.tarif-zone {
  font-size: 13px;
  color: var(--text-dark);
}

.tarif-montant {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
}

/* Bloc Bilan qui occupe 2 colonnes */
.tarif-bilan-wide {
  grid-column: span 2; /* Prend la largeur de 2 colonnes */
  background: var(--text-dark) !important;
  border-color: transparent !important;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

/* ================================
   ÉTAPES DE SÉANCE (EPILATION)
   ================================ */
.etapes-seance {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  counter-reset: etape;
}
.etapes-seance li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 14px 16px;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(196, 162, 97, 0.04);
}
.etapes-seance li:last-child {
  margin-bottom: 0;
}
.etape-num {
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(196, 162, 97, 0.1);
  margin-right: 8px;
  flex-shrink: 0;
}
.etape-texte {
  color: rgba(253, 249, 247, 0.92);
  font-size: 13px;
  line-height: 1.7;
  font-family: 'Jost', sans-serif;
}
.etape-texte strong {
  color: var(--gold);
  font-weight: 600;
}
.etape-questions {
  display: block;
  margin: 6px 0 2px 0;
  color: var(--rose-accent);
  font-size: 12px;
  font-style: italic;
}
.etapes-seance em {
  color: var(--gold-light);
  font-size: 12px;
  font-style: italic;
  display: block;
  margin-top: 4px;
}

.tarif-bilan-wide h4 {
  color: var(--off-white) !important;
  border-bottom-color: rgba(196, 162, 97, 0.3) !important;
  margin-bottom: 20px;
  font-size: 20px;
}

.tarif-bilan-wide p {
  color: rgba(253, 249, 247, 0.8) !important;
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 12px;
}

.tarif-bilan-wide em {
  color: rgba(253, 249, 247, 0.6);
}

.tarif-bilan-wide .btn-primary {
  margin-top: 20px !important;
  width: 100%;
  text-align: center;
  background: var(--gold);
}

.tarif-bilan-wide .btn-primary:hover {
  background: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }

  .tarif-bilan-wide {
    grid-column: span 2; /* Continue d'occuper 2 colonnes */
  }
}

/* ================================
   ACCORDÉON RECOMMANDATIONS/CONTRAINTES
   ================================ */
.accordeon-block {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 12px 14px 8px 14px;
  box-shadow: 0 2px 12px 0 rgba(196, 162, 97, 0.04);
}
.accordeon-title {
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.accord-reco {
  color: var(--gold);
}
.accord-contr {
  color: var(--rose-accent);
}
.accordeon-icon {
  font-size: 18px;
  display: inline-block;
}
.accordeon-list {
  margin: 0 0 0 0;
  padding: 0 0 0 18px;
  list-style: disc inside;
}
.accordeon-list li {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.92);
  margin-bottom: 7px;
  line-height: 1.7;
  position: relative;
}
.accordeon-list--reco li::marker {
  color: var(--gold);
}
.accordeon-list--contr li::marker {
  color: var(--rose-accent);
}

.accordeon-note {
  display: block;
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 2px;
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 600px) {
  .tarifs-grid {
    grid-template-columns: 1fr; /* 1 colonne sur mobile */
  }

  .tarif-bilan-wide {
    grid-column: span 1; /* Occupe 1 colonne sur mobile */
  }
}

/* ================================
   MENTIONS LEGALES
   ================================ */

.mentions-visual {
  position: relative;
  text-align: justify;
  line-height: 1.8;
}

.mentions-label {
  font-size: 14px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--rose-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mentions-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rose-accent);
}

.mentions-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 28px;
  transition:
    gap 0.3s,
    color 0.3s;
}

h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

h5 {
  font-size: 15px;
  font-style: italic;
}

hr {
  margin-top: 12px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: var(--gold);
}

.deroulement-section {
    margin: 2.5em 0 1.5em 0;
    padding: 2.2em 2em 2em 2em;
    width: 100%;
    max-width: none;
    grid-column: 1 / -1;
    box-sizing: border-box;
    padding: 32px 28px;
    border: 1px solid rgba(196, 162, 97, 0.12);
    background: linear-gradient(145deg, #fff, var(--blush-light));
}
.deroulement-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(196, 162, 97, 0.2);
}
.deroulement-content p {
    font-size: 12px;
    line-height: 1.9;
    color: var(--text-mid);
    padding: 4px 0 4px 14px;
    position: relative;
}
.deroulement-soustitre {
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    color: var(--gold, #c7a16e);
    font-weight: 500;
    font-size: 1.08em;
    letter-spacing: 0.01em;
}
.deroulement-content ul.protocol-list {
    margin: 0.7em 0 0.7em 1.2em;
    padding-left: 1.2em;
}
.deroulement-content ul.protocol-list li {
font-size: 12px;
line-height: 1.9;
color: var(--text-mid);
padding: 4px 0 4px 14px;
position: relative;
}
.deroulement-note {
    margin-top: 1.2em;
    font-style: italic;
    color: var(--text-mid, #888);
    font-size: 1em;
    text-align: center;
}
@media (min-width: 900px) {
    .deroulement-section {
        padding: 2.5em 4em 2.5em 4em;
    }
}