/* ═══════════════════════════════════════
   FAVOURITES PAGE — Saved halls listing
   ═══════════════════════════════════════ */

/* ── Hero ──────────────────── */
.fav-hero {
  padding: var(--y-space-5xl) 0;
  position: relative;
}

.fav-hero__inner {
  position: relative;
  text-align: center;
}

.fav-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--y-weight-bold);
  margin-top: var(--y-space-l);
  color: var(--y-color-white);
}

.fav-hero__subtitle {
  color: #d1d5db;
  margin-top: var(--y-space-m);
  font-size: var(--y-font-l);
}

/* ── Section ───────────────── */
.fav-section {
  padding: var(--y-space-5xl) 0;
}

/* ── Empty State ───────────── */
.fav-empty {
  text-align: center;
  padding: var(--y-space-6xl) 0;
}

.fav-empty__icon {
  width: 96px;
  height: 96px;
  background: var(--y-color-bg-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--y-space-xxl);
  font-size: 2.5rem;
}

.fav-empty__title {
  font-weight: var(--y-weight-bold);
  font-size: var(--y-font-xxl);
  margin-bottom: var(--y-space-m);
}

.fav-empty__desc {
  color: var(--y-color-text-muted);
  margin-bottom: var(--y-space-3xl);
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── List Header ───────────── */
.fav-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--y-space-xxl);
}

.fav-list-header__count {
  font-weight: var(--y-weight-bold);
  font-size: var(--y-font-xl);
}

.fav-list-header__clear {
  color: var(--y-color-danger);
  cursor: pointer;
  font-size: var(--y-font-s);
  transition: opacity var(--y-transition-fast);
}

.fav-list-header__clear:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   RESPONSIVE — Large desktops
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .fav-hero {
    padding: var(--y-space-5xl) 0;
  }

  .fav-section {
    padding: var(--y-space-5xl) 0;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablets
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  .fav-hero {
    padding: var(--y-space-3xl) 0;
  }

  .fav-hero__title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .fav-hero__subtitle {
    font-size: var(--y-font-m);
    margin-top: var(--y-space-s);
  }

  .fav-section {
    padding: var(--y-space-3xl) 0;
  }

  .fav-empty {
    padding: var(--y-space-5xl) 0;
  }

  .fav-empty__icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .fav-empty__title {
    font-size: var(--y-font-xl);
  }

  .fav-list-header__count {
    font-size: var(--y-font-l);
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Small phones
   ═══════════════════════════════════════ */

@media (max-width: 480px) {
  .fav-hero {
    padding: var(--y-space-xxl) 0;
  }

  .fav-hero__title {
    font-size: 1.25rem;
    margin-top: var(--y-space-s);
  }

  .fav-hero__subtitle {
    font-size: var(--y-font-s);
  }

  .fav-section {
    padding: var(--y-space-xxl) 0;
  }

  .fav-empty {
    padding: var(--y-space-3xl) 0;
  }

  .fav-empty__icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    margin-bottom: var(--y-space-l);
  }

  .fav-empty__title {
    font-size: var(--y-font-l);
  }

  .fav-empty__desc {
    font-size: var(--y-font-s);
    margin-bottom: var(--y-space-xxl);
  }

  .fav-list-header {
    flex-direction: column;
    gap: var(--y-space-s);
    align-items: flex-start;
    margin-bottom: var(--y-space-l);
  }

  .fav-list-header__count {
    font-size: var(--y-font-m);
  }
}

/* WooCommerce product loop inside favourites (AJAX) */
.eventhall-favourites-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--y-space-xxl);
}

.eventhall-favourites-grid > li.product {
  width: 100%;
  margin: 0;
  float: none;
}
