.ticket-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Pricing sidebar */
.ticket-sidebar {
  position: sticky;
  top: 100px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 16px;
  transition: all 0.35s ease;
  cursor: pointer;
}

.price-card:hover {
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.price-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12), 0 8px 32px rgba(201,168,76,0.12);
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.price-card-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.price-card-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gold-muted);
  color: var(--gold-dark);
}

.price-card-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.price-card .feature-list {
  list-style: none;
  padding: 0;
}

.price-card .feature-list li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-light);
  font-size: 0.85rem;
}

.price-card .feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-card .feature-list li strong {
  color: var(--dark);
  font-weight: 600;
}

.price-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.price-card.is-selected .price-card-check {
  background: var(--gold);
  border-color: var(--gold);
}

.price-card-check::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.price-card.is-selected .price-card-check::after {
  opacity: 1;
}

/* Booking form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 8px 40px var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.06);
}

.booking-form::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -40px -44px 36px;
}

.booking-step {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cream-dark);
}

.booking-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* Date display */
.date-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.date-display:hover {
  border-color: var(--gold-light);
}

.date-display-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.date-display-change {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.date-display-change:hover {
  color: var(--gold);
}

/* Calendar widget */
.calendar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 40px var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.1);
  max-width: 380px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-month {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding-bottom: 4px;
}

.calendar-nav:hover {
  background: var(--gold-muted);
  color: var(--gold-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  background: transparent;
  position: relative;
  width: 100%;
  padding: 0;
}

.calendar-day:hover {
  background: var(--cream);
}

.calendar-day.other-month {
  color: var(--text-muted);
  opacity: 0.45;
}

.calendar-day.today {
  color: var(--gold-dark);
  font-weight: 600;
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.calendar-day.selected {
  border-color: var(--gold);
  color: var(--dark);
  background: var(--gold-muted);
  font-weight: 600;
}

.calendar-day.selected.today::after {
  background: var(--gold-dark);
}

.calendar-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day:disabled:hover {
  background: transparent;
}

/* Time slots */
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-btn {
  padding: 14px 22px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s ease;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.slot-btn:hover {
  border-color: var(--gold-light);
  background: var(--white);
  transform: translateY(-2px);
}

.slot-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  font-weight: 600;
}

.slot-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Language selector */
.language-selector {
  display: flex;
  gap: 12px;
}

.lang-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lang-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--cream);
  color: var(--text);
}

.lang-option input:checked + .lang-btn {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  color: var(--dark);
}

.lang-btn:hover {
  border-color: var(--gold-light);
}

/* Ticket rows */
.ticket-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.ticket-row:hover {
  border-color: rgba(201,168,76,0.15);
  background: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
}

.ticket-row-info {
  flex: 1;
}

.ticket-row-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.ticket-row-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.ticket-row-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-dark);
  white-space: nowrap;
  margin-right: 16px;
  font-family: 'Playfair Display', serif;
  min-width: 80px;
  text-align: right;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.stepper-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
}

.stepper-btn:hover {
  background: var(--cream);
  color: var(--dark);
}

.stepper-btn:active {
  background: var(--cream-dark);
}

.stepper-value {
  width: 44px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  -moz-appearance: textfield;
}

.stepper-value::-webkit-outer-spin-button,
.stepper-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-value:focus {
  outline: none;
  background: var(--cream);
}

.ticket-row-free {
  opacity: 0.7;
}

.ticket-row-free .ticket-row-price {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Name input */
.name-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: var(--dark);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.name-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.name-input::placeholder {
  color: var(--text-muted);
}

/* Summary bar */
.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1520 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.summary-total {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.summary-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.booking-summary .btn {
  padding: 14px 36px;
}

/* Form result */
.form-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  display: none;
  font-size: 0.95rem;
}

.form-result.success {
  display: block;
  background: #eef7ee;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-result.error {
  display: block;
  background: #fef2f2;
  color: #c62828;
  border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 900px) {
  .ticket-layout {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .ticket-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .price-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .ticket-sidebar {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 32px 24px;
  }
  .booking-form::before {
    margin: -32px -24px 28px;
  }
  .ticket-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .ticket-row-price {
    margin-right: 0;
    text-align: left;
    min-width: auto;
  }
  .booking-summary {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .booking-form {
    padding: 24px 18px;
    border-radius: var(--radius-sm);
  }
  .booking-form::before {
    margin: -24px -18px 24px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .slot-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .stepper-btn {
    width: 36px;
    height: 36px;
  }
  .stepper-value {
    width: 40px;
    height: 36px;
  }
}
