.event-page {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Dedicated ticket page — the event's own cover photo as a blurred,
   darkened backdrop behind the whole screen, same technique as the
   portal login screen. --ticket-bg-image is set inline per event since
   the image is dynamic, unlike that screen's fixed asset. */
.event-page.ticket-mode {
  position: relative;
  overflow: hidden;
}

.event-page.ticket-mode::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--ticket-bg-image, none) center 30% / cover no-repeat;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.1);
  z-index: -2;
}

.event-page.ticket-mode::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.93));
  z-index: -1;
}

.utility-bar {
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.utility-bar-left,
.utility-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-buy-tickets-btn {
  width: auto;
  border-radius: 22px;
  padding: 9px 20px;
  cursor: pointer;
}

.mobile-menu-toggle,
.mobile-menu-close {
  display: none;
}

/* On narrow screens the 4 utility-bar items (language, My Account, Buy
   Tickets, Contact) collapse behind a hamburger button. Tapping it turns
   .utility-bar itself into a fixed full-screen menu with the event photo
   as its backdrop, rather than opening a separate overlay element. */
@media (max-width: 640px) {
  .utility-bar {
    padding: 10px 16px;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
  }

  .utility-bar-left,
  .utility-bar-right {
    display: none;
  }

  .utility-bar.mobile-menu-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.94)),
      url("../assets/fearless-convention.jpg") center 30% / cover no-repeat;
  }

  .utility-bar.mobile-menu-open .mobile-menu-toggle {
    display: none;
  }

  .utility-bar.mobile-menu-open .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
  }

  .utility-bar.mobile-menu-open .utility-bar-left,
  .utility-bar.mobile-menu-open .utility-bar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .utility-bar.mobile-menu-open .lang-switcher {
    width: 100%;
    max-width: 280px;
  }

  .utility-bar.mobile-menu-open .lang-switcher-btn,
  .utility-bar.mobile-menu-open .my-account-link,
  .utility-bar.mobile-menu-open .utility-contact-link,
  .utility-bar.mobile-menu-open .utility-buy-tickets-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }

  .utility-bar.mobile-menu-open .lang-switcher-panel {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 280px;
  }
}

.my-account-link,
.utility-contact-link {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 9px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.my-account-link:hover,
.utility-contact-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 9px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

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

.lang-switcher-chevron {
  color: var(--text-dim);
  font-size: 11px;
}

.lang-switcher-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  z-index: 40;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: var(--surface-2);
}

.lang-option-flag {
  font-size: 20px;
  line-height: 1;
}

.lang-option.is-active {
  color: var(--gold);
}

.event-header {
  padding: 8px 32px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.event-header .site-logo {
  height: 88px;
  margin: 0 auto;
}

.event-header a {
  display: inline-block;
}

.event-header h1 {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.event-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

@media (max-width: 640px) {
  .event-main {
    padding: 24px 16px 40px;
  }

  /* These full-bleed sections hardcode a 32px inset matching the desktop
     page padding — on mobile .event-main only insets 16px, so these ended
     up sitting narrower than the rest of the page with extra black space
     down both sides. Match the mobile inset instead. */
  .event-summary-card,
  #event-hero-cta-block,
  #event-hero-simple,
  #tickets-promo-block,
  .site-footer {
    width: calc(100vw - 32px);
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
  }

  .site-footer {
    padding: 28px 20px 32px;
  }
}

.event-summary-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  /* Same full-bleed breakout as .event-cover above it, so the two line up
     at the same width instead of the card sitting inside the narrower
     .event-main column. */
  box-sizing: border-box;
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
}

@media (min-width: 1600px) {
  .event-summary-card {
    width: 1600px;
    margin-left: calc(50% - 800px);
    margin-right: calc(50% - 800px);
  }
}

.event-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-summary-info {
  flex: 1;
  min-width: 180px;
}

.event-presents {
  margin: 0 0 2px;
  font-size: 13px;
  color: var(--text-dim);
}

.event-summary-info h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.event-meta {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
  white-space: pre-line;
}

.event-summary-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-contact {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.event-unavailable {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 28px;
}

.event-concluded-heading {
  color: var(--text-dim);
  font-size: 26px;
  margin: 0 0 16px;
}

.event-unavailable p {
  margin: 6px 0;
}

.success-ticket-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin: 20px auto;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.success-ticket-card-info {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.success-ticket-card-info strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.success-ticket-card-info span {
  color: var(--text-dim);
  font-size: 14px;
}

.success-ticket-qr {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 0;
}

.event-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 32px;
}

/* Welcome Video — centered, visible (not blurred) photo backdrop, jump
   buttons directly underneath the video frame. Full-bleed like the other
   sections so the backdrop reads edge to edge. */
#event-hero-cta-block {
  position: relative;
  padding: 56px 32px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 40px;
  box-sizing: border-box;
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
}

@media (max-width: 640px) {
  #event-hero-cta-block {
    padding: 32px 20px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1600px) {
  #event-hero-cta-block {
    width: 1600px;
    margin-left: calc(50% - 800px);
    margin-right: calc(50% - 800px);
  }
}

#event-hero-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/welcome-video-bg.jpg") center 35% / cover no-repeat;
  z-index: -2;
}

#event-hero-cta-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  z-index: -1;
}

.event-hero-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 950px;
  margin: 0 auto;
}

.event-hero-video-col {
  width: 100%;
}

.event-hero-cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.event-hero-cta-buttons .btn-hero-pill {
  width: auto;
  padding: 16px 36px;
}

.btn-hero-pill {
  width: 100%;
  background: var(--gold);
  color: #14140f;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.15s, transform 0.15s;
}

.btn-hero-pill:hover {
  background: #e6c34f;
  transform: translateY(-1px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Full-bleed like .event-cover/.event-hero-cta-block — this used to share
   the now-removed two-column need-to-know row's breakout, now stands on
   its own as a full-width block. */
#event-schedule-block {
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
  box-sizing: border-box;
}

@media (min-width: 1600px) {
  #event-schedule-block {
    width: 1600px;
    margin-left: calc(50% - 800px);
    margin-right: calc(50% - 800px);
  }
}

/* Simple hero — event cover photo, contained (not full-bleed) so it reads
   like a framed flyer rather than an edge-to-edge banner, with a single
   Buy Tickets button centered underneath. Breaks out of the narrow
   .event-main column (680px) so it can actually read as bigger, capped at
   1100px so it stays clearly short of full-bleed/edge-to-edge. */
#event-hero-simple {
  text-align: center;
  margin-bottom: 40px;
  box-sizing: border-box;
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
}

@media (min-width: 1164px) {
  #event-hero-simple {
    width: 1100px;
    margin-left: calc(50% - 550px);
    margin-right: calc(50% - 550px);
  }
}

.hero-simple-image {
  display: block;
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 12px;
}

#event-hero-simple .btn-gold {
  width: auto;
  padding: 14px 44px;
}

/* Get Tickets Now promo banner — same contained-but-large treatment as the
   hero image above. */
#tickets-promo-block {
  text-align: center;
  margin-bottom: 40px;
  box-sizing: border-box;
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
}

@media (min-width: 1164px) {
  #tickets-promo-block {
    width: 1100px;
    margin-left: calc(50% - 550px);
    margin-right: calc(50% - 550px);
  }
}

#tickets-promo-block h2 {
  margin: 0 0 16px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}

.tickets-promo-link {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.tickets-promo-link:hover {
  transform: scale(1.015);
}

.tickets-promo-image {
  display: block;
  width: 100%;
  border-radius: 12px;
}

/* "Buy Tickets" hover — the button's own face swaps to the event's cover
   photo on hover, instead of a separate floating preview. Negative z-index
   on the pseudo-elements keeps the button's own text painted on top
   without needing to wrap it in a span (see CSS painting-order rules —
   in-flow text paints after negative-z-index descendants, before z-index:0+
   ones). `z-index: 0` on the trigger itself pins that stacking context to
   the button, so the negative-z-index layers can't escape underneath
   unrelated page content. */
.buy-tickets-hover-trigger {
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: color 0.2s;
}

.buy-tickets-hover-trigger::before,
.buy-tickets-hover-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.buy-tickets-hover-trigger::before {
  background-image: var(--buy-tickets-hover-bg, none);
  background-size: cover;
  background-position: center 40%;
  z-index: -2;
}

.buy-tickets-hover-trigger::after {
  background: rgba(10, 10, 10, 0.45);
  z-index: -1;
}

.buy-tickets-hover-trigger:hover::before,
.buy-tickets-hover-trigger:hover::after {
  opacity: 1;
}

.buy-tickets-hover-trigger:hover {
  color: #fff;
}

#step-info {
  margin-top: 40px;
}

.event-step h3 {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}

.event-description {
  white-space: pre-wrap;
  line-height: 1.6;
  margin-bottom: 20px;
}

#event-schedule-block {
  margin-bottom: 40px;
  position: relative;
  padding: 28px;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}

/* Blurred/darkened on purpose, same reasoning as the portal login backdrop
   — this source image has its own promo pricing baked in for a different
   event, so only the color/mood should read, not the actual text. */
#event-schedule-block::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: url("../assets/join-team-bg.jpg") center / cover no-repeat;
  filter: blur(10px) brightness(0.5) saturate(1.1);
  transform: scale(1.08);
  z-index: -2;
}

#event-schedule-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: -1;
}

.promo-video-title {
  text-align: center;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.promo-video-badges {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 16px;
}

.promo-video-frame {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.promo-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.promo-video-embed iframe,
.promo-video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.schedule-day {
  margin-bottom: 22px;
}

.schedule-day:last-child {
  margin-bottom: 0;
}

.schedule-day-header {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--gold);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.schedule-time-cell {
  padding: 12px 14px;
  font-weight: 700;
  white-space: nowrap;
  width: 1%;
  border-right: 2px solid var(--gold);
  vertical-align: top;
  font-size: 13px;
}

.schedule-session-cell {
  padding: 12px 14px;
  font-size: 14px;
}

.schedule-location {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 400;
}

.schedule-description {
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 4px;
}

.schedule-timezone-note {
  font-size: 12px;
  color: var(--text-dim);
  margin: 14px 0 0;
  text-align: center;
}

.ticket-type-group {
  border-bottom: 1px solid var(--border);
}

.ticket-type-group:last-child {
  border-bottom: none;
}

.ticket-type-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.payment-plan-choice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--text-dim);
}

.payment-plan-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.payment-plan-choice input[type="radio"] {
  width: auto;
  margin: 0;
}

.order-line small {
  display: block;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 11px;
  margin-top: 2px;
}

.ticket-type-info strong {
  display: block;
}

.ticket-type-info span {
  color: var(--text-dim);
  font-size: 13px;
}

.ticket-qty-input {
  width: 70px;
  margin: 0;
  text-align: center;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.promo-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.promo-row input {
  margin-bottom: 0;
  flex: 1;
}

.promo-feedback {
  font-size: 13px;
  min-height: 16px;
  margin: 0 0 16px;
}

.promo-feedback.promo-ok {
  color: var(--success);
}

.promo-feedback.promo-bad {
  color: var(--danger);
}

.order-summary {
  margin-bottom: 20px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.order-line-total {
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  padding-top: 12px;
  color: var(--gold);
}

.payment-coming-soon {
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.payment-coming-soon p:first-child {
  color: var(--text);
  margin-top: 0;
}

.payment-coming-soon p:last-child {
  margin-bottom: 0;
}

#proceed-to-payment-btn {
  width: 100%;
  margin-top: 8px;
}

#proceed-to-payment-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.payment-secure-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin: 10px 0 0;
}

#payment-error.hidden {
  display: none;
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0 20px;
  cursor: pointer;
}

.agree-row input {
  width: auto;
  margin: 3px 0 0;
  flex-shrink: 0;
}

.need-to-know-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.need-to-know-row:last-child {
  border-bottom: none;
}

.need-to-know-row input {
  width: auto;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--gold, #d4a24c);
}

.need-to-know-row span {
  font-size: 14px;
  line-height: 1.5;
}

.need-to-know-row .required-asterisk {
  color: var(--gold, #d4a24c);
}

#step-verify-email {
  text-align: center;
}

#verify-edit-email-btn {
  width: auto;
  margin: 12px auto 0;
  padding: 9px 20px;
  display: inline-block;
}

.verify-code-input {
  font-size: 28px;
  letter-spacing: 12px;
  text-align: center;
  font-weight: 700;
  max-width: 220px;
  margin: 16px auto;
  display: block;
}

.verify-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.link-inline-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-dim);
  font-size: 13px;
  font-family: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

.link-inline-btn:hover {
  color: var(--gold, #d4a24c);
}

/* Footer */
/* Full-bleed like .event-cover/.event-schedule-block/etc — otherwise this
   sits in the narrower .event-main column and reads as cut off on wide
   screens instead of spanning the page. */
.site-footer {
  box-sizing: border-box;
  width: calc(100vw - 64px);
  margin-left: calc(50% - 50vw + 32px);
  margin-right: calc(50% - 50vw + 32px);
  margin-top: 48px;
  padding: 40px 48px 48px;
  border-top: 1px solid var(--border);
}

@media (min-width: 1600px) {
  .site-footer {
    width: 1600px;
    margin-left: calc(50% - 800px);
    margin-right: calc(50% - 800px);
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 28px;
}

@media (max-width: 560px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand .site-logo {
  height: 52px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin: 0 0 10px;
}

.footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 5px 8px;
  min-width: 44px;
  height: 26px;
  font-style: italic;
}

.payment-badge-visa {
  background: #1a1f71;
  color: #fff;
}

.payment-badge-amex {
  background: #006fcf;
  color: #fff;
  font-style: normal;
}

.payment-badge-discover {
  background: #f68121;
  color: #1a1a1a;
  font-style: normal;
}

.payment-badge-mastercard {
  background: #fff;
  gap: 2px;
  padding: 5px 10px;
}

.mc-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.mc-circle-red {
  background: #eb001b;
  margin-right: -6px;
}

.mc-circle-yellow {
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.payment-badge-unionpay {
  background: #000;
  color: #fff;
  font-style: normal;
  flex-direction: column;
  line-height: 1.1;
  height: auto;
  padding: 5px 10px;
  gap: 1px;
}

.payment-badge-unionpay small {
  font-size: 8px;
  font-weight: 500;
  color: #ccc;
  font-style: italic;
}

.payment-badge-visa-debit {
  background: #fff;
  color: #1a1f71;
  flex-direction: column;
  line-height: 1.1;
  height: auto;
  padding: 5px 10px;
  gap: 1px;
}

.payment-badge-visa-debit small {
  font-size: 9px;
  font-weight: 800;
  color: #f7a600;
  font-style: normal;
}

.payment-badge-mc-debit {
  background: #fff;
  gap: 2px;
  padding: 5px 8px;
  position: relative;
}

.payment-badge-mc-debit em {
  font-style: normal;
  font-weight: 800;
  font-size: 8px;
  color: #1a1a1a;
  margin-left: 4px;
}

.policy-sections {
  margin-bottom: 20px;
}

.policy-sections details {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.policy-sections summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s;
}

.policy-sections summary:hover {
  color: var(--gold);
}

.policy-sections p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 10px 0 0;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin: 0;
}

/* Support / FAQ widget */
.support-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #14140f;
  border: none;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.support-fab:hover {
  background: #e6c34f;
}

.support-fab-icon {
  font-size: 16px;
}

.support-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: min(600px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 60;
  overflow: hidden;
}

.support-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--gold);
  color: #14140f;
}

.support-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #14140f;
  cursor: pointer;
}

.support-search-row {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.support-search-row input {
  margin-bottom: 0;
}

.support-faq-list {
  overflow-y: auto;
  padding: 8px 18px;
  flex: 1;
}

.support-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.support-faq-item:last-child {
  border-bottom: none;
}

.support-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.support-faq-item summary:hover {
  color: var(--gold);
}

.support-faq-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 8px 0 0;
}

.support-faq-empty {
  font-size: 13px;
  color: var(--text-dim);
  padding: 12px 0;
}

.support-panel-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.support-panel-footer a {
  color: var(--gold);
  margin-left: 6px;
}
