

.booking-modal-overlay {
    display: none; /* ховаємо весь оверлей на старті */
    position: fixed;
    inset: 0;
    background: rgba(63, 52, 42, 0.3);
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.booking-modal-overlay .dialog {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: white;
    border-radius: 12px;
    padding: 40px 32px 40px 32px;
    box-shadow: 0px 4px 40px 0px #00000029;
}

.booking-modal-overlay .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
}

.booking-modal-overlay .close-btn:hover {
  background: rgba(215,180,106,0.15);
}

.booking-modal-overlay .title {
  font-family: e-Ukraine;
font-weight: 500;
font-size: 24px;
line-height: 144%;
letter-spacing: 1%;
text-align: center;
text-transform: uppercase;
color: #3F342A;
margin: 0 0 10px 0;
}

.booking-modal-overlay .subtitle {
font-family: e-Ukraine;
font-weight: 500;
font-size: 18px;
line-height: 148%;
letter-spacing: 0%;
text-align: center;
color: #3F342A;
margin: 0 0 10px 0;
}

.booking-modal-overlay .subtitle-text {
font-family: Montserrat;
font-weight: 500;
font-size: 16px;
line-height: 148%;
letter-spacing: 0%;
text-align: center;
color: #3F342A;
margin: 0 0 16px 0;
}

.booking-modal-overlay .form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.booking-modal-overlay .form-group {
  position: relative;
}

.booking-modal-overlay .input {
  width: 100%;
  height: 60px;
  padding: 4px 20px 4px 20px;
  border: 1px solid #5D554D1F;
  border-radius: 12px;
  font-size: 16px;
  color: #3F342A;
  font-family: Montserrat;
font-weight: 500;
font-size: 16px;
line-height: 148%;
letter-spacing: 0%;
}

.booking-modal-overlay .input:focus {
  outline: none;
}

.booking-modal-overlay .form-group label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 16px;
  color: #98928D;
  pointer-events: none;
  transition: all 0.2s ease;
}

.booking-modal-overlay .form-group label span {
  color: #ED7A54;
}

.booking-modal-overlay .form-group.filled label,
.booking-modal-overlay .input:focus + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  background-color: #fff;
  padding: 0 10px;
  font-family: Montserrat;
font-weight: 500;
font-size: 12px;
line-height: 148%;
letter-spacing: 0%;
}

.booking-modal-overlay .submit-btn {
  height: 60px;
  background: #D7B46A;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 0px;
  font-family: Montserrat;
font-weight: 600;
font-size: 18px;
line-height: 148%;
letter-spacing: 0%;
  color: #fff;
}

.booking-modal-overlay .submit-btn:hover {
  background: #C9A55C;
}

.booking-modal-overlay .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.booking-modal-overlay .agreement {
font-family: Montserrat;
font-weight: 500;
font-size: 14px;
line-height: 148%;
letter-spacing: 0%;
text-align: center;
  color: #98928D;
  text-align: center;
}

.booking-modal-overlay .agreement a {
  color: #3480B4;
  text-decoration: none;
}