/* === SHOP PAGE PRODUCT GRID === */
.shop-container {
    width: 90%;
    max-width: 1300px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 30px;
    padding-top: 20px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

/* Button styling */
.product-card .btn {
    margin-top: 12px;
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
    .shop-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
