.shop-hero {
    height: 60vh;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('/images/shop_products.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    margin-top: -80px;
}
.shop-hero h1 {
    font-size: 3rem;
    letter-spacing: 4px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}
.product-image {
    height: 250px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img {
    max-width: 100%;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-tag {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}
.product-price {
    margin-top: auto;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shop-notice {
    background-color: #f8f1e5;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e9dcc5;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .shop-hero {
        height: 40vh;
    }
    .shop-hero h1 {
        font-size: 2rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
        padding: 40px 15px;
        gap: 30px;
    }
    .product-info {
        padding: 20px;
    }
    .product-info h3 {
        font-size: 1.2rem;
    }
}
