/* 
 * css/custom/products.css 
 * Sovrascritture per la pagina products
 */

.gp-products-page {
    width: 100%;
}

.gp-products-filter {
    margin: 0 50px 32px 50px;
    padding-right: 100px;
}

.gp-products-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.gp-products-category-item a {
    display: inline-flex;
    align-items: center;

    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 999px;

    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.gp-products-category-item.is-active a,
.gp-products-category-item a:hover {
    border-color: #ff5f1f;
    background: #ff5f1f;
    color: #fff;
}

@media (max-width: 768px) {
    .gp-products-filter {
        margin: 0 16px 24px 16px;
        padding-right: 0;
    }

    .gp-products-category-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .gp-products-category-item {
        flex: 0 0 auto;
    }
}