:root{
--gold:#D4AF37;
--black:#050505;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
background:#000;
color:#fff;
overflow-x:hidden;
}

#loader{
position:fixed;
inset:0;
background:#000;
z-index:9999;
display:flex;
justify-content:center;
align-items:center;
}

.logo-animation{
font-size:4rem;
font-family:'Cormorant Garamond',serif;
letter-spacing:8px;
color:var(--gold);
animation:glow 2s infinite;
}

@keyframes glow{
50%{
opacity:.5;
}
}

.cursor-glow{
position:fixed;
width:250px;
height:250px;
background:rgba(212,175,55,.15);
border-radius:50%;
pointer-events:none;
transform:translate(-50%,-50%);
filter:blur(60px);
z-index:1;
}

.luxury-nav{
background:rgba(0,0,0,.4);
backdrop-filter:blur(15px);
padding:20px 0;
}

.navbar-brand{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
color:var(--gold)!important;
}

.nav-link{
color:white!important;
margin:0 12px;
}


.shop-btn{
display:inline-block;
padding:15px 40px;
background:var(--gold);
color:#000;
text-decoration:none;
font-weight:600;
}

.featured{
padding:120px 0;
background:#090909;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-family:'Cormorant Garamond',serif;
font-size:3rem;
}

.category-card{
position:relative;
overflow:hidden;
border-radius:20px;
}

.category-card img{
width:100%;
height:500px;
object-fit:cover;
transition:.6s;
}

.category-card:hover img{
transform:scale(1.1);
}

.category-text{
position:absolute;
bottom:30px;
left:30px;
}

.story{
padding:120px 0;
background:#000;
}

.story h2{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin-bottom:20px;
}

.newsletter{
padding:100px 0;
background:#111;
}

.newsletter h2{
font-family:'Cormorant Garamond',serif;
font-size:3rem;
}

.newsletter-form{
display:flex;
justify-content:center;
gap:10px;
margin-top:30px;
}

.newsletter-form input{
width:400px;
padding:15px;
border:none;
}

.newsletter-form button{
padding:15px 30px;
background:var(--gold);
border:none;
font-weight:bold;
}

footer{
background:#050505;
padding:80px 0;
}

footer ul{
list-style:none;
padding:0;
}

footer li{
margin-bottom:10px;
}

.social i{
font-size:22px;
margin-right:15px;
color:var(--gold);
}


.luxury-products{
padding:120px 0;
background:#050505;
}

.product-slider{
display:flex;
gap:30px;
overflow-x:auto;
padding:20px;
scrollbar-width:none;
}

.product-slider::-webkit-scrollbar{
display:none;
}

.product-card{
min-width:320px;
background:#0d0d0d;
border-radius:20px;
overflow:hidden;
transition:.5s;
}

.product-card:hover{
transform:translateY(-15px);
box-shadow:0 20px 60px rgba(212,175,55,.25);
}

.product-card img{
width:100%;
height:420px;
object-fit:cover;
}

.product-card h4{
padding:20px 20px 0;
}

.product-card p{
padding:0 20px 20px;
color:#D4AF37;
font-weight:bold;
}




.hero-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
}






.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.60);
z-index:2;
}

.gold-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at center,
rgba(212,175,55,.15),
transparent 60%);
z-index:3;
}

.hero-content{
position:relative;
z-index:10;
color:white;
}

.hero-subtitle{
color:#D4AF37;
text-transform:uppercase;
letter-spacing:5px;
font-size:.9rem;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:5rem;
font-weight:600;
line-height:.95;
margin:25px 0;
}

.hero p{
max-width:650px;
margin:auto;
font-size:1.2rem;
color:#ddd;
}

.hero-buttons{
margin-top:40px;
}

.btn-shop{
background:#D4AF37;
color:black;
padding:16px 40px;
text-decoration:none;
margin-right:15px;
font-weight:600;
}

.btn-story{
border:1px solid #D4AF37;
color:#D4AF37;
padding:16px 40px;
text-decoration:none;
}

.btn-shop:hover{
background:white;
color:black;
}

.btn-story:hover{
background:#D4AF37;
color:black;
}

.scroll-indicator{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
z-index:20;
}

.scroll-indicator span{
display:block;
width:2px;
height:60px;
background:#D4AF37;
animation:scrollAnim 2s infinite;
}

@keyframes scrollAnim{

0%{
    transform:scaleY(0);
    transform-origin:top;
}

50%{
    transform:scaleY(1);
    transform-origin:top;
}

100%{
    transform:scaleY(0);
    transform-origin:bottom;
}
}

@media(max-width:768px){

.hero h1{
font-size:4rem;
}

.btn-shop,
.btn-story{
display:block;
margin:10px auto;
}

}


.luxury-nav{

background:rgba(0,0,0,.20);

backdrop-filter:blur(20px);

padding:20px 0;

transition:.4s;

border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-brand{

font-family:'Cormorant Garamond',serif;

font-size:2.2rem;

color:#D4AF37 !important;

letter-spacing:3px;

}

.nav-link{

color:white !important;

margin:0 14px;

font-size:.9rem;

letter-spacing:1px;

text-transform:uppercase;

transition:.3s;

}

.nav-link:hover{

color:#D4AF37 !important;

}

.nav-icons{

display:flex;

align-items:center;

gap:25px;

color:white;

font-size:18px;

cursor:pointer;

}

.cart-icon{

position:relative;

}

.cart-icon span{

position:absolute;

top:-10px;

right:-12px;

width:18px;

height:18px;

background:#D4AF37;

border-radius:50%;

font-size:10px;

color:black;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}


.bestsellers{

padding:120px 0;

background:#070707;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

color:#D4AF37;

letter-spacing:4px;

text-transform:uppercase;

}

.section-title h2{

font-family:'Cormorant Garamond',serif;

font-size:4rem;

margin-top:15px;

}

.product-card{

background:#111;

border-radius:20px;

overflow:hidden;

transition:.5s;

}

.product-card:hover{

transform:translateY(-15px);

box-shadow:0 25px 60px rgba(212,175,55,.25);

}

.product-card img{

width:100%;

height:420px;

object-fit:cover;

}

.product-card h4{

padding:20px 20px 10px;

}

.product-card p{

padding:0 20px 20px;

color:#D4AF37;

font-weight:600;

}


.luxury-banner{

padding:180px 0;

background:url('assets/img/banner.jpg')
center center/cover;

position:relative;

}

.luxury-banner::before{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,.65);

}

.luxury-banner .container{

position:relative;

z-index:2;

}

.luxury-banner h2{

font-family:'Cormorant Garamond',serif;

font-size:5rem;

max-width:900px;

margin:auto;

}

.luxury-banner p{

font-size:1.2rem;

margin:25px 0 40px;

}

.mega-menu{

width:100%;

left:0;

right:0;

padding:50px;

background:#080808;

border:none;

border-top:1px solid rgba(255,255,255,.08);

}

.mega-menu h5{

color:#D4AF37;

margin-bottom:20px;

font-family:'Cormorant Garamond',serif;

}

.mega-menu a{

display:block;

color:#ddd;

text-decoration:none;

margin-bottom:12px;

transition:.3s;

}

.mega-menu a:hover{

color:#D4AF37;

padding-left:8px;

}

.dropdown:hover .mega-menu{

display:block;

}

#searchOverlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.95);

z-index:99999;

display:none;

justify-content:center;

align-items:center;

flex-direction:column;

}

.search-box{

width:80%;
max-width:800px;

}

.search-box h2{

font-family:'Cormorant Garamond',serif;

font-size:4rem;

margin-bottom:30px;

text-align:center;

}

.search-box input{

width:100%;

padding:25px;

font-size:1.2rem;

background:transparent;

border:none;

border-bottom:2px solid #D4AF37;

color:white;

outline:none;

}

.close-search{

position:absolute;

top:40px;

right:50px;

font-size:35px;

cursor:pointer;

color:#D4AF37;

}


.luxury-footer{

background:#040404;

padding:100px 0 40px;

border-top:1px solid rgba(255,255,255,.08);

}

.luxury-footer h2{

font-family:'Cormorant Garamond',serif;

font-size:3rem;

color:#D4AF37;

margin-bottom:20px;

}

.luxury-footer h5{

color:#D4AF37;

margin-bottom:25px;

}

.luxury-footer ul{

list-style:none;

padding:0;

}

.luxury-footer li{

margin-bottom:12px;

}

.luxury-footer a{

color:#aaa;

text-decoration:none;

transition:.3s;

}

.luxury-footer a:hover{

color:#D4AF37;

}

.footer-social{

display:flex;

gap:20px;

font-size:20px;

margin-top:30px;

}

.footer-social i{

cursor:pointer;

transition:.3s;

}

.footer-social i:hover{

color:#D4AF37;

}

.luxury-footer input{

width:100%;

padding:12px;

background:#111;

border:none;

color:white;

margin-bottom:10px;

}

.luxury-footer button{

width:100%;

padding:12px;

background:#D4AF37;

border:none;

font-weight:bold;

}

.footer-bottom{

display:flex;

justify-content:space-between;

margin-top:30px;

color:#777;

}

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

text-align:center;

gap:15px;

}

}


.luxury-search-modal{

background:#090909;

border:1px solid rgba(212,175,55,.2);

border-radius:20px;

color:white;

padding:30px;

}

.luxury-search-modal h2{

font-family:'Cormorant Garamond',serif;

font-size:3rem;

text-align:center;

color:#D4AF37;

margin-bottom:10px;

}

.luxury-search-modal p{

text-align:center;

color:#aaa;

margin-bottom:40px;

}

.search-wrapper{

position:relative;

}

.search-wrapper i{

position:absolute;

left:20px;

top:50%;

transform:translateY(-50%);

color:#D4AF37;

}

.search-wrapper input{

width:100%;

height:65px;

background:#111;

border:1px solid rgba(212,175,55,.15);

padding-left:60px;

font-size:18px;

color:white;

border-radius:12px;

outline:none;

}

.search-wrapper input:focus{

border-color:#D4AF37;

}

.popular-searches{

margin-top:30px;

text-align:center;

}

.popular-searches span{

color:#777;

margin-right:10px;

}

.popular-searches a{

text-decoration:none;

color:#D4AF37;

margin:0 10px;

}

.search-close{

position:absolute;

top:20px;

right:20px;

}


.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
}