/* Shop Page Styles - Dark Maximalist */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.shop-page {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
}

/* Rich Maximalist Background */
.shop-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 107, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(242, 175, 41, 0.1) 0%, transparent 70%),
        #0a0a0a;
}

/* Floral Border Accent */
.floral-accent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.floral-corner {
    position: absolute;
    font-size: 4rem;
    animation: floralPulse 4s ease-in-out infinite;
}

.floral-corner.top-left { top: 2rem; left: 2rem; color: #ff6b9d; }
.floral-corner.top-right { top: 2rem; right: 2rem; color: #f2af29; }
.floral-corner.bottom-left { bottom: 2rem; left: 2rem; color: #636ba2; }
.floral-corner.bottom-right { bottom: 2rem; right: 2rem; color: #ff6b9d; }

@keyframes floralPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.1); }
}

/* Header */
header.shop-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, 
        rgba(99, 107, 162, 0.2) 0%, 
        rgba(255, 107, 157, 0.2) 50%,
        rgba(242, 175, 41, 0.2) 100%);
    border-bottom: 3px solid #ff6b9d;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
}

.shop-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: linear-gradient(135deg, #636ba2 0%, #ff6b9d 50%, #f2af29 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

.shop-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #f2af29;
    text-transform: uppercase;
    font-weight: 300;
}

.back-portal {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ff6b9d;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-portal:hover {
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
}

/* Shop Content Container */
.shop-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

/* Section Dividers */
.section-divider {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f2af29;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-divider::after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    margin: 2rem auto 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Product Card - Gallery Style */
.product-card {
    background: linear-gradient(135deg, rgba(99, 107, 162, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #636ba2, #ff6b9d, #f2af29) 1;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #636ba2, #ff6b9d, #f2af29);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 0.2;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
}

/* Product Image Frame */
.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #636ba2 0%, #ff6b9d 50%, #f2af29 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-bottom: 3px solid #ff6b9d;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b9d;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Product Info */
.product-info {
    padding: 2rem;
}

.product-category {
    font-size: 0.85rem;
    color: #f2af29;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.8rem;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Buy Button */
.buy-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #f2af29 100%);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

/* Amazon Section Specific Styles */
.amazon-section {
    background: rgba(242, 175, 41, 0.05);
    padding: 4rem 2rem;
    margin: 0 -2rem;
}

.amazon-product {
    border-color: #f2af29;
}

.amazon-product .product-badge {
    background: #f2af29;
}

.amazon-product .product-price {
    color: #f2af29;
}

.amazon-product .buy-button {
    background: linear-gradient(135deg, #f2af29 0%, #ff6b9d 100%);
}

/* Category Headers */
.category-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f2af29;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-logo {
        font-size: 2.5rem;
    }
    
    .back-portal {
        left: 1rem;
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floral-corner {
        font-size: 2rem;
    }
}