.container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the items horizontally */
    gap: 4px;
}

.row {
    display: flex;
    justify-content: center; /* Center the items in each row */
    margin-bottom: 4px;
    flex-wrap: wrap;
    width: 100%;
}

.product-item {
    flex: 0 0 calc(25% - 12px); /* 4 items per row */
    box-sizing: border-box;
    margin-bottom: 4px;
    padding: 24px;
}

.box-product {
    padding: 12px 24px 24px 24px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: white;
    border-radius: 1em;
}

@media (max-width: 767px) {
    .product-item {
        flex: 0 0 100%; /* 1 item per row on mobile */
    }
}
