.elementor-3248 .elementor-element.elementor-element-caca7ac{--display:flex;}.elementor-3248 .elementor-element.elementor-element-4722c90{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-60773fa */:root {
    /* Gold color palette for Banora Luxe */
    --gold-gradient: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-solid: #D4AF37;
}

.hero-premium {
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Particles Effect */
.particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
}

.particles::after {
    content: "";
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold-solid);
    box-shadow: 10vw 20vh 2px var(--gold-solid), 50vw 80vh 1px #fff, 80vw 10vh 2px var(--gold-solid), 30vw 50vh 1px #fff;
    filter: blur(1px);
    animation: floatParticles 20s infinite linear;
}

@keyframes floatParticles {
    from { transform: translateY(0); opacity: 0.5; }
    to { transform: translateY(-100vh); opacity: 0; }
}

/* Improved Glassmorphism for better text contrast */
.glass-container {
    padding: 60px;
    /* Background thoda dark kiya hai taaki text saaf dikhe */
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    text-align: center;
}

/* TEXT CLARITY FIX: Brand Name */
.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 6.5rem; /* Balanced size */
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
    letter-spacing: 15px;
    margin: 10px 0;
    /* Adding multi-layered shadow for extreme clarity */
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,1));
    position: relative;
    z-index: 2;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.pre-title {
    color: var(--gold-solid);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-desc {
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

/* Rest of your animated divider and buttons */
.animated-divider {
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
    margin: 25px 0;
    position: relative;
}

.animated-divider span {
    position: absolute;
    width: 60px; height: 3px;
    background: var(--gold-solid);
    top: -1px; left: 0;
    box-shadow: 0 0 15px var(--gold-solid);
    animation: moveDivider 3s infinite alternate ease-in-out;
}

@keyframes moveDivider {
    0% { left: 0; }
    100% { left: calc(100% - 60px); }
}

.cta-group { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }

.btn-primary {
    padding: 16px 40px;
    background: var(--gold-solid);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    border-radius: 4px;
    border: 1px solid var(--gold-solid);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-solid);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    padding: 16px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.4s;
    border-radius: 4px;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-solid);
    font-size: 10px;
    letter-spacing: 3px;
}

.scroll-down .line {
    width: 1px; height: 50px;
    background: var(--gold-gradient);
    margin: 10px auto;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 50px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-21b30d0 */:root {
    --gold: #D4AF37;
    --gold-foil: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --black: #000;
}

body { background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif; }

.collection-grid-section { padding: 80px 8%; text-align: center; }
.section-heading { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 50px; letter-spacing: 5px; }

.luxe-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.luxe-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 20px;
    transition: 0.5s ease;
}

.luxe-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.image-wrapper { height: 380px; overflow: hidden; margin-bottom: 20px; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

/* Golden Shimmer Titles */
.product-title {
    font-family: 'Cinzel', serif;
    background: var(--gold-foil);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShine 4s linear infinite;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
}

@keyframes goldShine { to { background-position: 200% center; } }

.luxe-price { color: #fff; font-size: 1.2rem; margin: 10px 0; }
.luxe-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
}

.luxe-btn:hover { background: var(--gold); color: #000; }/* End custom CSS */