.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 2px solid #fee3e3;
    border-radius: 2%;
}

.product-card img {
    width: 200px;
    height: auto;
}

.product-card h2 {
    font-size: 17px;
    margin: 10px 0;
    color:#b80909;
}

.product-card p {
    font-size: 12px;
    text-align: center;
}

.product-card table{
    border-radius:35px
}

.product-card thead{
    background-color:#b80909; 
    font-size: 17px;
    color:#dddddd;
    padding: 2em 0 2em 0;
}

.product-card tbody{
    background-color:#dddddd;
}


#load-more {
    display: block;
    margin: 20px auto;
    padding: 10px;
    border: none;
    background-color: #b80909;
    color: #fff;
    cursor: pointer;
}

@media (min-width: 601px) and (max-width: 865px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}