.products {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}
.product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    width: 20vw;
    min-width: 200px;
    overflow: hidden;
    border-radius: 10px;
}
.product img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}
.product button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.product button:hover {
    background: #218838;
}