/* ============================================
   Page Fauteuil Massage - Styles spécifiques
   ============================================ */

/* --- Hero massage --- */
.hero-massage {
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-fonce) 100%);
  padding: 4rem 0 3rem;
}

.hero-massage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-massage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-massage-grid .hero-actions {
    justify-content: center;
  }
}

.hero-massage h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-massage-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--blanc);
  border: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-massage-image img {
  max-height: 100%;
  width: auto;
}

.tagline {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--rouge);
  font-style: italic;
  margin: 1rem 0 0;
  font-weight: 500;
}

/* --- Concept --- */
.concept-box {
  background: var(--dark);
  color: var(--blanc);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.concept-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--jaune) 0%, transparent 70%);
  opacity: 0.15;
}

.concept-box h2 {
  color: var(--blanc);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.concept-box p {
  font-size: 1.05rem;
  color: var(--terre-clair);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.concept-box .highlight {
  color: var(--jaune);
  font-weight: 500;
}

/* --- Programmes --- */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.programme {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 2px solid var(--border);
  transition: all 0.25s ease;
}

.programme:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 22, 20, 0.08);
}

.programme.douceur { border-color: var(--jaune); }
.programme.detente { border-color: var(--rouge); }
.programme.energie { border-color: var(--noir); }

.programme-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border);
}

.programme-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.programme.douceur .programme-header i { color: var(--jaune-hover); }
.programme.detente .programme-header i { color: var(--rouge); }
.programme.energie .programme-header i { color: var(--noir); }

.programme h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.programme-header p {
  font-size: 0.85rem;
  color: var(--terre);
}

.programme ul {
  list-style: none;
  padding: 0;
}

.programme li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.4rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.programme.douceur li:hover { background: var(--jaune-clair); }
.programme.detente li:hover { background: var(--rouge-clair); }
.programme.energie li:hover { background: var(--creme-fonce); }

.programme .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.programme.douceur .num { background: var(--jaune); color: var(--noir); }
.programme.detente .num { background: var(--rouge); color: var(--blanc); }
.programme.energie .num { background: var(--dark); color: var(--jaune); }

/* --- Posters programmes en détail --- */
.programmes-posters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.poster-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.poster-card:hover {
  transform: translateY(-4px);
  border-color: var(--rouge);
  box-shadow: 0 12px 28px rgba(200, 35, 43, 0.12);
}

.poster-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.poster-tag i {
  font-size: 1.15rem;
}

.poster-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--creme);
}

.poster-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: var(--creme);
  color: var(--terre);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-top: 1px solid var(--border);
}

.poster-card:hover .poster-hint {
  background: var(--rouge);
  color: var(--blanc);
}

.poster-hint i {
  font-size: 1rem;
}

/* --- Tarifs --- */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.tarif-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}

.tarif-card:hover {
  transform: translateY(-3px);
  border-color: var(--rouge);
  box-shadow: 0 10px 24px rgba(200, 35, 43, 0.08);
}

.tarif-card.featured {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
}

.tarif-card.featured .tarif-label,
.tarif-card.featured .tarif-note {
  color: rgba(255, 255, 255, 0.85);
}

.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jaune);
  color: var(--noir);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tarif-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terre);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.tarif-price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tarif-card.featured .tarif-price {
  color: var(--jaune);
}

.tarif-price .euro {
  font-size: 1.5rem;
  vertical-align: super;
}

.tarif-note {
  font-size: 0.8rem;
  color: var(--terre);
  line-height: 1.4;
}

.tarif-duree {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--jaune);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* --- Abonnements --- */
.abos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.abo-card {
  background: var(--creme);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.abo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.abo-content h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.abo-content .abo-desc {
  font-size: 0.85rem;
  color: var(--terre);
  margin-bottom: 0.5rem;
}

.abo-content .abo-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--noir);
}

.abo-content .abo-price small {
  font-size: 0.85rem;
  color: var(--terre);
  font-weight: 400;
}

/* --- Bénéfices --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1.25rem;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--jaune);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.section-dark .benefit-icon {
  background: var(--jaune);
  color: var(--noir);
}

.benefit h4 {
  color: inherit;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.benefit p {
  color: inherit;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* --- Contre-indications --- */
.contre-ind {
  background: var(--jaune-clair);
  border-left: 4px solid var(--jaune);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
}

.contre-ind h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.contre-ind h3 i {
  color: var(--rouge);
  font-size: 1.5rem;
}

.contre-ind ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.4rem;
}

.contre-ind li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--noir);
}

.contre-ind li i {
  color: var(--rouge);
  font-size: 0.9rem;
}

/* --- Features tech --- */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--blanc);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.feature-item i {
  font-size: 2rem;
  color: var(--rouge);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--terre);
  margin: 0;
}

/* --- Galerie photos fauteuil --- */
.gallery-fauteuil {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-fauteuil img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.gallery-fauteuil img:hover {
  transform: scale(1.03);
}

/* --- CTA final --- */
.cta-final {
  background: var(--rouge);
  color: var(--blanc);
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 4rem 0;
}

.cta-final h2 {
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-final .btn-yellow {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

/* --- Wrapper vidéo démo --- */
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(200, 35, 43, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  background: var(--noir);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 640px) {
  .video-wrapper {
    border-radius: var(--radius-lg);
  }
}
