/* Deeside Dragons Season Passes - Premium Design System */
:root {
  --tf-bg: #f6f1f2;
  --tf-panel: #ffffff;
  --tf-ink: #12070a;
  --tf-muted: #6f5f64;
  --tf-soft: #eadfe2;
  --tf-soft-2: #f8f1f3;
  --tf-red: #8b1018;
  --tf-red-dark: #4f070d;
  --tf-red-deep: #250306;
  --tf-red-bright: #d51f2a;
  --tf-cream: #fff7ef;
  --tf-gold: #f2bf58;
  --tf-green: #0fa96b;
  --tf-shadow: 0 24px 70px rgba(37, 3, 6, 0.16);
  --tf-shadow-soft: 0 14px 35px rgba(37, 3, 6, 0.09);
  --tf-radius-xl: 28px;
  --tf-radius-lg: 20px;
  --tf-radius-md: 14px;
  --tf-max: 1180px;
}

.tf-pass-page-v2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tf-ink);
  background:
    radial-gradient(circle at top left, rgba(139, 16, 24, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(213, 31, 42, 0.13), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--tf-bg) 38%, #efe6e8 100%);
  min-height: 100vh;
  padding: 28px 0 54px;
}

.tf-pass-page-v2 * {
  box-sizing: border-box;
}

.tf-pass-container {
  width: min(var(--tf-max), calc(100% - 32px));
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

/* Top Bar */
.tf-pass-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.tf-pass-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 16px;
}

.tf-pass-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--tf-red-bright), var(--tf-red-dark));
  box-shadow: 0 12px 25px rgba(139, 16, 24, 0.30);
  font-size: 20px;
}

.tf-pass-brand-logo {
  width: 120px;
  height: auto;
  max-height: 60px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tf-pass-trust-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--tf-muted);
  font-size: 13px;
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tf-pass-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--tf-soft);
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* Hero Section */
.tf-pass-hero-v2 {
  position: relative;
  overflow: hidden;
  border-radius: var(--tf-radius-xl);
  background:
    linear-gradient(135deg, rgba(18, 7, 10, 0.97), rgba(79, 7, 13, 0.93)),
    url("https://images.unsplash.com/photo-1580153690343-efb6a9e1224c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--tf-shadow);
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 28px;
  padding: 42px;
}

.tf-pass-hero-v2:after {
  content: "";
  position: absolute;
  inset: auto -90px -160px auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(213, 31, 42, 0.58), transparent 68%);
  pointer-events: none;
}

.tf-pass-hero-content,
.tf-pass-hero-card {
  position: relative;
  z-index: 1;
}

.tf-pass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffe7ea;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tf-pass-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40e981;
  box-shadow: 0 0 0 6px rgba(64, 233, 129, 0.14);
  animation: tfPulse 2s infinite;
}

@keyframes tfPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.tf-pass-hero-v2 h1 {
  margin: 18px 0 14px;
  max-width: 720px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.91;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.tf-pass-hero-lead {
  max-width: 625px;
  margin: 0 0 24px;
  color: #d7e2f5;
  font-size: clamp(17px, 2.3vw, 21px);
  line-height: 1.45;
}

.tf-pass-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.tf-pass-btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tf-pass-btn:hover {
  transform: translateY(-2px);
}

.tf-pass-btn-primary {
  background: linear-gradient(135deg, var(--tf-red-bright), var(--tf-red-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(139, 16, 24, 0.30);
}

.tf-pass-btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
}

.tf-pass-hero-card {
  align-self: stretch;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  color: var(--tf-ink);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(14px);
}

.tf-pass-status-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--tf-muted);
  font-size: 13px;
  font-weight: 800;
}

.tf-pass-price-big {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 950;
  margin: 4px 0;
}

.tf-pass-price-big small {
  font-size: 15px;
  color: var(--tf-muted);
  letter-spacing: 0;
  font-weight: 800;
}

.tf-pass-benefits {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tf-pass-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #263247;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.tf-pass-benefits li:before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tf-green);
  font-size: 12px;
  font-weight: 950;
}

/* Main Grid Layout */
.tf-pass-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 26px;
  align-items: start;
}

.tf-pass-main-panel,
.tf-pass-side-panel {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(205, 214, 228, 0.86);
  border-radius: var(--tf-radius-xl);
  box-shadow: var(--tf-shadow-soft);
  backdrop-filter: blur(12px);
}

.tf-pass-main-panel {
  padding: 26px;
}

.tf-pass-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.tf-pass-panel-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.055em;
  line-height: 1;
  font-weight: 900;
}

.tf-pass-subtext {
  color: var(--tf-muted);
  margin: 8px 0 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 650;
}

.tf-pass-step-badge {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--tf-red-dark);
  background: #ffe9ec;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Choice Grid (Seating Selector) */
.tf-pass-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 26px;
}

.tf-pass-choice {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--tf-soft);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, border .2s ease, box-shadow .2s ease;
}

.tf-pass-choice:hover,
.tf-pass-choice.active {
  transform: translateY(-2px);
  border-color: var(--tf-red);
  box-shadow: 0 16px 35px rgba(139, 16, 24, 0.13);
}

.tf-pass-choice-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--tf-soft-2);
}

.tf-pass-choice.active .tf-pass-choice-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--tf-red-bright), var(--tf-red-dark));
}

.tf-pass-choice-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 950;
}

.tf-pass-choice-copy {
  margin: 0;
  color: var(--tf-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

/* Product Stack */
.tf-pass-product-stack {
  display: grid;
  gap: 16px;
}

.tf-pass-group-title {
  margin: 26px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--tf-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 950;
}

.tf-pass-group-title span:last-child {
  text-transform: none;
  letter-spacing: 0;
  color: #8a97ab;
  font-size: 12px;
  font-weight: 800;
}

/* Pass Card */
.tf-pass-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--tf-soft);
  background: linear-gradient(180deg, #fff, #f9fbff);
  overflow: hidden;
}

.tf-pass-product-card:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--tf-red-bright), var(--tf-red-dark));
}

.tf-pass-product-info {
  padding-left: 6px;
}

.tf-pass-kicker {
  color: var(--tf-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.tf-pass-title {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.tf-pass-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 9px;
  color: var(--tf-muted);
  font-size: 13px;
  font-weight: 750;
}

.tf-pass-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--tf-soft-2);
}

.tf-pass-buy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tf-pass-price {
  text-align: right;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.tf-pass-price small {
  display: block;
  margin-top: 3px;
  color: var(--tf-muted);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 750;
}

/* Quantity Controls */
.tf-pass-qty {
  display: inline-grid;
  grid-template-columns: 38px 44px 38px;
  height: 40px;
  border: 1px solid #d5deeb;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.tf-pass-qty button,
.tf-pass-qty input {
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 950;
  font-size: 15px;
  width: 100%;
  outline: none;
}

.tf-pass-qty button {
  cursor: pointer;
  color: var(--tf-muted);
  transition: background 0.2s;
}

.tf-pass-qty button:hover {
  background: var(--tf-soft-2);
}

.tf-pass-qty button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tf-pass-qty input {
  color: var(--tf-ink);
}

/* Basket Bar */
.tf-pass-basket-bar {
  position: sticky;
  bottom: 14px;
  z-index: 10;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(11, 18, 32, 0.94);
  color: #fff;
  box-shadow: 0 18px 55px rgba(11,18,32,0.22);
  backdrop-filter: blur(12px);
}

.tf-pass-basket-total strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.tf-pass-basket-total span {
  color: #b9c5d6;
  font-size: 13px;
  font-weight: 750;
}

.tf-pass-basket-bar .tf-pass-btn {
  padding-inline: 26px;
  white-space: nowrap;
}

/* Side Panel */
.tf-pass-side-panel {
  overflow: hidden;
  position: sticky;
  top: 18px;
}

.tf-pass-side-card-top {
  padding: 22px;
  background: linear-gradient(135deg, #fff, #fff0f2);
  border-bottom: 1px solid var(--tf-soft);
}

.tf-pass-side-card-top h3,
.tf-pass-info-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.tf-pass-progress-wrap {
  margin-top: 16px;
}

.tf-pass-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--tf-muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.tf-pass-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #dfe7f3;
}

.tf-pass-progress span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--tf-red-dark), var(--tf-red-bright));
  border-radius: inherit;
}

.tf-pass-info-card {
  padding: 22px;
  border-bottom: 1px solid var(--tf-soft);
}

.tf-pass-mini-list {
  display: grid;
  gap: 13px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tf-pass-mini-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  color: #324056;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.tf-pass-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--tf-soft-2);
  font-size: 14px;
}

.tf-pass-notice {
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: #fff6de;
  border: 1px solid #f5dc9c;
  color: #72510d;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

/* Seat Pick Button */
.tf-pass-seat-pick-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: var(--tf-soft-2);
  border: 1px solid var(--tf-soft);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--tf-red-dark);
  transition: all 0.2s;
}

.tf-pass-seat-pick-btn:hover {
  background: var(--tf-soft);
}

.tf-pass-seat-chip-container {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tf-pass-seat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #1e40af;
}

/* Responsive */
@media (max-width: 960px) {
  .tf-pass-hero-v2,
  .tf-pass-section-grid {
    grid-template-columns: 1fr;
  }

  .tf-pass-hero-v2 {
    padding: 32px;
  }

  .tf-pass-side-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .tf-pass-container {
    width: min(100% - 22px, var(--tf-max));
    padding-top: 14px;
  }

  .tf-pass-top-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tf-pass-trust-strip {
    justify-content: flex-start;
    gap: 8px;
  }

  .tf-pass-trust-strip span {
    font-size: 12px;
    padding: 7px 10px;
  }

  .tf-pass-hero-v2 {
    border-radius: 24px;
    padding: 24px;
    min-height: auto;
  }

  .tf-pass-hero-v2 h1 {
    letter-spacing: -0.065em;
  }

  .tf-pass-hero-actions .tf-pass-btn,
  .tf-pass-basket-bar .tf-pass-btn {
    width: 100%;
  }

  .tf-pass-hero-card {
    padding: 18px;
  }

  .tf-pass-price-big {
    font-size: 38px;
  }

  .tf-pass-main-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .tf-pass-panel-heading {
    flex-direction: column;
  }

  .tf-pass-choice-grid {
    grid-template-columns: 1fr;
  }

  .tf-pass-product-card {
    grid-template-columns: 1fr;
  }

  .tf-pass-buy {
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
  }

  .tf-pass-price {
    text-align: left;
  }

  .tf-pass-basket-bar {
    grid-template-columns: 1fr;
    bottom: 10px;
  }
}

@media (max-width: 430px) {
  .tf-pass-hero-v2,
  .tf-pass-main-panel {
    padding: 18px;
  }

  .tf-pass-brand {
    font-size: 14px;
  }

  .tf-pass-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  .tf-pass-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .tf-pass-pill {
    font-size: 11px;
  }

  .tf-pass-buy {
    flex-direction: column;
  }

  .tf-pass-qty {
    width: 100%;
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}
