.wpc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.wpc-product {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
}

.wpc-product-image img {
    max-width: 100%;
    height: auto;
}

.wpc-product-title {
    font-size: 1.2em;
    margin: 10px 0;
}

.wpc-product-price {
    font-weight: bold;
    color: #333;
}

.wpc-buy-now-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.wpc-buy-now-button:hover {
    background-color: #005177;
}
