/* Product Grid */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width:1200px;
}

/* Product Card */
.product-card {
    border:1px solid #ddd;
    padding:15px;
    width:calc(25% - 20px);
    box-sizing:border-box;
    text-align:center;
    background:#fff;
}

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

.product-card h3 {
    margin:10px 0;
    font-size:18px;
}

.product-card .price {
    color:#0073aa;
    font-weight:bold;
}

.product-card a {
    color:inherit;
    text-decoration:none;
}

.product-card a:hover {
    text-decoration:underline;
}

/* Responsive */
@media(max-width:1024px){ .product-card{ width:calc(33.33% - 20px); } }
@media(max-width:768px){ .product-card{ width:calc(50% - 20px); } }
@media(max-width:480px){ .product-card{ width:100%; } }