/* Authentic Luxury Background for Lookbook Section */

.lookbook-luxury-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background: transparent;
}

/* 1. Base Gradient Layer - Richer tones for visibility on light bg */
.lookbook-gradient-layer {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(168, 144, 120, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(199, 178, 153, 0.18) 0%, transparent 45%);
    filter: blur(80px);
    opacity: 1;
}

/* 2. Authentic Texture (Grain) - Darkened for light background */
.lookbook-texture {
    position: absolute;
    inset: 0;
    /* Darker grain for visibility */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E");
    opacity: 0.7;
    /* Multiply blends dark pixels into the light background */
    mix-blend-mode: multiply; 
}

/* 3. Floating Organic Shapes (Orbs) - Fallback style */
.lookbook-orb {
    position: absolute;
    border-radius: 50%;
    /* Gradient from Gold to Transparent (instead of White) */
    background: radial-gradient(circle, rgba(212, 165, 116, 0.5) 0%, rgba(212, 165, 116, 0) 70%);
    opacity: 0.6;
    filter: blur(30px); /* Increased blur for softer look */
}

/* 4. Elegant Line Accents - Darker Gold/Bronze */
.lookbook-line {
    position: absolute;
    height: 1px;
    /* Bronze gradient */
    background: linear-gradient(90deg, transparent, rgba(168, 144, 120, 0.6), transparent);
    transform-origin: center;
}

/* 5. Subtle Dust Particles - Darker */
.lookbook-dust-particle {
    position: absolute;
    width: 4px; /* Increased from 3px */
    height: 4px;
    background-color: rgba(168, 110, 80, 0.9); /* Darker/Redder bronze */
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(168, 144, 120, 0.4);
}
