/**
 * Pages Soins / Drainage / Madérothérapie / Soin visage
 * Hero, grilles, cartes, tarifs, FAQ, CTA sticky
 */

.dl-hero {
  background: linear-gradient(180deg, var(--white), var(--beige));
  padding: 56px 0;
  border-radius: 16px;
}
.dl-hero > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}
.dl-hero__subtitle { color: #333; max-width: 60ch; margin: 0.5rem 0 1rem; }

/* Mise en évidence (Option B) : terme important sans italique/souligné "type lien" */
.key-term {
  display: inline;
  padding: 0.05em 0.3em;
  border-radius: 8px;
  background: rgba(252, 110, 81, 0.18);
  box-shadow: inset 0 -1px 0 rgba(229, 90, 58, 0.35);
  font-weight: 600;
}

/* Option C : mise en avant par structure (liste "Points clés") */
.dl-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
  max-width: 62ch;
}
.dl-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--beige-200);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  color: #333;
}
.dl-highlight__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(252, 110, 81, 0.18);
  flex-shrink: 0;
}
.dl-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}
.dl-badges li {
  background: var(--beige-200);
  color: #333;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}
.dl-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.dl-hero__media--circle img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 6px solid var(--white);
}
.dl-hero__media--visage img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  background: transparent;
}

@media (max-width: 992px) {
  .dl-hero > .container { grid-template-columns: 1fr; }
  .dl-hero__content { text-align: center; }
  .dl-badges { justify-content: center; }
  .dl-cta-group { justify-content: center; }
  .dl-hero__media--circle img { margin: 20px auto 0 auto; width: 260px; height: 260px; }
  .dl-hero__media--visage img { width: 260px; height: 260px; }
  .dl-cta-group .btn.primary[href*="reservations"] {
    position: relative;
    font-size: 0;
    line-height: normal;
    vertical-align: middle;
  }
  .dl-cta-group .btn.primary[href*="reservations"]::after {
    content: "Réserver";
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
  }
}

.dl-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.dl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}
.dl-card__icon { font-size: 1.6rem; margin-right: 0.5rem; display: inline-block; }
.dl-card h3 { display: flex; align-items: center; margin: 0 0 0.5rem 0; }
.dl-card-spacer { margin-top: 18px; }
.dl-section-block { padding: 20px; }
.dl-section-block.contraindications { padding: 16px; margin-top: 8px; }
.dl-cta-wrap { margin-top: 18px; }
.dl-card-link-wrap { margin-top: 12px; }
.dl-muted-top { margin-top: 10px; }

.dl-steps { padding: 26px 0; }
.dl-steps__list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.dl-steps__list li { position: relative; padding-left: 2.2rem; }
.dl-steps__list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.dl-proof { margin: 26px 0; }
.dl-quote {
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  color: #444;
}
.dl-stats {
  display: grid;
  gap: 0.25rem;
  margin: 0.75rem 0 0 0;
  padding: 0;
  list-style: none;
}
.dl-before-after {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.dl-before-after img { display: block; width: 100%; height: auto; }
.dl-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.dl-after-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dl-ba-slider { position: absolute; left: 0; right: 0; bottom: 0.5rem; margin: 0 auto; width: 70%; }

.dl-pricing { margin: 32px 0; }
.dl-price-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.dl-price-card--featured {
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(252, 110, 81, 0.18);
}
.dl-ribbon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--orange);
  color: var(--black);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
}
.dl-price { font-size: 1.6rem; font-weight: 700; margin: 0.25rem 0; }

/* Description au centre, bouton aligné en bas de la carte */
.dl-price-card .dl-desc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 1rem;
  text-align: center;
}
.dl-price-card .btn {
  margin-top: auto;
}

.dl-faq details {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.dl-faq summary { cursor: pointer; font-weight: 600; }

.dl-trust {
  background: linear-gradient(180deg, var(--beige), var(--white));
  border-radius: 14px;
  padding: 16px;
  margin: 26px 0;
}
.dl-trust__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: var(--orange);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  text-decoration: none;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dl-sticky-cta.visible { opacity: 1; visibility: visible; }
@media (min-width: 992px) { .dl-sticky-cta { display: none; } }

@media (max-width: 992px) { .dl-grid-3 { grid-template-columns: 1fr; } }

/* Section avis Google (style DL : 1 avis, blockquote + dl-stats) */
#google-review .google-review-dl {
  margin: 0;
}
#google-review .reviews-carousel--dl {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
#google-review .reviews-carousel--dl .reviews-carousel-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
#google-review .reviews-carousel--dl .reviews-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
#google-review .reviews-carousel--dl .reviews-strip {
  display: flex;
  gap: 12px;
  height: 100%;
}
#google-review .review-dl-slide {
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 180px;
  min-height: 180px;
  transition: min-height 0.25s ease, height 0.25s ease;
}
#google-review .review-dl-slide--expanded {
  height: auto;
  min-height: unset;
}
#google-review .review-dl-slide .review-text-wrap {
  flex: 0 0 auto;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 641px) {
  #google-review .review-dl-slide {
    height: 200px;
    min-height: 200px;
  }
}
@media (min-width: 901px) {
  #google-review .review-dl-slide {
    height: 220px;
    min-height: 220px;
  }
}
#google-review .review-dl-slide .dl-quote {
  margin: 0;
}
#google-review .review-dl-slide .review-text {
  font-size: inherit;
  line-height: 1.5;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.2s ease;
}
#google-review .review-dl-slide--expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}
#google-review .review-dl-slide .review-more {
  flex-shrink: 0;
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.9rem;
  color: var(--orange);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
#google-review .review-dl-slide .review-more:hover {
  color: var(--orange-600);
}
#google-review .review-dl-slide .review-more[hidden] {
  display: none;
}
/* Liste stats fixe : sous le bouton "Voir plus" (dans le carousel DL) */
#google-review .reviews-carousel--dl > .dl-stats {
  margin-top: 0.75rem;
}
#google-review .reviews-footer {
  margin-top: 12px;
}
#google-review .reviews-arrow {
  border: none;
  background: var(--white);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#google-review .reviews-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
#google-review .reviews-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}
