/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Base ─── */
body.tm {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0f;
  color: #f0eee8;
  min-height: 100vh;
  overflow-x: clip;
}

/* ─── Sticky header wrapper — mega menu anchors here ─── */
/* ─── Nav bar — always sticky at top ─── */
.site-nav-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
}

/* ─── Subheader bar — sticky just below nav, slides away on scroll down ─── */
.site-subheader-bar {
  position: sticky;
  top: 56px;
  z-index: 1000;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-subheader-bar.subheader-bar--hidden {
  top: -200px;
}

/* ─── Nav ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  background: #0a0a0f;
  position: relative;
  overflow: visible;
  z-index: 1001;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: #00b4ff;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; gap: 1rem; align-items: center; }
.nav-plain-link {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 56px;
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-plain-link:hover { color: #fff; }
.signin-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.signin-link:hover { color: #fff; }
.signin-link svg { flex-shrink: 0; }

/* ─── Subheader ─── */
.subheader {
  background: #1155cc;
  padding: 0.75rem 2rem 0;
}

/* ─── Search row ─── */
.search-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  margin-bottom: 0.75rem;
  min-height: 52px;
  max-height: 52px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  flex: 1;
  border-right: 1px solid #dde3f0;
  position: relative;
}
.search-field.search-main { border-right: none; }
.sf-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #1155cc;
}
.sf-text { display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
.sf-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #1155cc;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3px;
}
.sf-input {
  font-size: 14px;
  color: #1a1a2e;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}
.sf-input::placeholder { color: #9aa3b8; }
.sf-dates-val {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1a1a2e;
}
.dates-wrap { cursor: pointer; flex: 0 0 210px; }

/* ─── Date dropdown ─── */
.date-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 0.5px solid #dde3f0;
  border-radius: 8px;
  min-width: 180px;
  z-index: 50;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.date-dropdown.open { display: block; }
.date-option {
  padding: 10px 16px;
  font-size: 13px;
  color: #1a1a2e;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.date-option:hover { background: #f0f4ff; color: #1155cc; }

/* ─── Search button ─── */
.search-btn {
  background: #1155cc;
  color: #fff;
  border: none;
  padding: 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0 8px 8px 0;
  flex-shrink: 0;
}
.search-btn:hover { background: #0d47a1; }

/* ─── Chips ─── */
.chips {
  display: flex;
  gap: 8px;
  padding-bottom: 0.75rem;
  overflow-x: auto;
  overflow-y: clip;
  scrollbar-width: none;
  flex-wrap: nowrap;
  max-width: 100%;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.chip:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.chip.active { background: #fff; border-color: #fff; color: #1155cc; font-weight: 500; }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  height: 280px;
  overflow: hidden;
}
.hero-card { position: relative; overflow: hidden; cursor: pointer; }
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.35s, transform 0.35s;
}
.hero-card:hover img { filter: brightness(0.8); transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.hero-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00b4ff;
  margin-bottom: 4px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}
.hero-card.main .hero-title { font-size: 42px; }
.hero-desc { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; line-height: 1.4; }
.hero-card.main .hero-desc { font-size: 13px; }

/* ─── Sections ─── */
.section { padding: 2rem 2rem 1rem; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.25rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.5px; }
.section-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.see-all { font-size: 12px; color: #00b4ff; cursor: pointer; }

/* ─── Event cards (small) ─── */
.cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.event-card {
  background: #13131f;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: rgba(0,180,255,0.35); }
.event-card-img { position: relative; height: 130px; overflow: hidden; background: #1a1a28; }
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s, transform 0.3s;
}
.event-card:hover .event-card-img img { filter: brightness(0.9); transform: scale(1.04); }
.badge {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0,180,255,0.2);
  border: 0.5px solid #00b4ff;
  color: #00b4ff;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 3px;
}
.badge.onsale {
  background: rgba(0,200,100,0.2);
  border-color: #00c864;
  color: #00c864;
}
.heart {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.heart:hover { background: rgba(255,80,100,0.3); }
.event-card-body { padding: 10px 12px 12px; }
.event-date { font-size: 11px; font-weight: 500; color: #00b4ff; margin-bottom: 4px; }
.event-name { font-size: 13px; font-weight: 500; color: #f0eee8; line-height: 1.3; margin-bottom: 3px; }
.event-venue { font-size: 11px; color: rgba(255,255,255,0.4); }
.event-performers { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─── Big cards (Just Announced) ─── */
.big-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.big-card {
  background: #13131f;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.big-card:hover { border-color: rgba(0,200,100,0.4); }
.big-card-img { position: relative; height: 180px; background: #1a1a28; overflow: hidden; }
.big-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: filter 0.3s, transform 0.3s;
}
.big-card:hover .big-card-img img { filter: brightness(0.85); transform: scale(1.04); }
.big-card-body { padding: 10px 12px 12px; }
.sale-time { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }

/* ─── Footer ─── */
.footer-bar {
  margin: 2rem 2rem 0;
  padding: 1.25rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; height: 220px; }
  .hero-card:last-child { display: none; }
  .cards-row, .big-cards-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .dates-wrap { flex: 0 0 160px; }
}
@media (max-width: 640px) {
  .search-row { flex-wrap: wrap; border-radius: 8px; }
  .search-field { flex: 1 1 100%; border-right: none; border-bottom: 1px solid #dde3f0; }
  .search-field.search-main { border-bottom: none; }
  .dates-wrap { flex: 1 1 100%; }
  .search-btn { border-radius: 0 0 8px 8px; width: 100%; padding: 12px; }
}
@media (max-width: 560px) {
  .cards-row, .big-cards-row { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-card:not(.main) { display: none; }
  .subheader { padding: 1rem 1rem 0; }
  .section { padding: 1.5rem 1rem 0.5rem; }
}

/* ─── Event detail page ─── */
.event-detail__hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.event-detail__hero-inner { padding: 2rem; }
.event-detail__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin: 6px 0 8px;
}
.event-detail__meta { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.event-detail__venue { font-size: 13px; color: rgba(255,255,255,0.5); }

.event-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
.event-detail__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; }
.event-detail__facts { display: flex; flex-direction: column; gap: 10px; }
.fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.fact svg { flex-shrink: 0; color: #00b4ff; }

/* Performers section */
.event-detail__performers {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.performers-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.performers-heading svg { color: #00b4ff; }
.performers-list { display: flex; flex-direction: column; gap: 8px; }
.performer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.performer-row--headline {
  background: rgba(0,180,255,0.05);
  border-color: rgba(0,180,255,0.15);
}
.performer-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  min-width: 68px;
}
.performer-row--headline .performer-role { color: #00b4ff; }
.performer-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* Ticket tiers */
.tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem; }
.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #13131f;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
}
.tier--sold-out { opacity: 0.5; }
.tier__name { font-size: 14px; font-weight: 500; color: #f0eee8; margin-bottom: 3px; }
.tier__avail { font-size: 11px; color: rgba(255,255,255,0.4); }
.tier__right { display: flex; align-items: center; gap: 12px; }
.tier__price { font-size: 16px; font-weight: 500; color: #f0eee8; }
.tier__btn {
  background: #1155cc;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.tier__btn:hover { background: #0d47a1; }
.tier__btn--disabled { background: #333; cursor: not-allowed; }
.tier__note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.4);
}
.empty-icon { margin-bottom: 1rem; opacity: 0.4; }
.empty-title { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.empty-sub { font-size: 13px; margin-bottom: 1.5rem; }
.btn-back {
  display: inline-block;
  background: #1155cc;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* Wide card grid (events listing) */
.cards-row--wide { grid-template-columns: repeat(4, 1fr); }
.event-price { font-size: 11px; color: #00b4ff; margin-top: 4px; }
.event-card-img--lg { height: 180px; }

@media (max-width: 900px) {
  .event-detail__grid { grid-template-columns: 1fr; }
  .cards-row--wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards-row--wide { grid-template-columns: 1fr; }
  .event-detail__title { font-size: 32px; }
}


/* ════════════════════════════════════════
   MEGA MENU — CSS hover driven
   ════════════════════════════════════════ */

/* nav-item is the hover trigger — must be positioned so the
   pseudo-element bridge can fill the gap between bar and panel */
.nav-item {
  display: flex;
  align-items: center;
}

/* ── Button ── */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 0;
  height: 56px;
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-btn:hover,
.nav-item:hover .nav-btn { color: #fff; }

/* Chevron spin on hover */
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* ── Panel — hidden by default ── */
.mega-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -2rem;   /* break out of nav padding */
  right: -2rem;  /* break out of nav padding */
  background: #0d0d1a;
  border-top: 2px solid #00b4ff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.75);
  z-index: 1001;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

/* Invisible bridge: fills gap so mouse moving into panel stays in hover zone */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

/* Show on hover of the nav-item OR when mouse is over the panel itself */
.nav-item:hover .mega-menu,
.mega-menu:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ── Inner grid ── */
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 26px 40px 30px;
}

/* ── Section heading ── */
.mega-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #00b4ff;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(0,180,255,0.2);
}

/* ── Links ── */
.mega-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.14s, padding-left 0.14s;
}
.mega-link:hover { color: #fff; padding-left: 4px; }
.mega-link--more { color: #00b4ff; font-size: 12px; margin-top: 3px; }
.mega-link--more:hover { color: #4dcfff; }

/* ── Icon wrapper ── */
.mega-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.28);
  transition: color 0.14s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-icon svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
  flex-shrink: 0;
}
.mega-link:hover .mega-icon { color: #00b4ff; }

/* ── Featured column ── */
.mega-col--featured {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px;
}

/* ── Featured cards ── */
.mega-featured-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.18s;
  margin-bottom: 8px;
}
.mega-featured-card:hover { border-color: rgba(0,180,255,0.4); }
.mega-featured-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-featured-body { padding: 8px 10px 8px 0; }
.mega-featured-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #00b4ff;
  margin-bottom: 2px;
}
.mega-featured-title {
  font-size: 12px;
  font-weight: 500;
  color: #f0eee8;
  margin-bottom: 3px;
}
.mega-featured-cta { font-size: 11px; color: rgba(255,255,255,0.33); }

/* ── Backdrop overlay (keep in DOM for compat but unused now) ── */
.nav-overlay { display: none; }

/* ═══════════════════════════════════════════════
   CATEGORY PILL
═══════════════════════════════════════════════ */
.event-category-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #00b4ff;
  background: rgba(0,180,255,.12);
  border: 1px solid rgba(0,180,255,.25);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 5px;
}

/* ═══════════════════════════════════════════════
   TOUR FLAG
═══════════════════════════════════════════════ */
.tour-flag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 3px 8px;
}

/* ═══════════════════════════════════════════════
   EVENT CARD FOOTER (duration + price row)
═══════════════════════════════════════════════ */
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 8px;
}
.duration-tag {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* Tour card subtle glow border */
.event-card--tour {
  border-color: rgba(0,180,255,.2) !important;
}
.event-card--tour:hover {
  border-color: rgba(0,180,255,.45) !important;
}

/* ═══════════════════════════════════════════════════════════
   SPORTS SECTION – homepage
═══════════════════════════════════════════════════════════ */
.sports-section {
  border-top: 1px solid rgba(255,255,255,.06);
}
.sports-section__title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sports-section__title-group svg {
  flex-shrink: 0;
  margin-bottom: -1px;
}

/* ── Ensure badge--* variants also override border (not just bg/color) ── */
.badge--presale {
  background: linear-gradient(90deg, #7c3aed, #a855f7) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.badge--onsale {
  background: linear-gradient(90deg, #059669, #10b981) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.badge--soon {
  background: linear-gradient(90deg, #d97706, #f59e0b) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.nav-plain-link--tours {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00b4ff !important;
  font-weight: 600;
}
.nav-plain-link--tours svg { opacity: .8; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE – TOURS ROW
═══════════════════════════════════════════════════════════ */
.tours-section { border-top: 1px solid rgba(255,255,255,.06); }

.tours-section__title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tours-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00b4ff;
  box-shadow: 0 0 0 3px rgba(0,180,255,.2);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,180,255,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(0,180,255,.0); }
}

/* ═══════════════════════════════════════════════════════════
   TOURS INDEX PAGE
═══════════════════════════════════════════════════════════ */
.tours-hero {
  background: linear-gradient(135deg, #070a12 0%, #0d1a35 50%, #070a12 100%);
  border-bottom: 1px solid rgba(0,180,255,.12);
  padding: 3.5rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.tours-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,180,255,.07) 0%, transparent 70%);
}
.tours-hero__inner { position: relative; max-width: 700px; }
.tours-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #00b4ff;
  margin-bottom: .75rem;
}
.tours-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  color: #fff;
  margin-bottom: .75rem;
}
.tours-hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.55;
}

/* Region filter tabs */
.region-tabs-wrap {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 2rem;
  background: #0a0c14;
}
.region-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.region-tabs::-webkit-scrollbar { display: none; }
.region-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  font-weight: 500;
  padding: .9rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  font-family: inherit;
}
.region-tab:hover { color: rgba(255,255,255,.75); }
.region-tab.active {
  color: #00b4ff;
  border-bottom-color: #00b4ff;
}

/* Tours grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px)  { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tours-grid { grid-template-columns: 1fr; } }

.tour-card {
  display: flex;
  flex-direction: column;
  background: #12141c;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,255,.3);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.tour-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1d29;
}
.tour-card__img img { width:100%; height:100%; object-fit:cover; transition: transform .35s; }
.tour-card:hover .tour-card__img img { transform: scale(1.04); }
.tour-card__stops-pill {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 11px; font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border-radius: 5px;
  padding: 3px 9px;
}
.tour-card__body { padding: 14px 16px 16px; display:flex; flex-direction:column; gap:4px; flex:1; }
.tour-card__artist { font-size:11px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.06em; }
.tour-card__name { font-size:15px; font-weight:700; color:#fff; line-height:1.3; }
.tour-card__dates { font-size:12px; color:rgba(255,255,255,.45); }
.tour-card__footer { display:flex; align-items:center; justify-content:space-between; margin-top:8px; gap:8px; }

/* ═══════════════════════════════════════════════════════════
   TOUR DETAIL PAGE
═══════════════════════════════════════════════════════════ */
.tour-detail { max-width: 900px; }
.tour-detail__desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 660px;
}

.tour-region { margin-bottom: 2.5rem; }
.tour-region__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tour-region__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .5px;
  color: #fff;
  flex: 1;
}
.tour-region__count {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 2px 8px;
}

.tour-stops-list { display: flex; flex-direction: column; gap: 0; }
.tour-stop { margin-bottom: 10px; }
.stop-tiers-panel--open + .tour-stop,
.stop-tiers-panel { margin-bottom: 10px; }

.tour-stop {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #12141c;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s, background .2s;
}
.tour-stop:hover { background: #161924; border-color: rgba(0,180,255,.2); }

.tour-stop__date {
  text-align: center;
  min-width: 44px;
  flex-shrink: 0;
}
.tour-stop__month {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #00b4ff;
}
.tour-stop__day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}
.tour-stop__year {
  font-size: 10px;
  color: rgba(255,255,255,.3);
}

.tour-stop__info { flex: 1; min-width: 0; }
.tour-stop__venue {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-stop__city { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.tour-stop__meta { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.tour-stop__time { font-size: 11px; color: rgba(255,255,255,.35); }

.tour-stop__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.tour-stop__price { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }

@media (max-width: 600px) {
  .tour-stop { flex-wrap: wrap; gap: 12px; }
  .tour-stop__right { flex-direction: row; align-items: center; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   TICKET SELECTOR v2 — Event detail page
═══════════════════════════════════════════════════════════ */
.tickets-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tickets-count {
  font-size: 11px;
  font-weight: 600;
  color: #00b4ff;
  background: rgba(0,180,255,.12);
  border: 1px solid rgba(0,180,255,.25);
  border-radius: 20px;
  padding: 3px 10px;
}

.tiers-v2 { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.25rem; }

.tier-v2 {
  background: #13131f;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.tier-v2--selected {
  border-color: rgba(0,180,255,.4);
  background: #13192a;
}
.tier-v2--sold-out { opacity: .45; pointer-events: none; }

.tier-v2__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.tier-v2__label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.tier-v2__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
}
.tier-v2__name { font-size: 14px; font-weight: 600; color: #f0eee8; }
.tier-v2__avail { font-size: 11px; margin-top: 2px; }
.tier-v2__sold-label { font-size: 12px; color: #ef4444; font-weight: 500; }

.tier-v2__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.tier-v2__price {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Stepper */
.tier-v2__stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
}
.stepper-btn {
  width: 32px; height: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  font-family: inherit;
  line-height: 1;
}
.stepper-btn:hover { background: rgba(255,255,255,.1); }
.stepper-val {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Perks drawer */
.tier-v2__perks {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 16px;
  border-top: 0 solid rgba(255,255,255,.06);
}
.tier-v2__perks--open {
  max-height: 120px;
  padding: 10px 16px 14px;
  border-top-width: 1px;
}
.tier-v2__perks ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.tier-v2__perks li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.tier-v2__perks li svg { color: #10b981; flex-shrink: 0; }

/* Order summary */
.order-summary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 1rem;
}
.order-summary__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.order-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 5px;
}
.order-summary__divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 10px 0;
}
.order-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Sticky checkout bar */
.checkout-bar {
  position: sticky;
  bottom: 16px;
  background: #1155cc;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 10;
  margin-top: 1rem;
}
.checkout-bar__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.checkout-bar__sep { opacity: .4; }
.checkout-bar__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1155cc;
  border: none;
  padding: 9px 20px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.checkout-bar__btn:hover { background: #e8f0fe; }

/* ═══════════════════════════════════════════════════════════
   TOUR STOP — EXPANDABLE TICKET PANEL
═══════════════════════════════════════════════════════════ */
.tour-stop--expandable { cursor: default; }
.tour-stop--open {
  border-radius: 10px 10px 0 0;
  border-bottom-color: transparent;
  border-color: rgba(0,180,255,.2);
  background: #161924;
}

.tier-v2__stepper.stop-stepper { /* reuse stepper styles */ }

/* Tier pills in stop meta row */
.tour-stop__tier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.tier-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 7px;
  opacity: .8;
}

/* Expand button active state */
.tier__btn--active {
  background: #0d47a1;
}

/* Tiers panel — hidden/shown */
.stop-tiers-panel {
  display: none;
  background: #0b0e1a;
  border: 1px solid rgba(0,180,255,.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin-top: -2px;   /* pull up to sit flush under the stop row */
}
.stop-tiers-panel--open { display: block; }

.stop-tiers-inner { padding: 18px 20px 20px; }

.stop-tiers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.stop-tiers-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.stop-tiers-event {
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* Card grid for stop tiers */
.stop-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.stop-tier-card {
  background: #13131f;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.stop-tier-card--selected {
  border-color: rgba(0,180,255,.45);
  box-shadow: 0 0 0 1px rgba(0,180,255,.2);
}
.stop-tier-card--sold-out { opacity: .4; pointer-events: none; }

.stop-tier-card__top {
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex: 1;
}
.stop-tier-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.stop-tier-card__price {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.stop-tier-card__name {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.stop-tier-card__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.stop-tier-card__perks li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.stop-tier-card__perks li svg { color: #10b981; flex-shrink:0; }
.stop-tier-card__avail {
  font-size: 10px;
  margin-top: 4px;
}

.stop-tier-card__footer {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
}

/* Stop-level order summary */
.stop-summary {
  background: rgba(0,180,255,.06);
  border: 1px solid rgba(0,180,255,.2);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 6px;
}
.stop-summary__line {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-bottom: 4px;
}
.stop-summary__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.stop-summary__footer span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 600px) {
  .stop-tiers-grid { grid-template-columns: 1fr 1fr; }
  .tier-v2__top { flex-wrap: wrap; gap: 10px; }
  .tier-v2__right { width: 100%; justify-content: space-between; }
  .checkout-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .checkout-bar__btn { justify-content: center; }
}

/* ════════════════════════════════════════
   SEARCH PAGE — sidebar + 3-col grid
   ════════════════════════════════════════ */

.search-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 200px);
  align-items: start;
}

/* ── Sidebar ── */
.search-sidebar {
  padding: 2rem 1.5rem 2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  align-self: start;
}
.search-sidebar::-webkit-scrollbar { width: 4px; }
.search-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.sidebar-section {
  margin-bottom: 2rem;
}
.sidebar-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}
.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.sidebar-link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.sidebar-link.active {
  background: rgba(17,85,204,0.35);
  color: #fff;
  font-weight: 500;
}
.sidebar-link.active::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #00b4ff;
  margin-right: 6px;
  flex-shrink: 0;
}
.sidebar-count {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  padding: 1px 6px;
  border-radius: 10px;
  flex-shrink: 0;
}
.sidebar-clear {
  display: inline-block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  transition: color 0.15s, border-color 0.15s;
}
.sidebar-clear:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ── Main content area ── */
.search-main {
  padding: 2rem 2rem 3rem;
}

.search-results-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.search-results-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #fff;
}
.search-results-count {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* 3-col event grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .sidebar-section { margin-bottom: 0; min-width: 140px; }
  .search-main { padding: 1.5rem 1.5rem 2rem; }
}

@media (max-width: 560px) {
  .search-grid { grid-template-columns: 1fr; }
  .search-sidebar { flex-direction: column; gap: 1rem; }
}

/* ════════════════════════════════════════
   CATEGORY PAGE — sidebar extras
   ════════════════════════════════════════ */

.sidebar-cat-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 10px 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.sidebar-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(17,85,204,0.35);
  color: #00b4ff;
  flex-shrink: 0;
}
.sidebar-cat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}

/* Active filter tags below the title */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  background: rgba(17,85,204,0.3);
  border: 1px solid rgba(17,85,204,0.5);
  color: rgba(255,255,255,0.8);
  padding: 3px 8px;
  border-radius: 20px;
}
.filter-tag a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  transition: color 0.15s;
}
.filter-tag a:hover { color: #fff; }

/* ── M-Pesa Checkout Modal ─────────────────────────────── */
.mpesa-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.mpesa-overlay.mpesa-overlay--open {
  opacity: 1; pointer-events: all;
}
.mpesa-modal {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.25s ease;
}
.mpesa-overlay--open .mpesa-modal {
  transform: translateY(0);
}
.mpesa-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mpesa-modal__logo {
  display: flex; align-items: center; gap: 10px;
}
.mpesa-modal__logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #00a651, #007a3d);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff; letter-spacing: -0.5px;
}
.mpesa-modal__logo-text { font-size: 13px; color: rgba(255,255,255,0.5); }
.mpesa-modal__logo-text strong { display: block; font-size: 15px; color: #fff; }
.mpesa-modal__close {
  background: rgba(255,255,255,0.07); border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); border-radius: 50%;
  width: 32px; height: 32px; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mpesa-modal__close:hover { background: rgba(255,255,255,0.13); color: #fff; }
.mpesa-modal__body { padding: 1.25rem 1.5rem; }
.mpesa-modal__section-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin: 0 0 0.75rem;
}

/* Order lines inside modal */
.mpesa-order-lines { margin-bottom: 1rem; }
.mpesa-order-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mpesa-order-line:last-child { border-bottom: none; }
.mpesa-order-line__left { display: flex; align-items: center; gap: 10px; }
.mpesa-order-line__name { font-size: 14px; color: rgba(255,255,255,0.85); }
.mpesa-order-line__unit { font-size: 11px; color: rgba(255,255,255,0.35); }
.mpesa-order-line__stepper {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden;
}
.mpesa-order-line__stepper button {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); width: 30px; height: 30px;
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mpesa-order-line__stepper button:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mpesa-order-line__stepper span {
  font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; color: #fff;
}
.mpesa-order-line__subtotal { font-size: 14px; font-weight: 600; color: #fff; min-width: 90px; text-align: right; }

.mpesa-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0.75rem 0; }
.mpesa-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0 1rem;
}
.mpesa-total-row__label { font-size: 13px; color: rgba(255,255,255,0.5); }
.mpesa-total-row__amount { font-size: 20px; font-weight: 700; color: #fff; }

/* Phone input */
.mpesa-phone-wrap { margin-bottom: 1.25rem; }
.mpesa-phone-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; display: block; }
.mpesa-phone-field {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s;
}
.mpesa-phone-field:focus-within { border-color: #00a651; }
.mpesa-phone-prefix {
  padding: 0 12px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.5); border-right: 1px solid rgba(255,255,255,0.08);
  height: 46px; display: flex; align-items: center; white-space: nowrap;
}
.mpesa-phone-input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: 15px; padding: 0 14px; height: 46px;
  letter-spacing: 0.03em;
}
.mpesa-phone-input::placeholder { color: rgba(255,255,255,0.2); }

/* Pay button */
.mpesa-pay-btn {
  width: 100%; padding: 14px;
  background: #00a651; border: none; border-radius: 10px;
  color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s, transform 0.1s;
}
.mpesa-pay-btn:hover { background: #008f46; }
.mpesa-pay-btn:active { transform: scale(0.98); }
.mpesa-pay-btn:disabled { background: #1f4a33; color: rgba(255,255,255,0.3); cursor: not-allowed; transform: none; }

/* Processing state */
.mpesa-processing {
  display: none; text-align: center; padding: 1.5rem 0 0.5rem;
}
.mpesa-processing.mpesa-processing--show { display: block; }
.mpesa-spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(0,166,81,0.2);
  border-top-color: #00a651;
  margin: 0 auto 1rem;
  animation: mpesa-spin 0.9s linear infinite;
}
@keyframes mpesa-spin { to { transform: rotate(360deg); } }
.mpesa-processing__title { font-size: 16px; font-weight: 600; margin-bottom: 0.3rem; }
.mpesa-processing__sub { font-size: 13px; color: rgba(255,255,255,0.45); }
.mpesa-progress-bar {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; margin: 1rem 0 0; overflow: hidden;
}
.mpesa-progress-fill {
  height: 100%; width: 0%; background: #00a651;
  border-radius: 2px;
  transition: width 0.25s linear;
}

/* Success state */
.mpesa-success {
  display: none; text-align: center; padding: 1.5rem 0;
}
.mpesa-success.mpesa-success--show { display: block; }
.mpesa-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,166,81,0.15); border: 2px solid #00a651;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mpesa-success__icon svg { color: #00a651; }
.mpesa-success__title { font-size: 18px; font-weight: 700; margin-bottom: 0.4rem; }
.mpesa-success__sub { font-size: 13px; color: rgba(255,255,255,0.45); }
.mpesa-success__ref {
  margin-top: 1rem; padding: 0.6rem 1rem;
  background: rgba(0,166,81,0.1); border: 1px solid rgba(0,166,81,0.25);
  border-radius: 8px; font-size: 12px; color: rgba(255,255,255,0.5);
}
.mpesa-success__ref strong { color: #00a651; font-family: monospace; font-size: 14px; }

/* ── M-Pesa Modal Event Info Banner ───────────────────── */
.mpesa-event-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 1.5rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mpesa-event-banner__img {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.07) center/cover no-repeat;
}
.mpesa-event-banner__info { flex: 1; min-width: 0; }
.mpesa-event-banner__category {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #00a651;
  margin-bottom: 3px;
}
.mpesa-event-banner__title {
  font-size: 14px; font-weight: 700;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 6px;
}
.mpesa-event-banner__details {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.mpesa-event-detail-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.mpesa-event-detail-item--full {
  white-space: normal;
  flex-basis: 100%;
}

/* ══════════════════════════════════════════════════════════
   ARTISTS — Nav dropdown extensions
══════════════════════════════════════════════════════════ */
.mega-link--artist {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 0 !important;
}
.mega-artist-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.mega-artist-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-artist-info strong {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.2;
}
.mega-artist-info small {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   ARTISTS — Index / listing page
══════════════════════════════════════════════════════════ */
.artists-hero {
  background: linear-gradient(160deg, #0d0a20 0%, #1a0540 40%, #0a0a18 100%);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.artists-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,80,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.artists-hero__inner { max-width: 1200px; margin: 0 auto; }
.artists-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 1rem;
}
.artists-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0.8rem;
}
.artists-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.6;
}

/* Section labels */
.artists-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 2rem;
  margin-bottom: 1.2rem;
}

/* Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  padding: 0 2rem;
}
.artists-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Artist card */
.artist-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.07);
  transition: transform 0.22s ease, border-color 0.22s;
  cursor: pointer;
}
.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.4);
}
.artist-card--featured .artist-card__img {
  height: 220px;
}
.artist-card__img {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.artist-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.artist-card:hover .artist-card__img img {
  transform: scale(1.06);
}
.artist-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,20,0.85) 0%, transparent 60%);
  pointer-events: none;
}
.artist-card__followers {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(168,85,247,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.artist-card__body {
  padding: 0.9rem 1rem 1rem;
}
.artist-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 2px;
  line-height: 1.2;
}
.artist-card__country {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.artist-card__footer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   ARTISTS — Detail / show page
══════════════════════════════════════════════════════════ */
.artist-detail__hero {
  position: relative;
  height: clamp(320px, 50vh, 500px);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.artist-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,20,0.3) 0%,
    rgba(10,9,20,0.5) 40%,
    rgba(10,9,20,0.92) 100%
  );
  display: flex;
  align-items: flex-end;
}
.artist-detail__hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.artist-detail__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(168,85,247,0.6);
  flex-shrink: 0;
  background: #1a1a2e;
}
.artist-detail__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.artist-detail__hero-text {
  flex: 1;
  min-width: 0;
}
.artist-detail__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  margin: 6px 0 10px;
}
.artist-detail__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.artist-detail__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.14);
  padding: 3px 10px;
  border-radius: 20px;
}
.artist-detail__meta-pill--blue {
  color: #00b4ff;
  background: rgba(0,180,255,0.1);
  border-color: rgba(0,180,255,0.3);
}

/* Bio */
.artist-detail__bio-wrap {
  padding: 1.8rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.artist-detail__bio {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 680px;
  border-left: 2px solid rgba(168,85,247,0.4);
  padding-left: 1rem;
}

/* Artist tabs */
.artist-detail__tabs-wrap {
  padding: 1.5rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.artist-detail__tabs {
  display: flex;
  gap: 0;
}
.artist-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 0.7rem 1.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  margin-bottom: -0.5px;
}
.artist-tab:hover { color: rgba(255,255,255,0.8); }
.artist-tab.active {
  color: #fff;
  border-bottom-color: #a855f7;
}
.artist-tab__count {
  font-size: 11px;
  background: rgba(168,85,247,0.2);
  color: #a855f7;
  padding: 1px 7px;
  border-radius: 10px;
  font-weight: 600;
}

/* Panels */
.artist-panel--hidden { display: none; }

/* Events list (vertical rows) on artist page */
.events-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.event-row-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: background 0.18s;
}
.event-row-card:hover { background: rgba(255,255,255,0.03); }
.event-row-card__img {
  width: 72px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.event-row-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.event-row-card__date-block {
  width: 44px;
  flex-shrink: 0;
  text-align: center;
}
.event-row-card__month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a855f7;
  line-height: 1;
}
.event-row-card__day {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.event-row-card__year {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}
.event-row-card__info {
  flex: 1;
  min-width: 0;
}
.event-row-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.event-row-card__venue {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}
.event-row-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.event-row-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.event-row-card__price {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.event-row-card__arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
}


/* ── Artist search bar ─────────────────────────────────────────────── */
.artists-search-wrap {
  background: #0a0c14;
  padding: 1rem 2rem 1.2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.artists-search-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artists-search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.artists-search-icon {
  position: absolute;
  left: 14px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  flex-shrink: 0;
}
.artists-search-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 40px 10px 42px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.artists-search-input::placeholder { color: rgba(255,255,255,0.3); }
.artists-search-input:focus {
  border-color: rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.05);
}
.artists-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: color 0.15s;
}
.artists-search-clear:hover { color: rgba(255,255,255,0.7); }
.artists-search-results-count {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  padding-left: 2px;
}

/* ── Follow button ─────────────────────────────────────────────────── */
.artist-follow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.artist-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.25s;
  letter-spacing: 0.01em;
}
.artist-follow-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168,85,247,0.4);
}
.artist-follow-btn:active { transform: scale(0.97); }
.artist-follow-btn--following {
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.5);
  color: #a855f7;
}
.artist-follow-btn--following:hover { box-shadow: 0 4px 14px rgba(168,85,247,0.2); }
.artist-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 9px 18px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.artist-website-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* fan count pulse */
@keyframes fanPulse { 0%{transform:scale(1)} 40%{transform:scale(1.18)} 100%{transform:scale(1)} }
.fan-count--pulse { animation: fanPulse 0.5s ease; display: inline-block; }

/* ── Merch grid ────────────────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 0 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.merch-card {
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.merch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168,85,247,0.35);
}
.merch-card__img {
  background: #1a1830;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(168,85,247,0.7);
  overflow: hidden;
}
.merch-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,9,20,0.7) 0%, transparent 100%);
  padding: 8px 10px 6px;
}
.merch-card__artist-name {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.merch-card__body {
  padding: 0.85rem 1rem;
}
.merch-card__type {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.merch-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.merch-color-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 7px;
}
.merch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.merch-card__price {
  font-size: 14px;
  font-weight: 700;
  color: #a855f7;
}
.merch-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(168,85,247,0.15);
  border: 0.5px solid rgba(168,85,247,0.4);
  border-radius: 6px;
  color: #a855f7;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  transition: background 0.15s, transform 0.1s;
}
.merch-add-btn:hover { background: rgba(168,85,247,0.28); }
.merch-add-btn:active { transform: scale(0.95); }
.merch-add-btn:disabled { opacity: 0.6; cursor: default; }

/* toast */
.merch-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1b2e;
  border: 0.5px solid rgba(168,85,247,0.5);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  animation: toastIn 0.22s ease;
}
@keyframes toastIn { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

.merch-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding: 0 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   AUTH — pages, modal, nav user menu
   ══════════════════════════════════════════════════════════════ */

/* ── Auth page layout ──────────────────────────────────────── */
.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}
.auth-card {
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
}
.auth-card--account { max-width: 520px; }
.auth-page--account { align-items: flex-start; padding-top: 3rem; }

/* ── Account sidebar layout ─────────────────────────────────────── */
.acct-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 80vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  align-items: start;
}
@media (max-width: 720px) {
  .acct-layout { grid-template-columns: 1fr; padding: 1.5rem 1rem 3rem; }
}

/* Sidebar */
.acct-sidebar {
  position: sticky;
  top: 80px;
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-right: 1.5rem;
}
.acct-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 1.1rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.acct-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.acct-profile__name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
.acct-profile__email { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }

/* Sidebar nav */
.acct-nav { display: flex; flex-direction: column; gap: 2px; }
.acct-nav__item {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; border-radius: 9px;
  color: rgba(255,255,255,0.55); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  padding: 9px 11px; text-align: left;
  transition: background 0.14s, color 0.14s;
  width: 100%;
}
.acct-nav__item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.acct-nav__item.active {
  background: rgba(168,85,247,0.14);
  color: #fff;
}
.acct-nav__item.active svg { stroke: #a855f7; }
.acct-nav__badge {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  background: rgba(168,85,247,0.2); color: #a855f7;
  padding: 1px 7px; border-radius: 10px;
}
.acct-nav__item.active .acct-nav__badge { background: rgba(168,85,247,0.35); }

/* Logout */
.acct-logout-form { margin-top: auto; padding-top: 0.8rem; border-top: 0.5px solid rgba(255,255,255,0.07); }
.acct-logout-btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; border-radius: 9px;
  color: rgba(239,68,68,0.7); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  padding: 9px 11px; transition: background 0.14s, color 0.14s;
}
.acct-logout-btn:hover { background: rgba(239,68,68,0.1); color: #ef4444; }

/* Main content */
.acct-main { min-width: 0; }
.acct-panel { display: none; }
.acct-panel.active { display: block; }

.acct-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.acct-panel__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px; color: #fff; margin: 0;
}
.acct-header-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #00b4ff; text-decoration: none;
  border: 0.5px solid rgba(0,180,255,0.3); border-radius: 8px;
  padding: 6px 14px; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: background 0.14s;
}
.acct-header-btn:hover { background: rgba(0,180,255,0.08); }

/* Ticket / resale / merch cards */
.acct-tickets-list { display: flex; flex-direction: column; gap: 0; }
.acct-ticket-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: background 0.12s;
}
.acct-ticket-card:last-child { border-bottom: none; }
.acct-ticket-card:hover { background: rgba(255,255,255,0.02); border-radius: 8px; }
.acct-ticket-card__left { flex: 1; min-width: 0; }
.acct-ticket-card__event {
  font-size: 14px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 5px;
}
.acct-ticket-card__meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  align-items: center;
}
.acct-ticket-card__meta svg { display: inline; vertical-align: middle; margin-right: 3px; }
.acct-tier-tag {
  background: rgba(168,85,247,0.15); color: #a855f7;
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 5px;
}
.acct-ticket-card__right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0;
}
.acct-ticket-card__price { font-size: 14px; font-weight: 700; color: #fff; }

/* Status badges */
.acct-status {
  font-size: 11px; font-weight: 600; padding: 2px 9px; border-radius: 5px;
}
.acct-status--confirmed  { background: rgba(34,197,94,0.15); color: #4ade80; }
.acct-status--pending    { background: rgba(234,179,8,0.15);  color: #facc15; }
.acct-status--active     { background: rgba(0,180,255,0.15);  color: #00b4ff; }
.acct-status--sold       { background: rgba(168,85,247,0.15); color: #a855f7; }
.acct-status--shipped    { background: rgba(0,180,255,0.15);  color: #00b4ff; }
.acct-status--delivered  { background: rgba(34,197,94,0.15);  color: #4ade80; }

.acct-action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 6px; color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  padding: 4px 10px; cursor: pointer; transition: background 0.12s;
}
.acct-action-btn:hover { background: rgba(255,255,255,0.13); }
.acct-action-btn--danger { color: rgba(239,68,68,0.8); border-color: rgba(239,68,68,0.25); }
.acct-action-btn--danger:hover { background: rgba(239,68,68,0.1); }

.acct-empty-hint {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 1.2rem; line-height: 1.55;
}

/* Following grid */
.acct-following-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.acct-artist-card {
  display: block; text-decoration: none; position: relative;
  background: #13121e; border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, opacity 0.25s;
}
.acct-artist-card:hover { transform: translateY(-3px); border-color: rgba(168,85,247,0.35); }
.acct-artist-card__img {
  height: 110px;
  background-size: cover; background-position: center;
  background-color: #1a1830;
}
.acct-artist-card__body { padding: 0.7rem 0.85rem; }
.acct-artist-card__name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.acct-artist-card__genre { font-size: 11px; color: rgba(255,255,255,0.4); }
.acct-unfollow-btn {
  position: absolute; top: 7px; right: 7px;
  background: rgba(0,0,0,0.55); border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.5);
  opacity: 0; transition: opacity 0.15s;
}
.acct-artist-card:hover .acct-unfollow-btn { opacity: 1; }
.acct-unfollow-btn:hover { background: rgba(239,68,68,0.5); color: #fff; }

/* QR modal */
.acct-qr-overlay {
  position: fixed; inset: 0; z-index: 10100;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.acct-qr-modal {
  background: #13121e; border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 2rem; text-align: center;
  position: relative; max-width: 280px; width: 100%;
  animation: authModalIn 0.2s ease;
}
.acct-qr-modal__title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.acct-qr-modal__sub   { font-size: 12px; color: rgba(255,255,255,0.4); }
.acct-qr-modal__code  { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; margin-top: 8px; }

.auth-card__logo { text-align: center; margin-bottom: 1.8rem; }
.auth-logo-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #00b4ff;
  text-decoration: none;
}
.auth-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1;
  text-align: center;
}
.auth-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0 0 1.8rem;
  line-height: 1.5;
}

/* ── Error block ────────────────────────────────────────────── */
.auth-errors {
  background: rgba(239,68,68,0.1);
  border: 0.5px solid rgba(239,68,68,0.35);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
}
.auth-error-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #fca5a5;
  padding: 3px 0;
}

/* ── Form fields ────────────────────────────────────────────── */
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-label__link { font-size: 12px; color: #00b4ff; text-decoration: none; font-weight: 400; }
.auth-label__link:hover { text-decoration: underline; }

.auth-input-wrap { position: relative; }
.auth-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.18s, background 0.18s;
}
.auth-input-wrap .auth-input { padding-right: 42px; }
.auth-input::placeholder { color: rgba(255,255,255,0.28); }
.auth-input:focus {
  border-color: rgba(168,85,247,0.55);
  background: rgba(168,85,247,0.06);
}
.auth-toggle-pw {
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45);
  padding: 4px;
  opacity: 0.45;
  transition: opacity 0.15s;
}
.auth-toggle-pw:hover { opacity: 0.8; }

/* password strength */
.auth-pw-strength {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.auth-pw-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.auth-pw-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 0.3s, background 0.3s;
}
.auth-pw-label { font-size: 11px; font-weight: 500; min-width: 40px; }

/* submit */
.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: 4px;
}
.auth-submit-btn:hover { opacity: 0.9; }
.auth-submit-btn:active { transform: scale(0.98); }

.auth-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.4rem 0;
}
.auth-divider::before,.auth-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(255,255,255,0.1);
}
.auth-divider span { font-size: 12px; color: rgba(255,255,255,0.3); }
.auth-switch { font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; margin: 0; }
.auth-switch__link { color: #a855f7; text-decoration: none; font-weight: 500; }
.auth-switch__link:hover { text-decoration: underline; }

/* ── Account page ───────────────────────────────────────────── */
/* old account card styles removed — see acct-layout below */

/* ── Auth gate modal ────────────────────────────────────────── */
.auth-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.auth-modal {
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 2.2rem 2rem 2rem;
  width: 100%; max-width: 380px;
  position: relative;
  animation: authModalIn 0.22s ease;
}
@keyframes authModalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.auth-modal__close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.07); border: none;
  border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.5);
  transition: background 0.15s;
}
.auth-modal__close:hover { background: rgba(255,255,255,0.14); }
.auth-modal__icon {
  width: 56px; height: 56px;
  background: rgba(168,85,247,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a855f7; margin: 0 auto 1.2rem;
}
.auth-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 1px;
  color: #fff; text-align: center; margin: 0 0 8px;
}
.auth-modal__body {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-align: center; margin: 0 0 1.6rem; line-height: 1.55;
}
.auth-modal__actions { display: flex; flex-direction: column; gap: 10px; }
.auth-modal__btn {
  display: block; text-align: center; text-decoration: none;
  border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600; padding: 12px;
  transition: opacity 0.15s, transform 0.1s;
}
.auth-modal__btn:active { transform: scale(0.98); }
.auth-modal__btn--primary {
  background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff;
}
.auth-modal__btn--primary:hover { opacity: 0.9; }
.auth-modal__btn--secondary {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.auth-modal__btn--secondary:hover { background: rgba(255,255,255,0.1); }

/* ── Nav user menu ──────────────────────────────────────────── */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(168,85,247,0.12);
  border: 0.5px solid rgba(168,85,247,0.35);
  border-radius: 50px;
  padding: 5px 12px 5px 6px;
  cursor: pointer; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  transition: background 0.15s;
}
.nav-user-btn:hover { background: rgba(168,85,247,0.22); }
.nav-user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.nav-user-name { font-size: 13px; font-weight: 500; }
.nav-user-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #1a1830; border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 12px; min-width: 180px; padding: 6px;
  z-index: 9999;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav-user-dropdown.open { display: block; animation: dropIn 0.15s ease; }
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.nav-user-dropdown__item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: background 0.12s;
  background: none; border: none; width: 100%; cursor: pointer;
  font-family: 'DM Sans', sans-serif; text-align: left;
}
.nav-user-dropdown__item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-user-dropdown__item--danger { color: rgba(239,68,68,0.8); }
.nav-user-dropdown__item--danger:hover { background: rgba(239,68,68,0.1); color: #ef4444; }
.nav-user-dropdown__divider {
  height: 0.5px; background: rgba(255,255,255,0.08); margin: 4px 0;
}
.nav-register-btn {
  background: rgba(168,85,247,0.15);
  border: 0.5px solid rgba(168,85,247,0.4);
  border-radius: 50px;
  color: #a855f7; font-size: 13px; font-weight: 500;
  padding: 6px 16px; text-decoration: none;
  transition: background 0.15s;
  margin-left: 6px;
}
.nav-register-btn:hover { background: rgba(168,85,247,0.28); }

/* ── Account ticket card extras ───────────────────────────────── */
.acct-ticket-card__thumb {
  width: 54px; height: 54px; border-radius: 8px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.acct-empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 3rem 1rem;
  color: rgba(255,255,255,0.3); text-align: center;
  gap: 8px;
}
.acct-empty-state p { margin: 0; font-size: 14px; }


/* ══════════════════════════════════════════════════════════════
   SHIMMER / SKELETON LOADING SYSTEM
   ══════════════════════════════════════════════════════════════ */

/* ── Core shimmer animation ─────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 4px;
}

/* ── Skeleton event card ─────────────────────────────────────── */
.skeleton-card {
  background: #13131f;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
}

.skeleton-card__img {
  height: 130px;
  background: #1a1a28;
  position: relative;
  overflow: hidden;
}
.skeleton-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}

.skeleton-card__img--lg { height: 180px; }

.skeleton-card__body { padding: 10px 12px 14px; display: flex; flex-direction: column; gap: 7px; }

.skeleton-line {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}
.skeleton-line--pill  { height: 16px; width: 52px; border-radius: 4px; }
.skeleton-line--date  { width: 55%;  }
.skeleton-line--title { height: 13px; width: 90%; }
.skeleton-line--title2{ height: 13px; width: 72%; }
.skeleton-line--venue { width: 65%; }
.skeleton-line--price { width: 35%; margin-top: 4px; }

/* ── Skeleton hero card ─────────────────────────────────────── */
.skeleton-hero-card {
  position: relative;
  overflow: hidden;
  background: #1a1a28;
}
.skeleton-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}
.skeleton-hero-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Skeleton tour card ─────────────────────────────────────── */
.skeleton-tour-card {
  background: #12141c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.skeleton-tour-card__img {
  aspect-ratio: 16/9;
  background: #1a1d29;
  position: relative;
  overflow: hidden;
}
.skeleton-tour-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}
.skeleton-tour-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; }

/* ── Skeleton artist card ───────────────────────────────────── */
.skeleton-artist-card {
  background: #13121e;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.skeleton-artist-card__img {
  height: 170px;
  background: #1a1830;
  position: relative;
  overflow: hidden;
}
.skeleton-artist-card__img--featured { height: 220px; }
.skeleton-artist-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}
.skeleton-artist-card__body { padding: 0.9rem 1rem 1rem; display: flex; flex-direction: column; gap: 7px; }

/* ── Shimmer wrapper: hides real content, shows skeleton until ready ── */
.shimmer-wrapper { position: relative; }
.shimmer-wrapper .shimmer-skeleton {
  display: block;
}
.shimmer-wrapper .shimmer-content {
  display: none;
}
.shimmer-wrapper.shimmer-loaded .shimmer-skeleton {
  display: none;
}
.shimmer-wrapper.shimmer-loaded .shimmer-content {
  display: contents;
}

/* ── Section-level shimmer state ────────────────────────────── */
.section--loading .cards-row,
.section--loading .big-cards-row,
.section--loading .tours-grid,
.section--loading .artists-grid {
  display: none;
}
.section--loading .section-shimmer { display: grid; }
.section-shimmer { display: none; }

/* ── Stagger delays so skeletons don't all pulse in sync ─────── */
.skeleton-card:nth-child(1) .skeleton-line,
.skeleton-card:nth-child(1) .skeleton-card__img::after,
.skeleton-tour-card:nth-child(1) .skeleton-tour-card__img::after,
.skeleton-artist-card:nth-child(1) .skeleton-artist-card__img::after
{ animation-delay: 0s; }

.skeleton-card:nth-child(2) .skeleton-line,
.skeleton-card:nth-child(2) .skeleton-card__img::after,
.skeleton-tour-card:nth-child(2) .skeleton-tour-card__img::after,
.skeleton-artist-card:nth-child(2) .skeleton-artist-card__img::after
{ animation-delay: 0.15s; }

.skeleton-card:nth-child(3) .skeleton-line,
.skeleton-card:nth-child(3) .skeleton-card__img::after,
.skeleton-tour-card:nth-child(3) .skeleton-tour-card__img::after,
.skeleton-artist-card:nth-child(3) .skeleton-artist-card__img::after
{ animation-delay: 0.30s; }

.skeleton-card:nth-child(4) .skeleton-line,
.skeleton-card:nth-child(4) .skeleton-card__img::after,
.skeleton-tour-card:nth-child(4) .skeleton-tour-card__img::after,
.skeleton-artist-card:nth-child(4) .skeleton-artist-card__img::after
{ animation-delay: 0.45s; }



/* ══════════════════════════════════════════════════════════════
   RESALE CARD SKELETON
   ══════════════════════════════════════════════════════════════ */

.skeleton-resale-card {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.skeleton-resale-card__img {
  aspect-ratio: 16/9;
  background: #1a1820;
  position: relative;
  overflow: hidden;
}
.skeleton-resale-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(167,139,250,0.07) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite linear;
}

.skeleton-resale-card__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Stagger resale skeletons */
.skeleton-resale-card:nth-child(1) .skeleton-line,
.skeleton-resale-card:nth-child(1) .skeleton-resale-card__img::after { animation-delay: 0s; }
.skeleton-resale-card:nth-child(2) .skeleton-line,
.skeleton-resale-card:nth-child(2) .skeleton-resale-card__img::after { animation-delay: 0.15s; }
.skeleton-resale-card:nth-child(3) .skeleton-line,
.skeleton-resale-card:nth-child(3) .skeleton-resale-card__img::after { animation-delay: 0.30s; }
.skeleton-resale-card:nth-child(4) .skeleton-line,
.skeleton-resale-card:nth-child(4) .skeleton-resale-card__img::after { animation-delay: 0.45s; }
.skeleton-resale-card:nth-child(5) .skeleton-line,
.skeleton-resale-card:nth-child(5) .skeleton-resale-card__img::after { animation-delay: 0.10s; }
.skeleton-resale-card:nth-child(6) .skeleton-line,
.skeleton-resale-card:nth-child(6) .skeleton-resale-card__img::after { animation-delay: 0.25s; }


/* ══════════════════════════════════════════════════════════════
   PAGE PRELOADER — small circle spinner shown on show.php pages
   ══════════════════════════════════════════════════════════════ */

/* Fixed overlay — covers everything except header */
#page-preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9500;
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: all;
}
#page-preloader.preloader--hiding {
  opacity: 0;
  pointer-events: none;
}
#page-preloader.preloader--gone {
  display: none;
}

/* The spinning ring */
.page-preloader__ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: #00b4ff;
  animation: preloader-spin 0.75s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* Subtle logo text beneath the ring */
.page-preloader__logo {
  position: absolute;
  bottom: calc(50% - 52px);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.18);
}
