/* =========================================
   WIDGET: QUICK FILTERS
   ========================================= */
.quick-filters-section {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .quick-filters-section .container {
        padding-right: 0;
    }
}

.quick-filters {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
}

.filter-pill {
    background: rgba(253, 251, 237, 0.03);
    border: 1px solid rgba(253, 251, 237, 0.1);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'Codec Pro', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    text-decoration: none;
    display: inline-flex;
    white-space: nowrap;
}

.filter-pill:hover {
    background: rgba(253, 251, 237, 0.1);
    border-color: rgba(253, 251, 237, 0.2);
    color: #ffffff;
}

.filter-pill.active {
    background: var(--z-yellow);
    color: var(--z-dark);
    border-color: var(--z-yellow);
    pointer-events: none;
}