.ticket-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(46px, 5vw, 70px) 20px clamp(40px, 4.5vw, 62px);
  color: #f8f1e7;
  background-color: #020a19;
  background-image: url('ticket-section-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ticket-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 7, 18, .1), rgba(1, 7, 18, .2)),
    radial-gradient(circle at 50% 48%, transparent 32%, rgba(0, 4, 13, .18) 100%);
  pointer-events: none;
}

.ticket-glow { display: none; }

.ticket-inner { width: min(1220px, 100%); margin: 0 auto; }

.ticket-heading { text-align: center; margin-bottom: clamp(26px, 3vw, 36px); }
.ticket-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 10px;
  color: #e8b95e;
  font: 600 clamp(12px, 1.3vw, 17px)/1 'Cinzel', serif;
  letter-spacing: .42em;
}
.ticket-eyebrow span { width: 72px; height: 1px; background: linear-gradient(90deg, transparent, #ad7934); }
.ticket-eyebrow span:last-child { transform: rotate(180deg); }
.ticket-heading h2 {
  margin: 0;
  color: #fffdf9;
  font: 400 clamp(31px, 4.2vw, 52px)/1.2 'Playfair Display', 'Prompt', serif;
  text-shadow: 0 7px 28px rgba(0, 0, 0, .55);
}
.ticket-heading > p:last-child {
  margin: 8px 0 0;
  color: #d9bb91;
  font: 300 clamp(14px, 1.4vw, 17px)/1.55 'Prompt', sans-serif;
}

.ticket-carousel {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}
.ticket-grid {
  position: relative;
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
  overflow-x: auto;
  padding: 22px 4px 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}
.ticket-grid::-webkit-scrollbar { display: none; }
.ticket-grid .ticket-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: center;
}
.ticket-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #DCE5ED;
  border: 1px solid rgba(221, 173, 82, .7);
  border-radius: 50%;
  background: rgba(4, 15, 31, .88);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  cursor: pointer;
  transform: translateY(-50%);
}
.ticket-carousel-arrow:hover { color: #fff1c6; background: rgba(119, 71, 24, .88); }
.ticket-carousel-arrow:disabled { opacity: .28; cursor: default; }
.ticket-carousel-arrow--prev { left: 0; }
.ticket-carousel-arrow--next { right: 0; }
.ticket-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2px; }
.ticket-carousel-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 10px; background: rgba(255,255,255,.3); cursor: pointer; transition: width .2s, background .2s; }
.ticket-carousel-dots button.is-active { width: 25px; background: #e5b75d; }

@media (min-width: 901px) {
  .ticket-carousel-arrow,
  .ticket-carousel-dots { display: none; }
  .ticket-grid { overflow: visible; }
}
.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 19px clamp(20px, 2.2vw, 29px) 22px;
  border: 1px solid #9DAFBE;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(18, 34, 58, .95), rgba(2, 13, 29, .98));
  box-shadow: inset 0 1px rgba(255, 232, 169, .1), 0 22px 50px rgba(0, 0, 0, .25);
}
.ticket-card--featured {
  border-width: 2px;
  border-color: #f6d27c;
  background: linear-gradient(155deg, rgba(50, 24, 35, .97), rgba(11, 13, 27, .98));
  box-shadow:
    0 0 0 1px rgba(255, 231, 157, .3),
    0 0 15px rgba(240, 181, 66, .34),
    0 20px 48px rgba(0, 0, 0, .46),
    inset 0 0 16px rgba(255, 214, 110, .06);
  transform: translateY(-5px);
}
.ticket-card--featured::before {
  content: '';
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(255, 199, 77, .1), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.ticket-recommended {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 112px;
  padding: 6px 21px 7px;
  color: #211405;
  text-align: center;
  font: 600 16px/1.1 'Prompt', sans-serif;
  background: linear-gradient(110deg, #8195A8, #DCE5ED, #9DAFBE);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  box-shadow: 0 0 8px rgba(255, 229, 148, .46), 0 0 16px rgba(240, 174, 54, .3);
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .45));
  text-shadow: 0 1px rgba(255, 244, 200, .5);
}
.ticket-card-spark { margin: 0 0 3px; color: #AAB9C8; text-align: center; letter-spacing: .18em; }
.ticket-card h3 {
  margin: 0;
  color: #efc866;
  text-align: center;
  font: 500 clamp(28px, 2.6vw, 38px)/1.2 'Cinzel', serif;
  letter-spacing: .06em;
}
.ticket-price {
  margin: 10px 0 4px;
  color: white;
  text-align: center;
  font: 400 clamp(40px, 3.5vw, 52px)/1 'Playfair Display', serif;
}
.ticket-price span { margin-right: 2px; font-size: .78em; }
.ticket-tier {
  width: fit-content;
  margin: 7px auto 12px;
  padding: 4px 19px;
  color: #f0c566;
  border: 1px solid rgba(190, 98, 62, .72);
  border-radius: 99px;
  background: rgba(82, 14, 21, .46);
  font: 400 14px/1.3 'Prompt', sans-serif;
}
.ticket-card ul {
  flex: 1;
  margin: 0 0 16px;
  padding: 13px 2px 4px;
  list-style: none;
  border-top: 1px solid rgba(217, 169, 77, .25);
}
.ticket-card li { display: flex; align-items: center; gap: 11px; margin: 0 0 9px; font: 300 14px/1.35 'Prompt', sans-serif; }
.ticket-card li i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #e3b353;
  border: 1px solid #879CB0;
  border-radius: 50%;
}
.ticket-select {
  width: 100%;
  min-height: 48px;
  color: #D3DEE8;
  border: 1px solid #AAB9C8;
  border-radius: 10px;
  background: rgba(5, 16, 32, .75);
  cursor: pointer;
  font: 500 17px/1 'Prompt', sans-serif;
  transition: transform .2s, color .2s, background .2s, box-shadow .2s;
}
.ticket-card--featured .ticket-select {
  color: #1f1609;
  border-color: #f1d078;
  background: linear-gradient(110deg, #91A5B8, #DCE5ED, #879CB0);
  box-shadow: 0 0 9px rgba(255, 221, 124, .3);
}
.ticket-select:hover { transform: translateY(-2px); color: #fff4d2; background: rgba(145, 92, 30, .48); box-shadow: 0 8px 22px rgba(0, 0, 0, .3); }
.ticket-card--featured .ticket-select:hover { color: #140e05; background: linear-gradient(110deg, #deb45e, #ffe7a4, #dca94e); }

.ticket-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  padding: 11px 18px;
  border: 1px solid rgba(185, 126, 57, .48);
  border-radius: 13px;
  background: rgba(3, 13, 28, .74);
}
.ticket-assurance div { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 39px; font: 300 14px/1.4 'Prompt', sans-serif; }
.ticket-assurance div + div { border-left: 1px solid rgba(213, 167, 84, .35); }
.ticket-assurance i { color: #B8C5D2; font-size: 23px; }

.ticket-dialog {
  position: fixed !important;
  inset: 0 !important;
  width: min(560px, calc(100% - 32px));
  max-width: 560px;
  max-height: min(720px, calc(100dvh - 32px));
  margin: auto !important;
  padding: 0;
  overflow: auto;
  color: #172438;
  border: 1px solid #d8c8aa;
  border-radius: 6px;
  background: #fbfaf7;
  box-shadow: 0 32px 90px rgba(3, 12, 25, .34);
  transform: none !important;
  box-sizing: border-box;
}
.ticket-dialog:not([open]) { display: none; }
.ticket-dialog[open] { display: block; }
.ticket-dialog::backdrop { background: rgba(5, 14, 27, .68); backdrop-filter: blur(4px); }
.ticket-dialog-card { position: relative; width: 100%; margin: 0; padding: 38px 40px 36px; box-sizing: border-box; }
.ticket-dialog-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; color: #647083; border: 1px solid #d9dde2; border-radius: 2px; background: #fff; cursor: pointer; font-size: 16px; }
.ticket-dialog-close:hover { color: #172438; border-color: #aeb6c1; background: #f2f3f4; }
.ticket-dialog-eyebrow { margin: 0 0 7px; color: #73879A; font: 600 10px/1 'Cinzel', serif; letter-spacing: .3em; }
.ticket-dialog h2 { margin: 0 0 25px; font: 500 27px/1.3 'Prompt', sans-serif; letter-spacing: .01em; }
.ticket-dialog h2 span { color: #73879A; }
.ticket-checkout-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 26px; border-top: 1px solid #e1e3e6; border-bottom: 1px solid #e1e3e6; }
.ticket-checkout-progress > div { position: relative; display: flex; align-items: center; gap: 8px; min-height: 54px; color: #9ba1aa; }
.ticket-checkout-progress > div:not(:last-child)::after { content: ''; position: absolute; right: 8px; width: 18px; height: 1px; background: #d9dde2; }
.ticket-checkout-progress span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font: 500 10px 'Prompt', sans-serif; }
.ticket-checkout-progress strong { font: 400 11px/1.25 'Prompt', sans-serif; }
.ticket-checkout-progress .is-active { color: #73879A; }
.ticket-checkout-progress .is-complete { color: #527963; }
.ticket-order-summary { padding: 7px 20px; border: 1px solid #dfe2e5; border-radius: 3px; background: #fff; }
.ticket-order-summary > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 52px; font: 300 15px/1.4 'Prompt', sans-serif; }
.ticket-order-summary > div + div { border-top: 1px solid #e8eaec; }
.ticket-order-summary strong { color: #667C91; font-size: 17px; font-weight: 500; }
.ticket-order-summary .ticket-booking-detail { align-items: flex-start; padding: 10px 0; }
.ticket-order-summary .ticket-booking-detail strong { max-width: 65%; text-align: right; font-size: 14px; line-height: 1.55; }
.ticket-order-summary .ticket-booking-seats-row strong { overflow-wrap: anywhere; }
.ticket-dialog.is-seat-booking .ticket-quantity button { display: none; }
.ticket-dialog.is-seat-booking .ticket-quantity output::after { content: ' ที่นั่ง'; margin-left: 4px; color: #6c7581; font-size: 13px; font-weight: 300; }
.ticket-quantity { display: flex; align-items: center; gap: 13px; }
.ticket-quantity button { width: 31px; height: 31px; color: #667C91; border: 1px solid #cbb98f; border-radius: 2px; background: #fff; cursor: pointer; font-size: 18px; }
.ticket-quantity button:hover:not(:disabled) { border-color: #73879A; background: #f8f3e9; }
.ticket-quantity button:disabled { opacity: .3; cursor: not-allowed; }
.ticket-quantity output { min-width: 22px; text-align: center; font: 500 17px 'Prompt', sans-serif; }
.ticket-order-summary .ticket-total { min-height: 64px; }
.ticket-total strong { font-size: 23px; }
.ticket-checkout-note { margin: 15px 0 0; color: #6c7581; font: 300 11px/1.5 'Prompt', sans-serif; text-align: center; }
.ticket-checkout-note i { margin-right: 6px; color: #527963; }
.ticket-contact-note { margin: 18px 0 13px; color: rgba(255, 255, 255, .72); font: 300 13px/1.6 'Prompt', sans-serif; text-align: center; }
.ticket-contact-actions { display: grid; gap: 9px; }
.ticket-contact-actions a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; color: #1c1306; border-radius: 8px; background: linear-gradient(110deg, #c3923e, #efd17c); text-decoration: none; font: 500 15px 'Prompt', sans-serif; }
.ticket-contact-actions a + a { color: #fff; background: #1769aa; }
.ticket-modal-step[hidden] { display: none !important; }
.ticket-payment-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 49px;
  margin-top: 17px;
  color: #1b1205;
  border: 1px solid #c8a665;
  border-radius: 3px;
  background: #c8a665;
  cursor: pointer;
  font: 500 14px/1.3 'Prompt', sans-serif;
  letter-spacing: .015em;
}
.ticket-payment-next:hover:not(:disabled) { background: #d5b676; border-color: #d5b676; }
.ticket-payment-next:disabled { opacity: .45; cursor: not-allowed; }
.ticket-payment-head { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 13px; color: #667C91; font: 400 13px 'Prompt', sans-serif; }
.ticket-payment-head button { padding: 5px 0; color: #5e6875; border: 0; background: transparent; cursor: pointer; font: inherit; }
.ticket-bank-details { margin: 0; padding: 8px 18px; border: 1px solid #dfe2e5; border-radius: 3px; background: #fff; }
.ticket-bank-details > div { display: grid; grid-template-columns: 105px 1fr; align-items: center; min-height: 43px; gap: 12px; }
.ticket-bank-details > div + div { border-top: 1px solid #e8eaec; }
.ticket-bank-details dt { color: #727b87; font: 300 13px 'Prompt', sans-serif; }
.ticket-bank-details dd { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin: 0; color: #172438; text-align: right; font: 400 14px 'Prompt', sans-serif; }
.ticket-bank-details dd strong { color: #667C91; font-size: 17px; }
.ticket-bank-details .ticket-bank-brand-row { display: block; min-height: 0; padding: 12px 0; }
.ticket-bank-brand-row dt { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.ticket-bank-details .ticket-bank-brand-row dd { display: block; width: 100%; text-align: left; }
.ticket-bank-brand { display: flex; align-items: center; gap: 18px; min-height: 94px; padding: 13px 20px; border: 1px solid #bfd9c9; border-radius: 3px; background: linear-gradient(100deg, #f2faf5 0%, #fff 72%); box-sizing: border-box; }
.ticket-bank-logo { display: block; width: 72px; height: 68px; flex: 0 0 72px; object-fit: contain; }
.ticket-bank-brand > span { display: flex; flex-direction: column; min-width: 0; }
.ticket-bank-brand small { margin-bottom: 2px; color: #68776e; font: 400 11px/1.35 'Prompt', sans-serif; }
.ticket-bank-brand strong { color: #116b3a !important; font: 600 20px/1.25 'Prompt', sans-serif !important; }
.ticket-bank-brand em { margin-top: 3px; color: #738078; font: 500 9px/1.2 'Cinzel', sans-serif; font-style: normal; letter-spacing: .16em; }
.ticket-bank-details dd button { width: 31px; height: 31px; color: #667C91; border: 1px solid #cbb98f; border-radius: 2px; background: #fff; cursor: pointer; }
.ticket-bank-details .ticket-bank-total dd { color: #667C91; font-size: 21px; font-weight: 600; }
.ticket-slip-upload { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 112px; margin-top: 14px; padding: 15px; color: #667C91; border: 1px dashed #c9b584; border-radius: 3px; background: #fffdf8; cursor: pointer; text-align: center; }
.ticket-slip-upload:hover { background: #f8f3e9; }
.ticket-slip-upload > i { margin-bottom: 5px; font-size: 25px; }
.ticket-slip-upload span { font: 500 14px 'Prompt', sans-serif; }
.ticket-slip-upload small { margin-top: 3px; color: #7a828c; font: 300 11px 'Prompt', sans-serif; }
.ticket-slip-preview { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 10px; margin-top: 10px; color: #5e6875; font: 300 12px 'Prompt', sans-serif; }
.ticket-slip-preview[hidden] { display: none !important; }
.ticket-slip-preview img { width: 52px; height: 52px; border-radius: 7px; object-fit: cover; }
.ticket-slip-preview span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ticket-payment-message { display: none; margin: 11px 0 0; padding: 9px 11px; border-radius: 7px; font: 300 12px/1.5 'Prompt', sans-serif; }
.ticket-payment-message.is-visible { display: block; }
.ticket-payment-message.is-error { color: #8d2830; background: #fbeaec; }
.ticket-payment-message.is-info { color: #775819; background: #f8f0dc; }
.ticket-payment-result { padding: 0 0 2px; text-align: center; }
.eticket { position: relative; overflow: hidden; color: #f8edcf; border: 1px solid #9DAFBE; border-radius: 4px; background: radial-gradient(circle at 50% 22%, rgba(35,65,94,.55), transparent 34%), linear-gradient(145deg, #071426, #020a15 68%); box-shadow: 0 15px 35px rgba(3,12,25,.25); }
.eticket::before { content: ''; position: absolute; inset: 7px; pointer-events: none; border: 1px solid rgba(220,177,88,.65); border-radius: 2px; }
.eticket-topline { position: relative; display: flex; justify-content: space-between; padding: 19px 23px 7px; color: #AEBECD; font: 500 9px/1 'Cinzel', sans-serif; letter-spacing: .16em; }
.eticket-topline span:last-child { color: #f3e4bc; letter-spacing: .06em; }
.eticket-topline span:last-child strong { color: #AEBECD; font-weight: 500; }
.eticket-topline span.is-pending { color: #e0bd69; }
.eticket-brand { position: relative; padding: 5px 20px 15px; }
.eticket-brand img { width: 54px; height: 54px; margin-bottom: 1px; object-fit: contain; filter: drop-shadow(0 0 7px rgba(229,185,91,.3)); }
.eticket-brand p { margin: 0; color: #dcb85f; font: 500 21px/1.15 'Cinzel', serif; letter-spacing: .08em; }
.eticket-brand h3 { margin: 3px 0 0; color: #e2c270; font: 500 21px/1.16 'Cinzel', serif; letter-spacing: .025em; }
.eticket-brand > strong { display: block; margin-top: 3px; color: #e5c879; font: 500 21px/1.15 'Cinzel', serif; }
.eticket-brand > span { display: block; margin-top: 8px; color: #f5ead1; font: 400 9px/1 'Cinzel', serif; letter-spacing: .36em; }
.eticket-tier-row { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; margin: 0 22px 13px; border-top: 1px solid rgba(211,165,76,.7); border-bottom: 1px solid rgba(211,165,76,.7); }
.eticket-tier-row > * { padding: 10px; color: #e6c775; font: 500 25px/1.2 'Cinzel', serif; }
.eticket-tier-row > strong, .eticket-tier-row > span { font-weight: 500 !important; }
.eticket-tier-row > span { border-left: 1px solid rgba(211,165,76,.7); }
.eticket-details { position: relative; display: grid; grid-template-columns: 1fr 1fr; margin: 0 22px 13px; border: 1px solid rgba(211,165,76,.72); border-radius: 3px; text-align: left; }
.eticket-details > div { padding: 9px 12px; }
.eticket-details > div:nth-child(even) { border-left: 1px solid rgba(211,165,76,.58); }
.eticket-details > div:nth-child(n+3) { border-top: 1px solid rgba(211,165,76,.58); }
.eticket-details dt { color: #d4aa53; font: 400 10px/1.3 'Prompt', sans-serif; }
.eticket-details dt i { width: 16px; text-align: center; }
.eticket-details dd { overflow: hidden; margin: 3px 0 0; color: #fff8e8; font: 400 12px/1.35 'Prompt', sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.eticket-number { position: relative; margin: 0 22px 12px; color: #c9a553; font: 400 9px/1.4 'Cinzel', sans-serif; letter-spacing: .08em; }
.eticket-number strong { color: #fff6df; font-weight: 500; }
.eticket-stub { position: relative; padding: 16px 20px 22px; border-top: 1px dashed rgba(219,176,84,.75); }
.eticket-stub::before, .eticket-stub::after { content: ''; position: absolute; top: -9px; width: 18px; height: 18px; border: 1px solid #9DAFBE; border-radius: 50%; background: #fbfaf7; }
.eticket-stub::before { left: -10px; }
.eticket-stub::after { right: -10px; }
.eticket-stub p { margin: 0 0 10px; color: #e4c36f; font: 500 11px/1 'Cinzel', serif; letter-spacing: .22em; }
.eticket-qr { display: grid; width: 166px; height: 166px; margin: 0 auto 8px; place-items: center; border: 1px solid #9DAFBE; border-radius: 3px; background: #fffaf0; }
.eticket-qr img, .eticket-qr canvas { display: block; }
.eticket-barcode { display: grid; width: 100%; margin: 3px auto 10px; color: #fff8e8; background: transparent; text-align: center; }
.eticket-barcode svg { display: block; width: 100%; height: 100px; fill: currentColor; filter: drop-shadow(0 1px 2px rgba(0,0,0,.28)); }
.eticket-barcode span { display: block; overflow: hidden; width: 100%; margin-top: 1px; color: #f1d688; font: 600 12px/1 'Cinzel', monospace; letter-spacing: .15em; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.eticket-stub small { color: #dfc67f; font: 300 10px/1.4 'Prompt', sans-serif; }
.eticket-result-message { margin: 10px 4px 0; color: #68717d; font: 300 11px/1.5 'Prompt', sans-serif; }
.eticket-result-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 12px; }
.eticket-result-actions .ticket-payment-next { margin-top: 0; }
.eticket-result-actions .eticket-download { color: #fff; border-color: #173d2a; background: #17643b; }
.eticket-result-actions .eticket-download:hover:not(:disabled) { border-color: #1d7650; background: #1d7650; }
.eticket-result-actions .eticket-close { min-width: 90px; color: #263344; border-color: #cdd2d8; background: #fff; }
.eticket-result-actions .eticket-close:hover:not(:disabled) { border-color: #aeb6c1; background: #f1f3f5; }

@media (max-width: 900px) {
  .ticket-carousel { width: min(540px, 100%); margin: 0 auto; padding-inline: 42px; }
  .ticket-grid { width: 100%; gap: 18px; }
  .ticket-grid .ticket-card { flex-basis: calc(100% - 8px); }
  .ticket-card--featured { transform: none; margin-top: 7px; }
  .ticket-card { padding-inline: clamp(22px, 7vw, 42px); }
  .ticket-assurance { width: min(560px, 100%); margin-inline: auto; grid-template-columns: 1fr; }
  .ticket-assurance div { justify-content: flex-start; padding: 8px 10px; }
  .ticket-assurance div + div { border-left: 0; border-top: 1px solid rgba(213, 167, 84, .25); }
}

@media (max-width: 520px) {
  .ticket-section {
    padding-inline: 14px;
    background-position: center top;
  }
  .ticket-eyebrow { gap: 10px; letter-spacing: .24em; }
  .ticket-eyebrow span { width: 34px; }
  .ticket-heading h2 { font-size: 34px; }
  .ticket-carousel { padding-inline: 0; }
  .ticket-grid { padding: 22px 38px 25px; scroll-padding-inline: 38px; }
  .ticket-grid .ticket-card { flex-basis: 100%; }
  .ticket-carousel-arrow { width: 34px; height: 34px; background: rgba(4,15,31,.94); }
  .ticket-carousel-arrow--prev { left: 3px; }
  .ticket-carousel-arrow--next { right: 3px; }
  .ticket-card h3 { font-size: 34px; }
  .ticket-price { font-size: 50px; }
  .ticket-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 4px;
  }
  .ticket-dialog-card { padding: 30px 18px 22px; }
  .ticket-dialog h2 { padding-right: 28px; font-size: 23px; }
  .ticket-checkout-progress { margin-bottom: 20px; }
  .ticket-checkout-progress > div { gap: 5px; min-height: 48px; }
  .ticket-checkout-progress > div:not(:last-child)::after { display: none; }
  .ticket-checkout-progress strong { font-size: 9px; }
  .ticket-order-summary { padding-inline: 14px; }
  .ticket-bank-details { padding-inline: 13px; }
  .ticket-bank-details > div { grid-template-columns: 86px 1fr; }
  .ticket-bank-brand { gap: 13px; min-height: 82px; padding: 10px 13px; }
  .ticket-bank-logo { width: 58px; height: 58px; flex-basis: 58px; }
  .ticket-bank-brand strong { font-size: 17px !important; }
  .eticket-topline { padding-inline: 17px; font-size: 8px; }
  .eticket-brand h3, .eticket-brand p, .eticket-brand > strong { font-size: 17px; }
  .eticket-tier-row, .eticket-details, .eticket-number { margin-inline: 15px; }
  .eticket-details > div { padding: 8px; }
  .eticket-details dd { font-size: 10px; }
  .eticket-result-actions { grid-template-columns: 1fr; }
  .eticket-result-actions .eticket-close { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ticket-select { transition: none; }
}
