#products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    justify-content: center;
    padding: 5px;
}
    .product {
    background: #f1f1f1;
    padding: 15px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    text-align: center;
}
.product:hover {
    background: #ccc;
    padding: 15px;
    /*border-radius: 10px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    max-height: 300px;
    padding: 4px;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    margin: 15px 0px 0px 0px;
}
.button3 {
    font-family: 'El Messiri';
    background-color: #007bff;
    color: #FFF;
    border: none;
    padding: 6px 10px;
    margin-top: 6px;
    cursor: pointer;
    border-radius: 5px;
}
.share-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 12px;
    text-align: center;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'El Messiri';
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,.15);
    transition: .2s;
}
.share-whatsapp:hover {
    background: #1eb84d;
    transform: translateY(-2px);
}
h1, h2{text-align: center;}
.box2 {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: auto;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 100;
}