/* ===== STICKY FILTERS SECTION ===== */
.filters {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(11, 15, 25, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== IMPROVED CATEGORY COUNT SPACING ===== */
.category-count {
    margin-left: 0.5rem !important;
}

/* ===== MODERN BUTTON STYLES ===== */
#toggle-categories-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#toggle-categories-btn svg {
    flex-shrink: 0;
}

/* ===== TAGS CONTAINER IMPROVEMENTS ===== */
.tags-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
}

.tags-container[style*="display: none"] {
    display: none !important;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}