/* ============================================================
   MADEMOISELLE TRÉSORS — MODALE DE RÉSERVATION (BookingPress)
   ------------------------------------------------------------
   Modale ouverte par n'importe quel bouton « Réserver ».
   Contient le formulaire BookingPress + notre bloc « contact via »
   (WhatsApp / Snapchat / E-mail) pour compenser la version free.
   ============================================================ */
.mt-modal {
  position: fixed; inset: 0; z-index: 100000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 4vh 16px;
  overflow-y: auto;
}
.mt-modal.open { display: flex; }
.mt-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,6,9,.78);
  backdrop-filter: blur(8px);
}
.mt-modal-box {
  position: relative;
  width: 80vw;
  margin: auto;
  background: radial-gradient(ellipse at 50% 0%, #0b1f35 0%, #06131e 55%, #0a0a0b 100%);
  border: 1px solid rgba(229,192,104,.28);
  border-radius: 12px;
  box-shadow: 0 50px 120px -30px rgba(0,0,0,.9);
  padding: 30px clamp(18px,4vw,40px) 36px;
  animation: mtModalIn .4s cubic-bezier(.22,.61,.36,1);
}
@keyframes mtModalIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.mt-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #d8d3ca; border-radius: 50%;
  cursor: pointer; font-size: 16px; line-height: 1;
  transition: .25s;
}
.mt-modal-close:hover { border-color: var(--mt-gold); color: var(--mt-gold); }
.mt-modal-head { text-align: center; margin-bottom: 22px; }
.mt-modal-head .mt-eyebrow { display: block; margin-bottom: 8px; }
.mt-modal-head h3 {
  font-family: 'Abril Fatface', Georgia, serif;
  color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin: 0;
}

@media (max-width: 600px) {
  .mt-modal { padding: 0; }
  .mt-modal-box { width: 100vw; min-height: 100%; border-radius: 0; border: 0; margin: 0; }
}

/* ============================================================
   CORRECTIF — listes Element UI au-dessus de la modale
   ------------------------------------------------------------
   La modale est en z-index 100000 ; les listes déroulantes et le
   calendrier de BookingPress (Element UI) s'ouvrent au niveau du
   body avec un z-index plus faible et passaient DERRIÈRE la modale
   (durée/créneau impossibles à sélectionner). On les repasse devant
   et on les met à la charte.
   ============================================================ */
.el-select-dropdown,
.el-popper,
.el-picker-panel,
.el-time-panel,
.el-time-spinner,
.el-select__popper,
.el-cascader__dropdown { z-index: 100010 !important; }

.el-select-dropdown,
.el-picker-panel,
.el-time-panel {
  background: #0d0d10 !important;
  border: 1px solid rgba(229,192,104,.25) !important;
  color: #f1ece3 !important;
}
.el-select-dropdown__item { color: #d8d3ca !important; }
.el-select-dropdown__item.selected,
.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover { background: rgba(229,192,104,.12) !important; color: var(--mt-gold) !important; }
