@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --navy: #0B1F4E;
  --navy-dark: #071535;
  --navy-light: #14295E;
  --red: #C8102E;
  --red-dark: #9E0C23;
  --red-light: #FF3B57;
  --white: #FFFFFF;
  --grey-bg: #F2F5FB;
  --grey-bg-alt: #E9EDF6;
  --grey-border: #E1E5EE;
  --text: #16192B;
  --text-muted: #626C82;
  --success: #1E9E5A;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 78, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 78, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 78, 0.16);
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--grey-bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

/* ============ TOPBAR ============ */
.topbar {
  background: rgba(7, 21, 53, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 50%, var(--red) 100%);
}
.topbar-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-logo {
  height: 38px;
  width: 38px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
}
.brand {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
}

/* ============ PAGE LAYOUT (mobile-first, single column) ============ */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============ PAY TOTAL ============ */
.pay-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 16px 18px;
  background: var(--grey-bg);
  border-radius: var(--radius-md);
}
.pay-total-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.pay-total-amount {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  font-size: 1.5rem;
}

/* ============ POSTER ============ */
.poster-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.poster-img { width: 100%; height: auto; display: block; }

/* ============ INCLUDES ============ */
.section-heading {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}
@media (min-width: 560px) {
  .includes-list { grid-template-columns: 1fr 1fr; gap: 11px 20px; }
}
.includes-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.includes-list li::before {
  content: '🔥';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

/* ============ TICKET TYPES ============ */
.ticket-types { display: flex; flex-direction: column; gap: 12px; }
.ticket-type {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.ticket-type:hover { border-color: #C2CCE2; }
.ticket-type.selected {
  border-color: var(--red);
  background: #FFF5F6;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.12);
}
.ticket-type input { position: absolute; opacity: 0; pointer-events: none; }

/* selection dot on the far left */
.tt-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  transition: all 0.18s;
  flex-shrink: 0;
}
.ticket-type.selected .tt-check { background: var(--red); border-color: var(--red); color: var(--white); }

.tt-info { display: flex; flex-direction: column; gap: 2px; text-align: left; min-width: 0; }
.tt-label { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.tt-note { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.tt-price {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============ EVENT INFO ============ */
.event-info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
}
.event-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--grey-border);
}
.event-info-row:last-child { border-bottom: none; }
.event-info-ico {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  border-radius: 11px;
  flex-shrink: 0;
}
.event-info-row > div { display: flex; flex-direction: column; gap: 1px; }
.event-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.event-info-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
}

/* ============ CONTACT ============ */
.contact-card { text-align: left; }
.contact-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 18px;
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.contact-item:hover { border-color: var(--red); background: #FFF5F6; transform: translateY(-1px); }
.contact-ico {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  border-radius: 11px;
  flex-shrink: 0;
}
.contact-detail { display: flex; flex-direction: column; gap: 1px; }
.contact-detail-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
  color: var(--text-muted);
}
.contact-detail-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

/* ============ CARD ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 560px) {
  .card { padding: 30px; }
}

/* ============ STEP TITLES ============ */
.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 36px 0 18px;
}
.step-title:first-child { margin-top: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 31, 78, 0.25);
}
.step-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--grey-border), transparent);
}
.step-note {
  margin: -6px 0 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============ QUANTITY STEPPER ============ */
.qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--grey-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.qty-btn:hover { background: var(--navy); color: var(--white); }
.qty-btn:active { transform: scale(0.9); }
#quantity {
  width: 52px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  border: none;
  background: transparent;
  color: var(--navy);
}
.qty-hint { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ============ FORMS ============ */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-grid[hidden] { display: none; }
.field-grid label:first-child { grid-column: 1 / -1; }

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.2px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 13px 15px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  font-weight: 500;
  background: #FBFCFE;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  width: 100%;
}
input::placeholder { color: #A7B0C4; font-weight: 400; }
input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 31, 78, 0.10);
}
input:invalid:not(:placeholder-shown) { border-color: var(--red-light); }

input.field-invalid {
  border-color: var(--red) !important;
  background: #FFF6F7;
  animation: shake 0.3s ease;
}
@keyframes shake {
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

input.is-linked {
  background: var(--grey-bg-alt);
  color: var(--text-muted);
  cursor: not-allowed;
  border-style: dashed;
}

/* ============ CHECKBOX OPTION ============ */
.checkbox-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #EEF3FF, #F5F8FF);
  border: 1.5px solid #D6E1FA;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
  transition: border-color 0.15s, transform 0.1s;
}
.checkbox-option:hover { border-color: #B9CCF5; }
.checkbox-option input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer;
}

/* ============ HOLDER BLOCKS ============ */
.holder-block {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  animation: rise 0.4s ease both;
}
.holder-block:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11, 31, 78, 0.06); }
.holder-block h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.holder-block h3::before {
  content: '🎫';
  font-size: 0.9rem;
}
.holder-block .field-grid { grid-template-columns: 1fr 0.8fr 1.3fr; }
.holder-block .field-grid label:first-child { grid-column: auto; }

/* ============ PAYMENT METHODS ============ */
.payment-methods {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pm-option {
  flex: 1;
  min-width: 180px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.1s, box-shadow 0.18s;
}
.pm-option:hover { border-color: #C2CCE2; transform: translateY(-1px); }
.pm-option:has(input:checked) {
  border-color: var(--red);
  background: #FFF5F6;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.12);
}
.pm-option input { position: absolute; opacity: 0; pointer-events: none; }
.pm-icon {
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  border-radius: 11px;
  flex-shrink: 0;
}
.pm-option:has(input:checked) .pm-icon { background: #FFE3E7; }
.pm-text { display: flex; flex-direction: column; gap: 1px; }
.pm-text strong { font-family: var(--font-head); font-size: 0.98rem; color: var(--text); font-weight: 700; }
.pm-text small { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }
.pm-logos {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pm-logos svg { height: 26px; width: auto; border-radius: 4px; }
.pm-logos .logo-oxxo-img { height: 24px; width: auto; border-radius: 4px; }
.pm-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.18s;
  flex-shrink: 0;
}
.pm-option:has(input:checked) .pm-check {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===== Stripe trust badge ===== */
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}
.stripe-badge svg { height: 20px; width: auto; }

#card-element-container {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.card-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stripe-field {
  padding: 13px 15px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  background: #FBFCFE;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.stripe-field.StripeElement--focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 31, 78, 0.10);
}
.stripe-field.StripeElement--invalid { border-color: var(--red-light); }

.form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  background: #FFF0F1;
  border: 1px solid #FFD3D8;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 18px;
  font-size: 0.88rem;
}
.form-error[hidden] { display: none; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.18s, filter 0.15s;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200, 16, 46, 0.4); filter: brightness(1.04); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-lock { font-size: 0.9rem; }
.btn-mobile-pay { display: none; margin-top: 26px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.18s;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============ SUMMARY TICKET (aside) ============ */
.checkout-aside { position: sticky; top: 88px; }
.summary-ticket {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.summary-stub {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary-stub-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9FB0D6;
}
.summary-stub-event {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.summary-perf {
  height: 20px;
  background: var(--white);
  position: relative;
}
.summary-perf::before, .summary-perf::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grey-bg);
}
.summary-perf::before { left: -10px; }
.summary-perf::after { right: -10px; }
.summary-perf {
  border-bottom: 2px dashed var(--grey-border);
}
.summary-body { padding: 22px 24px 24px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 7px 0;
}
.summary-row strong { color: var(--text); font-weight: 700; }
.summary-divider {
  height: 1px;
  background: var(--grey-border);
  margin: 10px 0;
}
.summary-total { padding-top: 4px; }
.summary-total span { font-family: var(--font-head); font-weight: 700; color: var(--text); font-size: 0.95rem; }
.summary-total strong {
  font-family: var(--font-head);
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 800;
}
.summary-body .btn-primary { margin-top: 18px; }
.summary-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 14px 0 0;
  font-weight: 500;
}

/* ============ OXXO CARD ============ */
.oxxo-card { grid-column: 1 / -1; margin-top: 0; }
#oxxo-result .step-title { margin-top: 0; }

/* ============ SUCCESS PAGE ============ */
.container {
  max-width: 640px;
  margin: -56px auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}
.container.no-hero { margin-top: 56px; }
.container .card { margin-bottom: 20px; }

.success-card { text-align: center; }
.success-icon {
  width: 74px;
  height: 74px;
  line-height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #17824A);
  color: var(--white);
  font-size: 2.1rem;
  margin: 0 auto 22px;
  box-shadow: 0 14px 30px rgba(30, 158, 90, 0.35);
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-title { font-family: var(--font-head); color: var(--navy); margin: 0 0 12px; font-size: 1.6rem; }
.success-card p { color: var(--text-muted); }
.success-card strong { color: var(--text); }
.success-sub { max-width: 400px; margin: 0 auto 18px; }
.order-tag {
  display: inline-block;
  background: var(--grey-bg);
  border: 1px dashed var(--grey-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--text-muted) !important;
  font-family: var(--font-body);
}
.order-tag strong { font-family: var(--font-head); letter-spacing: 0.3px; }

.tickets-list {
  margin-top: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loading-msg {
  text-align: center;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--grey-border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-light {
  border-color: rgba(255,255,255,0.4);
  border-top-color: var(--white);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--grey-bg), #FBFCFE);
  transition: transform 0.12s, box-shadow 0.18s;
}
.ticket-row:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.ticket-row span { font-weight: 700; }
.ticket-cap { font-weight: 600; color: var(--red); font-size: 0.82rem; }
.group-notice {
  background: #FFF7E8;
  border: 1px solid #FCE4B8;
  border-radius: var(--radius-md);
  padding: 15px 17px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #6B4E00;
  text-align: left;
}
.group-notice strong { color: #7A5800; }

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 32px 24px 44px;
}
.footer-secure { opacity: 0.7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .pm-option { min-width: 100%; }
  .tt-price { font-size: 1.15rem; }
}
