/* ================================================================
   EDEN Dental Clinic — Barre de contact permanente
   Mobile  : barre fixe en bas (Appeler + WhatsApp)
   Desktop : bulle WhatsApp flottante
   ================================================================ */

.eden-contact-bar,
.eden-contact-fab { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }

/* ---------- Mobile : barre fixe ---------- */
.eden-contact-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .18);
}

.eden-contact-bar a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: filter .25s ease;
}

.eden-contact-bar a:active { filter: brightness(.9); }
.eden-contact-bar .eden-call { background: #0f172a; }
.eden-contact-bar .eden-wa   { background: #25d366; }
.eden-contact-bar svg { width: 18px; height: 18px; flex: none; }

/* ---------- Desktop : bulle flottante ---------- */
.eden-contact-fab {
  display: none;
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 60;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: transform .3s ease;
}

.eden-contact-fab:hover { transform: scale(1.1); }
.eden-contact-fab svg { width: 26px; height: 26px; }

@media (min-width: 768px) {
  .eden-contact-bar { display: none; }
  .eden-contact-fab { display: flex; }
}

/* Évite que la barre masque le bas de page sur mobile */
@media (max-width: 767px) {
  body { padding-bottom: 3.6rem; }
}

/* ================================================================
   Bloc « Nos autres soins » — maillage interne
   ================================================================ */
.eden-related {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3.25rem;
  border-top: 1px solid #e2e8f0;
}

.eden-related h2 {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0d9488;
  margin: 0 0 1.25rem;
}

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

.eden-related a {
  display: block;
  padding: .9rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: .9rem;
  font-size: .92rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.eden-related a:hover {
  border-color: #0d9488;
  color: #0d9488;
  transform: translateY(-2px);
}
