#products_banner img {
    width: 100%;
    height: 100%;
}

#products {
    padding: 48px 5%;
    display: flex;
    gap: 32px;
    background-color: var(--color-neutral-100);
}

#products_filter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 25%;
    padding: 24px;
    border-radius: 8px;
    background-color: var(--color-neutral-0);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.product-filter-category h4 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
}

.category-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-check-label, .form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--color-primary-900);
    color: var(--color-neutral-0);
    border: 1px solid var(--color-primary-900);
}

.form-check-input:focus {
    box-shadow: unset;
}

#products_list {
    width: 75%;
}

#products_list h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-neutral-700);
    margin-bottom: 18px;
}

#products_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.product-card {
    width: 100%;
    background-color: var(--color-neutral-0);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 306px;
}

.product-image img {
    height: 80%;
    object-fit: contain;
}

.product-info {
    padding: 24px;
    border-top: 1px solid var(--color-neutral-200);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-neutral-900);
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-900);
    margin-bottom: 0px;
}

#pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

#pagination .pagination {
    display: flex;
    gap: 5px;
}

#pagination .page-link {
    color: var(--color-primary-900);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-neutral-200);
}

@media screen and (max-width: 768px) {
    #products_filter {
        display: none;
    }

    #products_list {
        width: 100%;
    }
}