/* Booking pages: book-now.php + book-now-ok.php */
  .ticket-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    margin: 10px 14px 20px 14px;
  }
  .ticket-card {
    flex: 1 1 0;
    min-width: 0;
    display: block;
    text-align: center;
    padding: 18px 10px;
    border-radius: 12px;
    border: 1px solid rgba(68, 214, 44, 0.2);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
  }
  .ticket-card:hover,
  .ticket-card:focus {
    transform: translateY(-2px);
    border-color: rgba(68, 214, 44, 0.4);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3), 0 0 14px rgba(68, 214, 44, 0.12);
    color: #fff;
  }
  .ticket-card.is-disabled {
    opacity: 0.45;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
  }
  .ticket-card.is-disabled:hover,
  .ticket-card.is-disabled:focus {
    transform: none;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }
  .ticket-title {
    font-family: 'Comfortaa', sans-serif;
    color: #44d62c;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .ticket-stock {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
  }
  .ticket-stock.is-sold-out {
    color: #ff2e2e;
    font-weight: 700;
  }
  .booking-form-wrapper {
    margin: 0 14px;
    padding: 26px 24px;
    border-radius: 14px;
    border: 1px solid rgba(68, 214, 44, 0.28);
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
  .booking-form-wrapper.is-hidden {
    display: none;
  }
  .booking-form-title {
    font-family: 'Comfortaa', sans-serif;
    color: #44d62c;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .booking-field {
    display: flex;
    flex-direction: column;
  }
  .booking-field.full-width {
    grid-column: 1 / -1;
  }
  .booking-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 6px;
  }
  .booking-input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(68, 214, 44, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 0 12px;
    outline: none;
  }
  .booking-input:focus {
    border-color: rgba(68, 214, 44, 0.7);
    box-shadow: 0 0 0 2px rgba(68, 214, 44, 0.13);
  }
  .session-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .session-option {
    position: relative;
    display: block;
    margin: 0;
    cursor: pointer;
  }
  .session-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .session-option-label {
    min-height: 56px;
    border-radius: 10px;
    border: 1px solid rgba(68, 214, 44, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    transition: 0.2s ease;
  }
  .session-time {
    font-weight: 700;
    color: #fff;
  }
  .session-remaining {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
  }
  .session-option input[type="radio"]:checked + .session-option-label {
    border-color: rgba(68, 214, 44, 0.9);
    box-shadow: 0 0 0 2px rgba(68, 214, 44, 0.2);
    background: rgba(68, 214, 44, 0.12);
  }
  .session-option:hover .session-option-label,
  .session-option input[type="radio"]:focus + .session-option-label {
    border-color: rgba(68, 214, 44, 0.62);
  }
  .booking-submit {
    margin-top: 16px;
    min-width: 130px;
    height: 46px;
    border: none;
    border-radius: 11px;
    background: #44d62c;
    color: #0a0a0a;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.2s ease;
  }
  .booking-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(68, 214, 44, 0.28);
  }
  .booking-message {
    margin: 18px 14px 0 14px;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    color: #fff;
  }
  .booking-message.is-success {
    background: rgba(68, 214, 44, 0.18);
    border: 1px solid rgba(68, 214, 44, 0.45);
  }
  .booking-message.is-info {
    background: rgba(0, 145, 255, 0.18);
    border: 1px solid rgba(0, 145, 255, 0.4);
  }
  .booking-message.is-error {
    background: rgba(255, 46, 46, 0.18);
    border: 1px solid rgba(255, 46, 46, 0.4);
    margin-bottom: 10px;
  }
  .booking-note {
    margin: 24px 14px 0 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
    line-height: 1.5;
  }
  @media (max-width: 767px) {
    .ticket-row {
      flex-direction: column;
      gap: 24px;
      margin: 20px 0 30px 0;
    }
    .ticket-card {
      width: 100%;
    }
    .ticket-card {
      padding: 14px 6px;
    }
    .ticket-title {
      font-size: 13px;
    }
    .ticket-stock {
      font-size: 11px;
    }
    .booking-form-wrapper {
      margin: 0;
      padding: 18px 14px;
    }
    .booking-form-grid {
      grid-template-columns: 1fr;
    }
    .booking-field.full-width {
      grid-column: auto;
    }
    .session-options {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .booking-ok-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 14px;
  }
  .booking-ok-card {
    border-radius: 14px;
    border: 1px solid rgba(68, 214, 44, 0.28);
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    padding: 30px 24px;
    text-align: center;
  }
  .booking-ok-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    color: #44d62c;
    margin-bottom: 14px;
  }
  .booking-ok-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
  }
  @media (max-width: 767px) {
    .booking-ok-card {
      padding: 24px 16px;
    }
    .booking-ok-title {
      font-size: 24px;
    }
    .booking-ok-text {
      font-size: 15px;
    }
  }

.terms-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 32px;
  text-align: left;
}

.terms-intro {
  margin-bottom: 30px;
}

.terms-intro .booking-ok-text + .booking-ok-text {
  margin-top: 12px;
}

.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.terms-section {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(68, 214, 44, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(68,214,44,0.045), rgba(68,214,44,0.015) 45%, rgba(255,255,255,0.015) 100%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.terms-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(68,214,44,0), rgba(68,214,44,0.55), rgba(68,214,44,0));
  opacity: 0.9;
}

.terms-section::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(68,214,44,0.10) 0%, rgba(68,214,44,0.04) 35%, rgba(68,214,44,0) 72%);
  pointer-events: none;
}

.terms-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.terms-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(68, 214, 44, 0.12);
  border: 1px solid rgba(68, 214, 44, 0.22);
  color: #44d62c;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 12px rgba(68,214,44,0.08);
}

.terms-section p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  font-size: 15px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.terms-section li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 15px;
}

.terms-section li:last-child {
  margin-bottom: 0;
}

.terms-section li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #44d62c;
  box-shadow: 0 0 10px rgba(68, 214, 44, 0.45);
}

.terms-section strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .terms-card {
    padding: 28px 18px;
  }

  .terms-section {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .terms-section h2 {
    align-items: flex-start;
    font-size: 1rem;
  }

  .terms-number {
    min-width: 46px;
    height: 28px;
    font-size: 0.82rem;
  }

  .terms-section p,
  .terms-section li {
    font-size: 14px;
  }
}
