/* Ranisa Boutique - LUXURY GOLDEN SHIMMER ENHANCEMENT */

/* Golden Shimmer Variables */
:root {
    --gold-shimmer: linear-gradient(135deg, #d4a574 0%, #f5d5ba 50%, #d4af37 100%);
    --royal-gold: #d4af37;
    --champagne-gold: #f5d5ba;
    --rose-gold: #d4a574;
    --shimmer-light: rgba(212, 175, 55, 0.15);
    --shimmer-glow: rgba(212, 175, 55, 0.3);
}

/* Luxury Golden Shimmer Background Overlay */
body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, var(--shimmer-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--shimmer-light) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, var(--shimmer-light) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Animated Golden Sparkle Effect */
@keyframes shimmerGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Hero Section with Golden Shimmer */
.hero-section {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(245, 213, 186, 0.2) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--shimmer-glow) 0%, transparent 70%);
    animation: shimmerGlow 8s ease-in-out infinite;
    pointer-events: none;
}

/* Golden Accent Borders */
.section-divider {
    height: 2px;
    background: var(--gold-shimmer);
    margin: 3rem auto;
    max-width: 200px;
    box-shadow: 0 0 15px var(--shimmer-glow);
}

/* Enhanced Navbar with Golden Glow */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    border-bottom: 1px solid var(--shimmer-light);
}

.navbar-brand {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shimmer-glow);
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-shimmer);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover::after {
    opacity: 1;
}

/* Premium Product Cards with Golden Aura */
.product-card {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            rgba(252, 248, 242, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.2) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(212, 175, 55, 0.3);
    border-color: var(--rose-gold);
}

/* Premium Button with Golden Shimmer */
.btn-ranisa {
    background: var(--gold-shimmer);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-ranisa::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ranisa:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ranisa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Luxury Section Backgrounds */
.luxury-section {
    background: linear-gradient(135deg,
            rgba(252, 248, 242, 0.3) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(245, 213, 186, 0.2) 100%);
    position: relative;
}

.luxury-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--shimmer-glow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

/* Golden Text Highlights */
.gold-text {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Floating Golden Particles Animation */
@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.golden-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.golden-particles span {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: var(--royal-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--royal-gold);
    animation: floatParticle 15s linear infinite;
}

.golden-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.golden-particles span:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.golden-particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.golden-particles span:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 13s;
}

.golden-particles span:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 15s;
}

/* Premium Card Containers */
.premium-card {
    background: linear-gradient(to bottom right,
            #ffffff 0%,
            rgba(252, 248, 242, 0.8) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 20px;
    padding: 2rem;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gold-shimmer);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Golden Accent Lines */
.accent-line {
    height: 3px;
    background: var(--gold-shimmer);
    margin: 2rem auto;
    max-width: 100px;
    box-shadow: 0 0 10px var(--shimmer-glow);
    border-radius: 3px;
}

/* Footer with Golden Touch */
.footer {
    background: linear-gradient(to bottom,
            rgba(252, 248, 242, 0.5) 0%,
            rgba(245, 213, 186, 0.3) 100%);
    border-top: 2px solid var(--shimmer-light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gold-shimmer);
    box-shadow: 0 0 15px var(--shimmer-glow);
}

/* Enhanced WhatsApp Float with Golden Ring */
.whatsapp-float {
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: pulseGolden 2s infinite;
}

@keyframes pulseGolden {
    0% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Luxury Image Overlay */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(212, 175, 55, 0.1) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover::after {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .golden-particles {
        display: none;
        /* Disable particles on mobile for performance */
    }

    body::before {
        opacity: 0.3;
        /* Reduce shimmer intensity on mobile */
    }
}