/* ============================
   PRODUCT GRID
============================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* ============================
   PRODUCT CARD
============================ */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Product Title */
.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
    color: #222;
}

/* Price */
.product-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

/* Add to Cart Button */
.product-card .btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s ease;
}

.product-card .btn:hover {
    background: #333;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 600px) {
    .product-card img {
        height: 150px;
    }

    .product-card {
        padding: 15px;
    }
}