/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(26, 29, 33, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-tabs-left {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 0.25rem 0;
}

/* Hide scrollbar for Chrome/Safari */
.category-tabs-left::-webkit-scrollbar {
    display: none;
}


.category-tab {
    background: rgba(45, 49, 57, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #8b8d90;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.category-tab:hover {
    background: rgba(45, 49, 57, 0.8);
    color: #d1d2d3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-tab.active {
    background: linear-gradient(135deg, #1264a3 0%, #0d4f82 100%);
    color: white;
    border-color: rgba(18, 100, 163, 0.3);
    box-shadow: 0 4px 12px rgba(18, 100, 163, 0.3);
}

.category-tab.active:hover {
    background: linear-gradient(135deg, #0d4f82 0%, #0a3d66 100%);
    transform: translateY(-1px);
}