:root{
    --gold:#C5A572;
    --dark:#111111;
    --light:#f8f8f8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   GLOBAL OVERFLOW FIX
========================= */

*{

    box-sizing:border-box;

}



.row{

    margin-left:0 !important;
    margin-right:0 !important;

}

html,
body{

    width:100%;
    max-width:100%;

    overflow-x:hidden;

    margin:0;
    padding:0;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    padding-top:165px;

    position:relative;

}


/* =========================
   TOPBAR MARQUEE
========================= */

.topbar-marquee{

    background:linear-gradient(90deg,#111,#1c1c1c);
    color:#fff;

    padding:10px 0;

    font-size:14px;
    font-weight:500;
    letter-spacing:.5px;

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1060;

    border-bottom:1px solid rgba(255,255,255,0.08);

    transition:
    transform .4s ease,
    opacity .4s ease;

}

/* HIDE TOPBAR */

.topbar-hide{

    transform:translateY(-100%);
    opacity:0;

}

.topbar-marquee marquee{
    margin:0;
    padding:0;
}

.topbar-marquee span{
    color:var(--gold);
    font-weight:600;
}

/* Responsive */

@media(max-width:576px){

    .topbar-marquee{
        font-size:12px;
        padding:8px 0;
    }

    .navbar{
        top:38px;
    }

    body{
        padding-top:110px;
    }

}

@media(max-width:768px){

    .contact-top-header{
        display:none;
    }

    .navbar{
        top:42px;
    }

    .navbar-move{
        top:0;
    }

    body{
        padding-top:110px;
    }

}

@media(max-width:576px){

    .topbar-marquee{
        font-size:12px;
        padding:8px 0;
    }

}

/* =========================
   CONTACT HEADER
========================= */

.contact-top-header{

    background:#fcecbd;

    border-bottom:1px solid #f1f1f1;

    position:fixed;

    top:42px;

    left:0;

    width:100%;

    z-index:1045;

    transition:
    transform .4s ease,
    top .4s ease;

}

/* HIDE CONTACT HEADER */

.contact-hide{

    transform:translateY(-100%);

}

/* Wrapper */

.contact-header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
}

/* =========================
   LEFT SIDE
========================= */

.contact-left{
    display:flex;
    align-items:center;
    gap:28px;
}

.contact-left a{
    color:#555;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.contact-left a:hover{
    color:var(--gold);
}

.contact-left i{
    color:var(--gold);
    margin-right:8px;
}

/* =========================
   SOCIAL ICONS
========================= */

.contact-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#f7f7f7;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    text-decoration:none;

    transition:.3s;
}

.contact-social a:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .contact-top-header{
        display:none;
    }

}


/* =========================
   PREMIUM STICKY NAVBAR
========================= */

.navbar{

    position:fixed;

    top:94px;
    left:0;
    right:0;
    width:100%;
    max-width:100%;
    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    padding:18px 0;

    z-index:1050;

    transition:
    top .45s cubic-bezier(0.4,0,0.2,1),
    padding .35s ease,
    background .35s ease,
    box-shadow .35s ease,
    transform .35s ease;

}

/* SCROLLED NAVBAR */

.navbar.scrolled{

    padding:12px 0;

    background:rgba(255,255,255,0.98);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

}

/* MOVE NAVBAR TOP */

.navbar-move{

    top:0;

}

.navbar-brand{
    font-family:'Playfair Display',serif;
    font-size:32px;
    font-weight:700;
    color:var(--gold) !important;
}

.nav-link{
    color:#222 !important;
    font-weight:500;
    margin:0 12px;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:var(--gold);
    left:0;
    bottom:-5px;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-icons a{
    color:#222;
    font-size:20px;
    margin-left:18px;
    transition:.3s;
}

.nav-icons a:hover{
    color:var(--gold);
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    min-height:100vh;
    background:
    linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.3)),
    url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    
    display:flex;
    align-items:center;
    color:#fff;
    position:relative;
    
}

.hero-content h5{
    color:var(--gold);
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:72px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    max-width:550px;
    margin-bottom:35px;
    color:#ddd;
}

.btn-gold{
    background:var(--gold);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.btn-gold:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
}

/* =========================
   CATEGORIES SECTION
========================= */

.categories-section{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:#111;
    margin-bottom:12px;
}

.section-title p{
    color:#777;
    max-width:650px;
    margin:auto;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   CATEGORY CARD
========================= */

.category-item{
    background:#fff;
    border-radius:24px;
    padding:18px;
    text-align:center;
    transition:.4s;
    cursor:pointer;
    border:1px solid #f1f1f1;
}

.category-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.category-image{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:18px;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.category-item:hover img{
    transform:scale(1.08);
}

.category-item h4{
    font-size:20px;
    font-weight:600;
    color:#111;
    margin-bottom:0;
}

/* =========================
   OWL NAVIGATION
========================= */

.category-carousel .owl-nav{
    margin-top:35px;
    text-align:center;
}

.category-carousel .owl-nav button{
    width:52px;
    height:52px;
    border-radius:50% !important;
    background:#f5f5f5 !important;
    margin:0 8px;
    transition:.3s;
}

.category-carousel .owl-nav button:hover{
    background:var(--gold) !important;
    color:#fff !important;
}

.category-carousel .owl-nav span{
    font-size:28px;
    line-height:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .section-title h2{
        font-size:42px;
    }

    .category-image{
        height:200px;
    }

}

@media(max-width:576px){

    .categories-section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:14px;
    }

    .category-image{
        height:180px;
    }

    .category-item h4{
        font-size:18px;
    }

}

/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals-section{
    padding:100px 0;
    background:#fafafa;
}

/* =========================
   ARRIVAL CARD
========================= */

.arrival-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.4s;
    position:relative;
    height:100%;
    border:1px solid #f2f2f2;
}

.arrival-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.arrival-image{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    margin:18px;
    height:260px;
}

/* MAIN IMAGE */

.arrival-image .main-img,
.arrival-image .hover-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

/* MAIN IMAGE DEFAULT */

.arrival-image .main-img{
    opacity:1;
    transform:scale(1);
}

/* HOVER IMAGE DEFAULT */

.arrival-image .hover-img{
    opacity:0;
    transform:scale(1.08);
}

/* HOVER EFFECT */

.arrival-card:hover .main-img{
    opacity:0;
    transform:scale(1.08);
}

.arrival-card:hover .hover-img{
    opacity:1;
    transform:scale(1);
}

/* CATEGORY BADGE */

.arrival-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:var(--gold);
    color:#fff;
    padding:7px 16px;
    border-radius:40px;
    font-size:13px;
    font-weight:500;
    z-index:5;
}

/* =========================
   CONTENT
========================= */

.arrival-content{
    padding:10px 24px 24px;
    text-align:center;
}

.arrival-content h4{
    font-size:19px;
    font-weight:600;
    margin-bottom:14px;
    line-height:1.6;
    color:#111;
}

.arrival-price{
    font-size:24px;
    font-weight:700;
    color:var(--gold);
    margin-bottom:22px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    width:100%;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:14px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#111;
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .arrival-image{
        height:240px;
    }

}

@media(max-width:576px){

    .new-arrivals-section{
        padding:80px 0;
    }

    .arrival-image{
        height:210px;
        margin:14px;
    }

    .arrival-content{
        padding:10px 18px 20px;
    }

    .arrival-content h4{
        font-size:17px;
    }

    .arrival-price{
        font-size:22px;
    }

    .whatsapp-btn{
        font-size:14px;
        padding:12px;
    }

}

/* =========================
   OFFER SECTION
========================= */

.offer-section{
    padding:100px 0;
    background:
    linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.3)),
    url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?q=80&w=1600&auto=format&fit=crop') center no-repeat;
    color:#fff;
    text-align:center;
}

.offer-section h2{
    font-family:'Playfair Display',serif;
    font-size:58px;
    margin-bottom:20px;
}

.offer-section p{
    color:#ccc;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#0c0c0c;
    color:#fff;
    padding:80px 0 20px;
}

.footer-logo{
    font-family:'Playfair Display',serif;
    font-size:34px;
    color:var(--gold);
}

.footer-title{
    margin-bottom:25px;
    font-size:20px;
}

.footer-links a{
    display:block;
    color:#bbb;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:5px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#1c1c1c;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:var(--gold);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#aaa;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:15px;
        border-radius:12px;
    }

    .nav-link{
        margin:10px 0;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:36px;
    }

    .offer-section h2{
        font-size:38px;
    }
}

/* Hide Contact Header */

.hide-contact-header{
    transform:translateY(-100%);
}

/* Navbar Move Up */

.navbar-top{
    top:0 !important;
}

.topbar-marquee{

    overflow:hidden;

}

.topbar-marquee marquee{

    width:100%;

}

/* =========================
   MOBILE HEADER FIX
========================= */

@media(max-width:991px){

    .navbar{

        top:36px;

        backdrop-filter:none;

        -webkit-backdrop-filter:none;

    }

    .navbar-move{

        top:0;

    }

}

@media(max-width:991px){

    /* BODY SPACING */

    body{
        padding-top:105px;
    }

    /* HIDE CONTACT HEADER */

    .contact-top-header{
        display:none;
    }

    /* TOPBAR */

    .topbar-marquee{

        padding:8px 0;

        font-size:12px;

        z-index:1060;

    }

    /* NAVBAR */

    .navbar{

        top:36px !important;

        background:#fff !important;

        padding:14px 0;

        box-shadow:0 2px 10px rgba(0,0,0,0.05);

    }

    /* NAVBAR AFTER SCROLL */

    .navbar-move{

        top:0 !important;

    }

    /* LOGO */

    .navbar-brand{

        color:var(--gold) !important;

        font-size:28px;

    }

    /* TOGGLER */

    .navbar-toggler{

        border:none !important;

        box-shadow:none !important;

        padding:0;

    }

    .navbar-toggler i{

        color:#111 !important;

        font-size:32px;

    }

    /* MOBILE MENU */

    .navbar-collapse{
    background:#fff;
    padding:20px;
    margin-top:15px;
    border-radius:12px;
}

    /* NAV LINKS */

    .nav-link{

        color:#111 !important;

        font-size:16px;

        font-weight:500;

        margin:12px 0;

        display:block;

    }

    /* DROPDOWN */

    .dropdown-menu{

        border:none !important;

        box-shadow:none !important;

        padding-left:10px;

        margin-top:5px;

        background:#fafafa;

        border-radius:12px;

    }

    .dropdown-item{

        color:#111 !important;

        padding:10px 15px;

        border-radius:10px;

    }

    .dropdown-item:hover{

        background:#f2f2f2;

        color:var(--gold) !important;

    }

    /* NAV ICONS */

    .nav-icons{

        margin-top:20px;

        display:flex;

        gap:12px;

    }

    .nav-icons a{

        width:42px;

        height:42px;

        border-radius:50%;

        background:#f5f5f5;

        display:flex;

        align-items:center;

        justify-content:center;

        color:#111 !important;

        margin-left:0;

    }

    .nav-icons a:hover{

        background:var(--gold);

        color:#fff !important;

    }

}

/* EXTRA SMALL DEVICES */

@media(max-width:576px){

    .navbar-brand{

        font-size:24px;

    }

    .navbar{

        padding:12px 0;

    }

    .navbar-toggler i{

        font-size:28px;

    }

}

/* =========================
   TOPBAR HIDE
========================= */

.topbar-marquee{

    transition:
    transform .45s cubic-bezier(0.4,0,0.2,1),
    opacity .35s ease;

}

.topbar-hide{

    transform:translateY(-100%);

    opacity:0;

}

/* =========================
   CONTACT HEADER
========================= */

.contact-top-header{

    transition:
    transform .45s cubic-bezier(0.4,0,0.2,1),
    opacity .35s ease,
    top .35s ease;

}

.contact-hide{

    transform:translateY(-100%);

    opacity:0;

}

/* =========================
   OWL FIX
========================= */

.owl-carousel{

    width:100%;

}

.owl-stage-outer{

    overflow:hidden !important;

}

.owl-stage{

    display:flex;

}

/* =========================
   TRANSFORM FIX
========================= */

/*section,
div,
header,
footer,
nav{

    max-width:100%;

}*/

/* =========================
   BRAND LOGO + TEXT
========================= */

.navbar-brand{
    display:flex;
    align-items:center;
    gap:1px;
    max-width:320px;
}

.brand-logo{
    width:100px;
    height:auto;
    object-fit:contain;
}

.brand-text{
    font-size:12px;
    font-weight:700;
    line-height:1.2;
    color:#000;
    white-space:normal;
}

/* =========================
   NAVBAR MENU ALIGNMENT
========================= */

.navbar-nav{
    margin-left:auto;
    gap:10px;
}

/* =========================
   BRAND LOGO SIZE
========================= */

.brand-logo{
    height: 200px;      /* increase logo size */
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* KEEP HEADER HEIGHT SAME */

.navbar{
    min-height: 85px;   /* keep navbar height fixed */
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand{
    display: flex;
    align-items: center;
    height: 85px;       /* same as navbar height */
    margin: 0;
    padding: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar-brand{
        max-width:240px;
    }

    .brand-logo{
        width:45px;
    }

    .brand-text{
        font-size:14px;
    }

}
