.session-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 34, 34, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1500;
}

.session-modal.is-open {
  display: flex;
}

.session-modal-dialog {
  width: min(760px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.session-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.session-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #164a4a;
  margin: 0;
}

.session-modal-close {
  border: 0;
  border-radius: 10px;
  background: #efe8db;
  color: #164a4a;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.session-modal-meta-line {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1b6b6b;
}

.session-modal-text {
  margin: 0 0 10px;
  color: #6f7d73;
  font-size: 15px;
  line-height: 1.6;
}

.session-modal-description {
  color: #164a4a;
  font-weight: 500;
}

#session-modal-details {
  color: #6f7d73;
}

.session-separator {
  border: 0;
  border-top: 1px solid #e2daca;
  margin: 16px 0 12px;
}

.session-cancellation-policy {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.55;
  color: #6f7d73;
}

.session-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: #64af9d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.session-submit:hover:not(:disabled) {
  background: #1b6b6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(100, 175, 157, 0.4);
}

.session-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}
