/* FEMININE GLOW EFFECTS
 * Soft ambient lighting and mesh gradients
 */

.feminine-glow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Ambient Blush Glows */
.blush-glow {
  position: absolute;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

/* Rose Gold Mesh */
.mesh-gradient-feminine {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 192, 203, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 228, 225, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 46, 147, 0.03) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255, 240, 245, 0.05) 0px, transparent 50%);
  opacity: 0.8;
}

/* Luxury Light Leak */
.light-leak-feminine {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Glass Surface Enhancement */
.glass-feminine {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
