/* Filter Pills Container */
.place-filters {
    position: absolute;
    top: 110px;
    /* Adjusted for floating navbar height */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
    /* Reduced from 100 to stay behind search suggestions (which are 1000) */
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.filter-pill {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.filter-pill.active {
    background: var(--primary-gradient);
    /* Brand Primary Gradient */
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
    font-weight: 700;
}

.filter-pill i {
    font-size: 0.9rem;
}

/* Ensure suggestions in navbar look good */
.nav-search {
    position: relative;
}

.nav-search .suggestions-list {
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    position: absolute;
}

.nav-search .suggestions-list.visible {
    display: block;
}

.nav-search .suggestion-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 1px solid #f1f5f9;
}

.nav-search .suggestion-item:last-child {
    border-bottom: none;
}

.nav-search .suggestion-item:hover {
    background: #f8fafc;
}