/* Category Tabs Styles */
.category-tab {
    height: 56px;
    padding: 16px 24px;
    background: #E6E7E9;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #212431;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-tab:hover {
    background: #d0d1d3;
}

.category-tab.active {
    background: #1D1D1D;
    color: #FFFFFF;
    font-weight: 600;
}