/* ----------------------------------------------------
   COMPONENTS (boutons, champs, modal, cartes de lieu)
---------------------------------------------------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  color: var(--text);
}
.btn:hover{ background: rgba(255,255,255,1); }

.btn.primary{
  border-color: var(--brand-border);
  background: var(--brand-soft);
}
.btn.primary:hover{ filter: brightness(0.98); }

.field{ display:grid; gap:6px; margin-bottom: 12px; }
.field span{ color: var(--muted); font-size: 13px; }

input, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: var(--brand-border); }
.card-divider{
  height:1px;
  background: rgba(0,0,0,.12);
  margin: 14px 0;
}

.contact-form-inline{
  margin-top: 6px;
}

.contact-note{
  margin: 10px 0 0;
  line-height: 1.35;
}
.wait-toast{
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.28);
}

.wait-toast.is-open{
  display: flex;
}

.wait-toast-card{
  max-width: 420px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  text-align: center;
}

.wait-toast-card h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.wait-toast-card p{
  margin: 0;
  line-height: 1.45;
}

.wait-toast-card .muted{
  margin-top: 8px;
  font-size: .95rem;
}