/*==================================================
GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/*==================================================
TOP BAR
==================================================*/

.topbar{
    background:#111;
    color:#fff;
    font-size:13px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-left span,
.top-right a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
}

.top-right a:hover{
    color:#d4af37;
}

/*==================================================
HEADER
==================================================*/

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.header-row{
    display:grid;
    grid-template-columns:60px 260px 1fr 180px;
    align-items:center;
    gap:25px;
    min-height:90px;
}

/*==================================================
LOGO
==================================================*/

.logo a{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo{
    font-family:'Playfair Display',serif;
}

.logo a{
    font-size:34px;
    font-weight:700;
    color:#111;
}

.logo span{
    font-size:13px;
    color:#c7a548;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*==================================================
SEARCH
==================================================*/

.search-box form{
    display:flex;
    border:2px solid #d4af37;
    border-radius:50px;
    overflow:hidden;
    background:#fff;
    height:54px;
}

.search-box select{
    width:220px;
    border:none;
    outline:none;
    padding:0 20px;
    background:#f8f8f8;
    font-size:14px;
    cursor:pointer;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:0 20px;
    font-size:15px;
}

.search-box button{
    width:70px;
    border:none;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.search-box button:hover{
    background:#d4af37;
    color:#111;
}

/*==================================================
HEADER ICONS
==================================================*/

.header-icons{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:25px;
}

.header-icons a{
    width:48px;
    height:48px;
    border:1px solid #eee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    transition:.3s;
    font-size:18px;
    color:#111;
}

.header-icons a:hover{
    background:#111;
    color:#fff;
}

.count{
    position:absolute;
    top:-6px;
    right:-4px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:700;
}

/*==================================================
MOBILE MENU BUTTON
==================================================*/

.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:#111;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:20px;
    transition:.3s;
}

.mobile-menu-btn:hover{
    background:#d4af37;
    color:#111;
}

/*==================================================
STICKY EFFECT
==================================================*/

.header.sticky{
    animation:stickyHeader .35s ease;
}

@keyframes stickyHeader{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}
/*==================================================
NAVBAR
==================================================*/

.navbar{
    background:#ffffff;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    position:relative;
    z-index:99;
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:center;
}

.navbar ul{
    display:flex;
    align-items:center;
}

.navbar ul li{
    position:relative;
}

.navbar ul li>a{
    display:flex;
    align-items:center;
    gap:6px;
    padding:18px 22px;
    font-size:15px;
    font-weight:500;
    color:#222;
    transition:.3s;
    text-transform:capitalize;
}

.navbar ul li>a:hover{
    color:#c7a548;
}

.navbar ul li:hover>a{
    color:#c7a548;
}

.navbar ul li>a i{
    font-size:12px;
    transition:.3s;
}

.navbar ul li:hover>a i{
    transform:rotate(180deg);
}

/*==================================================
MEGA MENU
==================================================*/

.mega-parent{
    position:static;
}

.mega-menu{

    position:absolute;

    left:0;

    right:0;

    top:100%;

    width:100%;

    background:#fff;

    display:grid;

    grid-template-columns:220px 220px 220px 1fr;

    gap:40px;

    padding:40px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(25px);

    transition:.35s;

    border-top:3px solid #c7a548;

}

.mega-parent:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.mega-menu div{
    display:flex;
    flex-direction:column;
}

.mega-menu h4{

    font-size:18px;

    margin-bottom:18px;

    color:#111;

    font-family:'Playfair Display',serif;

    position:relative;

    padding-bottom:10px;

}

.mega-menu h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:50px;

    height:2px;

    background:#c7a548;

}

.mega-menu a{

    display:block;

    padding:10px 0;

    color:#555;

    font-size:14px;

    transition:.3s;

}

.mega-menu a:hover{

    color:#c7a548;

    padding-left:10px;

}

/*==================================================
MEGA MENU BANNER
==================================================*/

.mega-banner{

    overflow:hidden;

    border-radius:14px;

    position:relative;

}

.mega-banner img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.mega-banner:hover img{

    transform:scale(1.08);

}

.mega-banner::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.35),
    rgba(0,0,0,.05));

}

/*==================================================
SALE MENU ITEM
==================================================*/

.navbar .sale>a{

    color:#e63946;

    font-weight:600;

}

.navbar .sale>a:hover{

    color:#111;

}

/*==================================================
NEW ARRIVAL LABEL
==================================================*/

.menu-label{

    background:#e63946;

    color:#fff;

    font-size:10px;

    padding:3px 7px;

    border-radius:20px;

    margin-left:6px;

    font-weight:600;

}

/*==================================================
NAVBAR HOVER LINE
==================================================*/

.navbar ul li>a{

    position:relative;

}

.navbar ul li>a::after{

    content:"";

    position:absolute;

    left:20px;

    bottom:12px;

    width:0;

    height:2px;

    background:#c7a548;

    transition:.3s;

}

.navbar ul li:hover>a::after{

    width:calc(100% - 40px);

}

/*==================================================
HEADER SEARCH FOCUS
==================================================*/

.search-box{

    position:relative;

}

.search-box form:focus-within{

    box-shadow:0 0 0 4px rgba(199,165,72,.18);

    border-radius:50px;

}

/*==================================================
HEADER ICON HOVER
==================================================*/

.header-icons a{

    overflow:hidden;

}

.header-icons a::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

    background:#c7a548;

    transition:.35s;

    z-index:-1;

}

.header-icons a:hover::before{

    width:120%;

    height:120%;

}

.header-icons a:hover{

    color:#111;

    border-color:#c7a548;

}

/*==================================================
LOGO HOVER
==================================================*/

.logo a{

    transition:.3s;

}

.logo a:hover{

    transform:scale(1.03);

}

/*==================================================
HEADER SHADOW ON SCROLL
==================================================*/

.header.scrolled{

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}
/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    left:-320px;

    width:320px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s;

    box-shadow:0 0 40px rgba(0,0,0,.15);

    overflow-y:auto;

}

.mobile-menu.active{

    left:0;

}

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.mobile-header h3{

    font-family:'Playfair Display',serif;

    font-size:24px;

    color:#111;

}

.mobile-header button{

    width:40px;

    height:40px;

    border:none;

    background:#111;

    color:#fff;

    border-radius:8px;

    cursor:pointer;

}

.mobile-menu ul{

    padding:15px 0;

}

.mobile-menu ul li{

    border-bottom:1px solid #f2f2f2;

}

.mobile-menu ul li a{

    display:block;

    padding:16px 25px;

    font-size:15px;

    color:#222;

    transition:.3s;

}

.mobile-menu ul li a:hover{

    background:#c7a548;

    color:#fff;

    padding-left:35px;

}

/*==================================================
MOBILE OVERLAY
==================================================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
MOBILE BOTTOM BAR
==================================================*/

.mobile-bottom-bar{

    display:none;

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:65px;

    background:#fff;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:999;

}

.mobile-bottom-bar ul{

    display:flex;

    height:100%;

}

.mobile-bottom-bar li{

    flex:1;

}

.mobile-bottom-bar a{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    height:100%;

    font-size:12px;

    color:#444;

}

.mobile-bottom-bar i{

    font-size:20px;

    margin-bottom:5px;

}

.mobile-bottom-bar a:hover{

    color:#c7a548;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:1200px){

.header-row{

grid-template-columns:60px 220px 1fr 150px;

gap:15px;

}

.search-box select{

width:180px;

}

.navbar ul li>a{

padding:16px 14px;

font-size:14px;

}

.mega-menu{

grid-template-columns:repeat(2,1fr);

}

}

/*==================================================
SMALL LAPTOP
==================================================*/

@media(max-width:992px){

.top-left{

display:none;

}

.topbar .container{

justify-content:center;

}

.mobile-menu-btn{

display:flex;

justify-content:center;

align-items:center;

}

.header-row{

grid-template-columns:50px 1fr 70px;

}

.search-box{

display:none;

}

.header-icons a:nth-child(1),

.header-icons a:nth-child(2){

display:none;

}

.navbar{

display:none;

}

.logo a{

font-size:28px;

}

}

/*==================================================
TABLET & MOBILE
==================================================*/

@media(max-width:768px){

.container{

padding:0 15px;

}

.logo span{

display:none;

}

.header{

padding:5px 0;

}

.header-icons{

gap:12px;

}

.header-icons a{

width:42px;

height:42px;

font-size:16px;

}

.mobile-bottom-bar{

display:block;

}

body{

padding-bottom:70px;

}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:576px){

.topbar{

font-size:11px;

}

.top-right{

gap:10px;

}

.top-right a{

font-size:11px;

}

.logo a{

font-size:22px;

}

.mobile-menu{

width:280px;

left:-280px;

}

.mobile-header h3{

font-size:20px;

}

.mobile-header button{

width:35px;

height:35px;

}

}

/*==================================================
EXTRA SMALL
==================================================*/

@media(max-width:420px){

.header-row{

grid-template-columns:45px 1fr 55px;

}

.header-icons a{

width:38px;

height:38px;

font-size:15px;

}

.count{

width:18px;

height:18px;

font-size:10px;

}

.logo a{

font-size:20px;

}

}

/*==================================================
UTILITY CLASSES
==================================================*/

.text-gold{

color:#c7a548;

}

.bg-gold{

background:#c7a548;

}

.shadow-lg{

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.rounded{

border-radius:10px;

}

.transition{

transition:.3s;

}

.d-none{

display:none;

}

.text-center{

text-align:center;

}