/* ================================================================
   TICKETOOO — Premium Page Styles
   Design system: Purple #7F42B4, dark accents, glassmorphism
   ================================================================ */

:root {
  --brand: #7F42B4;
  --brand-dark: #5a2d84;
  --brand-light: #c9a1f5;
  --brand-faint: #f3ecfc;
  --text-primary: #1a1a2e;
  --text-secondary: #64748b;
  --surface: #ffffff;
  --surface-2: #f8f5fc;
  --border: #e8dff5;
  --shadow-sm: 0 2px 8px rgba(127,66,180,.08);
  --shadow-md: 0 8px 32px rgba(127,66,180,.14);
  --shadow-lg: 0 20px 60px rgba(127,66,180,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Shared page hero ── */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #4a1a6e 60%, #7F42B4 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
}

/* ================================================================
   EVENT DETAILS PAGE
   ================================================================ */

/* Hero banner with cinematic overlay */
.ed-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 0;
}
.ed-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.ed-hero:hover img { transform: scale(1.03); }
.ed-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,20,.85) 0%, rgba(10,5,20,.35) 50%, transparent 100%);
}
.ed-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ed-hero-badge .chip {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.ed-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
}
.ed-hero-info h1 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  line-height: 1.2;
}
.ed-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.ed-hero-meta span {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ed-hero-meta i { color: var(--brand-light); }

/* Sticky booking sidebar */
.ed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  padding: 40px 0 60px;
}
@media (max-width: 991px) {
  .ed-layout { grid-template-columns: 1fr; }
}

/* Section cards */
.ed-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.ed-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ed-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--brand-light), transparent);
  border-radius: 2px;
}

.ed-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) { .ed-info-grid { grid-template-columns: 1fr; } }

.ed-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.ed-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
}
.ed-info-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 2px;
}
.ed-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Media section */
.ed-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) { .ed-media-grid { grid-template-columns: 1fr; } }

.ed-media-grid.single { grid-template-columns: 1fr; }

.ed-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.ed-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}
.ed-img-wrap:hover img { transform: scale(1.05); }

.ed-video-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ed-video-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* Description text */
.ed-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.ed-desc strong { color: var(--text-primary); }

/* Venue map */
.ed-map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ed-map-wrap iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

/* FAQ accordion */
.ed-faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--surface);
}
.ed-faq .accordion-button {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface);
  padding: 16px 20px;
  box-shadow: none !important;
}
.ed-faq .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-faint);
}
.ed-faq .accordion-button::after {
  filter: hue-rotate(200deg);
}
.ed-faq .accordion-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 12px 20px 18px;
}

/* Booking sidebar card */
.ed-book-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.ed-book-card-top {
  background: linear-gradient(135deg, #1a1a2e, #4a1a6e);
  padding: 24px;
  text-align: center;
}
.ed-book-card-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 14px;
}
.ed-book-card-date .month {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ed-book-card-date .day {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ed-book-card-date .year {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.ed-book-card-status {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.ed-book-card-body {
  padding: 24px;
}
.ed-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.ed-price-row:last-child { border-bottom: none; }
.ed-price-row .label { color: var(--text-secondary); }
.ed-price-row .value { font-weight: 700; color: var(--text-primary); }

.ed-book-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 20px rgba(127,66,180,.4);
  margin-top: 8px;
}
.ed-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(127,66,180,.5);
  color: #fff;
}

.ed-bookmark-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: 10px;
}
.ed-bookmark-btn:hover {
  border-color: var(--brand);
  background: var(--brand-faint);
}

/* Platinum badge */
.platinum-badge {
  background: linear-gradient(90deg, #c9a1f5, #7f42b4);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .5px;
  display: inline-block;
}


/* ================================================================
   MY TICKETS PAGE
   ================================================================ */
.tickets-page {
  background: var(--surface-2);
  min-height: 80vh;
  padding: 40px 0 60px;
}

.ticket-premium-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  transition: var(--transition);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  position: relative;
}
.ticket-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ticket-premium-card.past-event-card {
  opacity: 0.65;
  filter: grayscale(.4);
  pointer-events: none;
}

/* Perforated edge effect */
.ticket-premium-card::before,
.ticket-premium-card::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  left: calc(190px - 14px);
  z-index: 5;
  border: 1px solid var(--border);
}
.ticket-premium-card::before { top: -14px; }
.ticket-premium-card::after  { bottom: -14px; }

.ticket-img-col {
  width: 190px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ticket-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform .5s ease;
}
.ticket-premium-card:hover .ticket-img-col img { transform: scale(1.06); }
.ticket-status-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}
.ticket-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.ticket-status-badge.upcoming {
  background: rgba(127,66,180,.15);
  color: var(--brand);
  border: 1px solid rgba(127,66,180,.3);
}
.ticket-status-badge.past {
  background: rgba(0,0,0,.1);
  color: #666;
  border: 1px solid rgba(0,0,0,.15);
}

/* Dashed divider */
.ticket-divider {
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 8px,
    transparent 8px,
    transparent 16px
  );
  flex-shrink: 0;
  margin: 0 0;
}

.ticket-main-col {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.ticket-event-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  text-decoration: none;
  transition: color .2s;
  display: block;
  line-height: 1.3;
}
.ticket-event-name:hover { color: var(--brand); }
.ticket-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.ticket-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.ticket-meta-item i { color: var(--brand); font-size: 12px; }

.ticket-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ticket-chip {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.ticket-chip-price {
  background: rgba(127,66,180,.1);
  color: var(--brand);
  border: 1px solid rgba(127,66,180,.2);
}
.ticket-chip-qty {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.ticket-chip-seat {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fde68a;
}

/* QR col */
.ticket-qr-col {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: var(--surface-2);
  border-left: 1px dashed var(--border);
  gap: 12px;
}
.ticket-qr-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--brand-faint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(127,66,180,.25);
}
.ticket-qr-icon-wrap i {
  font-size: 38px;
  color: var(--brand);
  opacity: .55;
}
.ticket-qr-col .btn-qr {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .3px;
}
.ticket-qr-col .btn-qr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(127,66,180,.3);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state-icon {
  width: 90px;
  height: 90px;
  background: var(--brand-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.empty-state-icon i {
  font-size: 36px;
  color: var(--brand);
}
.empty-state h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.empty-state p { color: var(--text-secondary); font-size: 15px; }

/* QR Modal */
.qr-modal-inner {
  text-align: center;
  padding: 16px 0;
}
.qr-modal-inner h5 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .ticket-premium-card {
    flex-direction: column;
  }
  .ticket-premium-card::before,
  .ticket-premium-card::after { display: none; }
  .ticket-img-col {
    width: 100%;
    height: 180px;
  }
  .ticket-qr-col {
    width: 100%;
    border-left: none;
    border-top: 1px dashed var(--border);
    flex-direction: row;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
  }
  .ticket-qr-icon-wrap {
    width: 56px;
    height: 56px;
  }
  .ticket-qr-icon-wrap i { font-size: 28px; }
  .ticket-divider { display: none; }
}


/* ================================================================
   BOOKMARKS PAGE
   ================================================================ */
.bookmarks-page {
  background: var(--surface-2);
  min-height: 80vh;
  padding: 40px 0 60px;
}

.bookmark-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bookmark-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.bookmark-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.bookmark-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bookmark-card:hover .bookmark-card-img img { transform: scale(1.08); }
.bookmark-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,20,.6), transparent 60%);
}
.bookmark-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
}
.bookmark-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bookmark-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color .2s;
  line-height: 1.3;
}
.bookmark-card-title:hover { color: var(--brand); }
.bookmark-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  flex: 1;
}
.bookmark-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.bookmark-card-meta-item i { color: var(--brand); width: 14px; text-align: center; }
.bookmark-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bookmark-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
}
.bookmark-price small {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  display: block;
}
.btn-bookmark-remove {
  background: transparent;
  border: 1.5px solid #f87171;
  color: #ef4444;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-bookmark-remove:hover {
  background: #fef2f2;
  border-color: #ef4444;
}
.btn-book-now {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-book-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(127,66,180,.4);
  color: #fff;
}


/* ================================================================
   SEARCH EVENTS PAGE
   ================================================================ */
.search-page {
  background: var(--surface-2);
  min-height: 80vh;
  padding: 0 0 60px;
}

.search-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #4a1a6e 60%, #7F42B4 100%);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}
.search-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-hero-content { position: relative; z-index: 1; }
.search-hero h2 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}
.search-hero p {
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-bottom: 22px;
  font-size: 15px;
}

/* Filter chips */
.se-filter-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.se-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  transition: all .2s;
}
.se-chip:hover { background: rgba(255,255,255,.18); color: #fff; }
.se-chip-active {
  background: #fff !important;
  color: var(--brand) !important;
  border-color: #fff !important;
  font-weight: 600;
}

/* Header sort */
.se-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.se-sort-select {
  padding: 6px 30px 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--surface);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237F42B4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .2s;
}
.se-sort-select:focus { border-color: var(--brand); }

.search-bar-premium {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.search-bar-premium input {
  width: 100%;
  padding: 18px 60px 18px 56px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  background: #fff;
  color: var(--text-primary);
}
.search-bar-premium .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 16px;
}
.search-bar-premium .search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  z-index: 1000;
  overflow: hidden;
  display: none;
}

.search-results-section {
  padding: 32px 0;
}
.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.search-results-header h4 {
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.results-count {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--surface-2);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.event-search-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.event-search-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.event-search-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.event-search-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.event-search-card:hover .event-search-card-img img { transform: scale(1.08); }
.event-search-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,20,.5) 0%, transparent 60%);
}
.event-date-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}
.event-search-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-search-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}
.event-search-card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-search-card-meta i { color: var(--brand); font-size: 12px; }
.event-search-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.event-search-card-price {
  font-weight: 800;
  color: var(--brand);
  font-size: 15px;
}
.event-search-card-cta {
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.event-search-card:hover .event-search-card-cta { gap: 8px; }

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}
.no-results i { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.no-results h5 { color: var(--text-primary); font-weight: 700; }
