/* ==========================================================================
   Holiday Vibez — View-All listing page (.lst)
   Hero + category filter chips + sort + card grid + sticky form.
   ========================================================================== */
.lst-hero { background: linear-gradient(135deg, #0041d0, #0052ff); color: #fff; padding: 46px 20px 44px; text-align: center; }
.lst-hero-in { max-width: 820px; margin: 0 auto; }
.lst-hero-crumb { font-size: 12px; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.lst-hero-crumb a { color: rgba(255,255,255,.85); }
.lst-hero-crumb a:hover { color: #fff; }
.lst-hero h1 { font-size: clamp(26px, 4.2vw, 40px); font-weight: 800; line-height: 1.18; letter-spacing: -.5px; color: #fff; margin: 0 0 12px; }
.lst-hero p { font-size: 14.5px; color: rgba(255,255,255,.82); line-height: 1.6; margin: 0 0 18px; }
.lst-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.lst-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 50px; }
.lst-badge i { color: var(--hv-accent); }

/* Chips bar */
.lst-chipbar { background: #fff; border-bottom: 1px solid var(--hv-line); position: sticky; top: 0; z-index: 20; }
.lst-chips { max-width: 1180px; margin: 0 auto; padding: 14px 20px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lst-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: #374151; background: #fff; border: 1.5px solid var(--hv-line); border-radius: 50px; cursor: pointer; transition: all .15s; white-space: nowrap; }
.lst-chip:hover { border-color: var(--hv-primary); color: var(--hv-primary); }
.lst-chip.on { background: var(--hv-primary); border-color: var(--hv-primary); color: #fff; }
.lst-chip .n { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; font-size: 11px; font-weight: 700; border-radius: 50px; background: #eef3ff; color: var(--hv-primary); }
.lst-chip.on .n { background: rgba(255,255,255,.25); color: #fff; }

/* Body */
.lst-body { max-width: 1180px; margin: 0 auto; padding: 28px 20px 64px; display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.lst-toolbar { grid-column: 1 / -1; grid-row: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.lst-count { font-size: 15px; font-weight: 700; color: var(--hv-ink); }
.lst-count b { color: var(--hv-primary); }
.lst-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hv-muted); }
.lst-sort select { font-family: inherit; font-size: 13px; font-weight: 500; color: var(--hv-ink); border: 1.5px solid var(--hv-line); border-radius: 8px; padding: 8px 12px; background: #fff; cursor: pointer; outline: none; }
.lst-sort select:focus { border-color: var(--hv-primary); }

.lst-left { grid-column: 1; grid-row: 2; }
.lst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 1180px) { .lst-grid { grid-template-columns: 1fr 1fr; } }
.lst-item { display: block; }
.lst-empty { display: none; text-align: center; padding: 50px 20px; color: var(--hv-muted); }

.lst-form-col { grid-column: 2; grid-row: 2; }
.lst-form-sticky { position: sticky; top: 86px; }

@media (max-width: 991px) {
  .lst-body { grid-template-columns: 1fr; gap: 28px; }
  .lst-form-col { grid-column: 1; grid-row: 2; max-width: 560px; margin: 0 auto; width: 100%; }
  .lst-left { grid-column: 1; grid-row: 3; }
  .lst-form-sticky { position: static; }
}
@media (max-width: 560px) {
  .lst-grid { grid-template-columns: 1fr; }
  .lst-body { padding: 22px 14px 48px; }
}
