.shop-container { padding: 60px 20px; }
.shop-header { text-align: center; margin-bottom: 50px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.product-image { height: 250px; background: #eee; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-image img { max-width: 100%; height: auto; }

.product-details { padding: 20px; text-align: center; }
.category-tag { font-size: 12px; text-transform: uppercase; color: var(--gray); letter-spacing: 1px; }
.product-details h3 { font-size: 18px; margin: 10px 0; }
.price { font-size: 20px; font-weight: bold; color: var(--primary); margin-bottom: 15px; }

.btn-outline { border: 2px solid var(--primary); color: var(--primary); display: inline-block; padding: 8px 20px; border-radius: 50px; }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* Stack Image and Description on Product Detail Page */
    .product-detail-wrapper {
        flex-direction: column;
        padding: 20px !important; /* Override inline padding */
    }

    .detail-image img {
        margin-bottom: 20px;
    }

    .product-detail-wrapper h1 {
        font-size: 24px !important;
    }
    
    .price {
        font-size: 28px !important;
    }
}