body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-color: #f4fdf4;

    margin: 0;

    padding: 20px;

    text-align: center;

}



h1 {

    color: #2f6e4c;

    margin-bottom: 30px;

}



.product-grid {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

}



.product-card {

    width: 125px;

    border-radius: 10px;

    padding: 15px;

    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    transition: transform 0.2s;

}



.product-card:hover {

    transform: scale(1.05);

}



.product-card img {

    width: 100%;

    border-radius: 8px;

}



.product-card h2 {

    font-size: 1.2em;

    margin: 10px 0 5px;

    color: #3b3b3b;

}



.price {

    color: #388e3c;

    font-weight: bold;

    margin-bottom: 10px;

}



button {

    background-color: #4CAF50;

    color: white;

    padding: 10px 15px;

    border: none;

    border-radius: 5px;

