/* ═══════════════════════════════════════
   HALLS PAGE — Page-specific styles
   ═══════════════════════════════════════ */

/* ── HERO SECTION ────────── */
.halls-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.halls-hero .container {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.95));
}

.halls-hero .section-badge {
  color: var(--y-color-secondary);
  background: rgba(212, 168, 50, 0.15);
  border: 1px solid rgba(212, 168, 50, 0.2);
}

.halls-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-top: var(--y-space-m);
}

.hero-desc {
  color: #d1d5db;
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--y-font-l);
  margin-bottom: var(--y-space-3xl);
}

/* ── SEARCH BOX ──────────── */
.search-box {
  max-width: 640px;
  margin: 0 auto;
}

.search-box-inner {
  position: relative;
}

.search-icon {
  position: absolute;
  right: var(--y-space-l);
  top: 50%;
  transform: translateY(-50%);
  color: var(--y-color-text-muted);
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.search-input {
  width: 100%;
  padding: var(--y-space-l) var(--y-space-l) var(--y-space-l) var(--y-space-l);
  padding-right: var(--y-space-5xl);
  background: var(--y-color-white);
  border-radius: var(--y-radius-2xl);
  border: none;
  outline: none;
  box-shadow: var(--y-shadow-l);
  font-size: var(--y-font-m);
  font-family: inherit;
  color: var(--y-color-text);
}

.search-input::placeholder {
  color: var(--y-color-text-muted);
}

.search-input:focus {
  box-shadow: var(--y-shadow-xl), 0 0 0 3px rgba(139, 105, 20, 0.15);
}

/* ── MAIN CONTENT ────────── */
.halls-content {
  padding-top: var(--y-space-3xl);
  padding-bottom: var(--y-space-5xl);
}

/* ── FILTER BAR ──────────── */
.filter-bar {
  background: var(--y-color-white);
  border-radius: var(--y-radius-2xl);
  padding: var(--y-space-xl);
  box-shadow: var(--y-shadow-s);
  border: 1px solid var(--y-color-border);
  margin-bottom: var(--y-space-3xl);
  display: flex;
  align-items: flex-end;
  gap: var(--y-space-3xl);
  flex-wrap: wrap;
}

.filter-groups {
  display: flex;
  gap: var(--y-space-3xl);
  flex-wrap: wrap;
  flex: 1;
}

.filter-section {
  flex: 1;
  min-width: 0;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: var(--y-space-xs);
  font-size: var(--y-font-s);
  color: var(--y-color-text-muted);
  margin-bottom: var(--y-space-s);
}

.filter-label i,
.filter-label svg {
  width: 14px;
  height: 14px;
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: var(--y-space-s);
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: wrap;
}

.filter-buttons::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: var(--y-space-s) var(--y-space-l);
  border-radius: var(--y-radius-m);
  white-space: nowrap;
  transition: all var(--y-transition-fast);
  cursor: pointer;
  background: var(--y-color-white);
  color: var(--y-color-text);
  border: 1px solid var(--y-color-border);
  font-family: inherit;
  font-size: var(--y-font-m);
}

.filter-btn:hover {
  background: var(--y-color-bg-warm2);
}

.filter-btn.active {
  background: var(--y-color-primary);
  color: var(--y-color-white);
  border-color: var(--y-color-primary);
}

/* WordPress shop: category/city filters use <a> for shareable URLs */
.filter-bar a.filter-btn {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.filter-bar a.filter-btn:visited {
  color: inherit;
}

.filter-bar a.filter-btn.active {
  color: var(--y-color-white);
}

.filter-sort {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--y-space-s);
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 2.5rem;
  padding-right: 1rem;
  height: 44px;
  border: 1px solid var(--y-color-border);
  border-radius: var(--y-radius-m);
  background: var(--y-color-white);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--y-font-m);
  color: var(--y-color-text);
}

.select-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--y-color-text-muted);
  width: 16px;
  height: 16px;
}

/* ── NO RESULTS ──────────── */
.no-results {
  text-align: center;
  padding: var(--y-space-6xl) 0;
  color: var(--y-color-text-muted);
}

.no-results-icon {
  opacity: 0.3;
  margin-bottom: var(--y-space-l);
}

.no-results-title {
  margin-bottom: var(--y-space-s);
}

.no-results-desc {
  margin-bottom: var(--y-space-xxl);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .filter-bar {
    gap: var(--y-space-xxl);
  }
}

@media (max-width: 992px) {
  .halls-hero {
    padding: var(--y-space-5xl) 0 var(--y-space-3xl);
  }
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--y-space-l);
    padding: var(--y-space-l);
  }

  .filter-sort {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .filter-sort .filter-select {
    width: auto;
  }

  .halls-hero {
    padding: var(--y-space-3xl) 0;
  }

  .search-input {
    padding: var(--y-space-m) var(--y-space-m) var(--y-space-m) var(--y-space-m);
    padding-right: var(--y-space-4xl);
    border-radius: var(--y-radius-xl);
  }
}

@media (max-width: 480px) {
  .filter-btn {
    padding: var(--y-space-s) var(--y-space-m);
    font-size: var(--y-font-s);
    min-height: 44px;
  }

  .filter-bar {
    padding: var(--y-space-m);
  }
}