body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 20px auto;
}

h1 {
    text-align: center;
    color: #333;
}

.product-list {
    display: grid;
    /* Default: two columns for larger screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%; /* Ensures images scale within their container */
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.2em;
}

.product-card button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

/* Media Query for mobile devices (screens less than 600px wide) */
@media (max-width: 600px) {
    .product-list {
        /* On mobile, stack products into a single column */
        grid-template-columns: 1fr;
    }
}