.ticket-purchase-page p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 16px;
}
.ticket-purchase-page .page-description {
  margin: 0 0 30px;
  line-height: 1.8;
  color: #666666;
}
.ticket-purchase-page form.purchase-form {
  display: grid;
  gap: 30px;
}
.ticket-purchase-page .plan-grid {
  display: flex;
  gap: 20px;
}
.ticket-purchase-page .plan-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}
.ticket-purchase-page .plan-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ticket-purchase-page .plan-card input:checked + .plan-option {
  border-color: #1d4ed8;
  background: #edf4ff;
  color: #1d4ed8;
}
.ticket-purchase-page .plan-badge {
  position: absolute;
  top: -14px;
  right: 10px;
  z-index: 1;
  padding: 4px 12px 6px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.ticket-purchase-page .plan-badge-number {
  font-size: 18px;
}
.ticket-purchase-page .plan-badge-percent {
  font-size: 16px;
}
.ticket-purchase-page .plan-option {
  display: block;
  padding: 30px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.ticket-purchase-page .plan-name {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.ticket-purchase-page .plan-price {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}
.ticket-purchase-page .plan-tax {
  font-size: 14px;
}
.ticket-purchase-page .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.ticket-purchase-page .actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-sans);
  cursor: pointer;
  display: block;
  width: 100%;
}
.ticket-purchase-page .actions button:disabled, .ticket-purchase-page .actions button[aria-disabled=true] {
  background: #d1d1d1;
  pointer-events: none;
  cursor: default;
}
.ticket-purchase-page .purchase-notes-block {
  display: grid;
  gap: 10px;
}
.ticket-purchase-page .purchase-notes-title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #111111;
}
.ticket-purchase-page .purchase-notes {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.ticket-purchase-page .purchase-notes li {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
.ticket-purchase-page .purchase-note-emphasis {
  color: #b42318;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ticket-purchase-page .plan-grid {
    flex-direction: column;
    gap: 30px;
  }
}
