.products-categories {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.products-categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.products-categories-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.products-categories-tab {
    padding: 0.6rem 1.2rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'PTSerif';
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.products-categories-tab.active {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.products-categories-tab:hover:not(.active) {
    background-color: #f5f5f5;
}

.filter-icon {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-icon img {
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-categories-tabs {
        gap: 0.8rem;
    }
    
    .products-categories-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-categories-tabs {
        gap: 0.5rem;
    }
    
    .products-categories-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

        .filter-icon {
        padding: 0.3rem;
    }
    
    .filter-icon img {
        width: 18px;
        height: 18px;
    }
}