/* ==========================================================
   Xclusive Gold Shape Overrides
   Replaces template image shapes with CSS radial gradients
   ========================================================== */

/* Hero shapes — replace images with CSS gradients */
.hero-1-shapes__glow {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-1-shapes__glow--left {
    top: -10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 105, 20, 0.45) 0%, rgba(60, 40, 5, 0.2) 50%, transparent 75%);
    transform: rotate(-15deg);
}

.hero-1-shapes__glow--right {
    top: -5%;
    right: -8%;
    width: 45%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(197, 152, 26, 0.35) 0%, rgba(232, 197, 71, 0.15) 40%, transparent 70%);
    transform: rotate(10deg);
    display: none;
}
@media (min-width: 1200px) {
    .hero-1-shapes__glow--right {
        display: block;
    }
}

/* Decorative ring — centered top faint */
.hero-1-shapes__ring {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(197, 152, 26, 0.08);
    box-shadow: 0 0 80px rgba(197, 152, 26, 0.05);
}

/* Welcome / Steps section shape */
.xclusive-section-glow {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: -5%;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 105, 20, 0.3) 0%, rgba(197, 152, 26, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
}

/* Footer glow */
.footer-1__glow {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at 70% 70%, rgba(197, 152, 26, 0.25) 0%, rgba(139, 105, 20, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
}
