/* ========================================
   SHOP PAGE STYLES - shop.css
   Styles for the shop/index page
   ======================================== */

/* Main Content */
.main-content {
    padding: 100px 30px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Product Card */
.product-card {
    text-align: center;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image.front {
    z-index: 2;
}

.product-image.back {
    z-index: 1;
}

.product-image-container:hover .product-image.front {
    opacity: 0;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 8px;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #666;
}

.add-to-cart-btn {
    background: var(--text-dark);
    color: var(--bg-cream);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}