.lux-navbar{
    position:fixed;
    top:15px;
    left:50%;
    transform:translateX(-50%);
    width:96%;
    max-width:1400px;
    height:90px;

    border-radius:65px;
    overflow:hidden;
    z-index:9999;

    /* 🔥 PREMIUM GLASS */
    background: rgba(10, 20, 14, 0.55);
    backdrop-filter: blur(28px);

    border:1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 15px 60px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition: all .4s ease;
}

/* =========================
OIL LIGHT ANIMATION (ALT AKIŞ)
========================= */
.lux-navbar::after{
    content:"";
    position:absolute;
    bottom:0;
    left:-40%;
    width:180%;
    height:4px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #ffd95e,
        transparent
    );

    filter: blur(0.5px);
    animation: oilFlow 3.5s linear infinite;
}

@keyframes oilFlow{
    0%{transform:translateX(-20%);}
    100%{transform:translateX(20%);}
}

/* =========================
CONTENT
========================= */
.lux-content{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:0 30px;
}

/* =========================
LOGO
========================= */
.lux-logo h2{
    flex-shrink:0;
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#fff;

    text-shadow:0 2px 12px rgba(0,0,0,.4);
}

.lux-logo span{
    font-size:12px;
    color:#d4af37;
    font-weight:600;
}

/* =========================
MENU
========================= */
.lux-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex:1;
}

.lux-menu a{
    text-decoration:none;
    color:rgba(255,255,255,.85);
    font-weight:600;
    font-size:16px;
    position:relative;
    transition:.25s;
}

.lux-menu a:hover{
    color:#fff;
}

/* underline glow */
.lux-menu a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    transform:translateX(-50%);
    width:0%;
    height:2px;
    background:#d4af37;
    border-radius:20px;
    transition:.3s;
    box-shadow:0 0 10px #d4af37;
}

.lux-menu a:hover::after{
    width:100%;
}

/* =========================
CART
========================= */
.lux-cart{
    flex-shrink:0;
    position:relative;
    background:#d4af37;
    color:#111;
    padding:10px 14px;
    border-radius:14px;
    font-weight:800;
    cursor:pointer;

    transition:.3s;
}

.lux-cart:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(212,175,55,.3);
}

/* =========================
SCROLL EFFECT CLASS (JS İÇİN)
========================= */
.lux-navbar.scrolled{
    top:10px;
    background: rgba(5, 12, 8, 0.75);
    backdrop-filter: blur(35px);
    box-shadow:
        0 20px 70px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.06);
}
/* MOBILE MENU */

.lux-mobile-btn{

    display:none;

    width:48px;
    height:48px;

    border-radius:14px;

    background:#d4af37;

    color:#111;

    justify-content:center;
    align-items:center;

    cursor:pointer;

    font-size:20px;

}

.mobile-menu{

    position:fixed;

    top:0;
    right:-320px;

    width:300px;
    height:100vh;

    background:#08140d;

    display:flex;

    flex-direction:column;

    padding:120px 35px;

    gap:25px;

    transition:.35s;

    z-index:99999;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    color:white;

    text-decoration:none;

    font-size:18px;

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}
/* ===========================
RESPONSIVE NAVBAR
=========================== */

@media (max-width:992px){

    .lux-navbar{

        height:72px;
        border-radius:22px;
        width:97%;
        top:8px;

    }

    .lux-menu{

        display:none;

    }

    .lux-mobile-btn{

        display:flex;

    }

    .lux-content{

        padding:0 18px;

    }

}

@media (max-width:576px){

    .lux-navbar{

        height:62px;

    }

    .lux-content{

        padding:0 12px;

    }

    .lux-logo h2{

        font-size:16px;

    }

    .lux-logo span{

        display:none;

    }

    .lux-cart{

        padding:8px 10px;

    }

    .lux-mobile-btn{

        width:42px;
        height:42px;
        font-size:18px;

    }

}
@media(max-width:992px){

.nav-links{

display:none;

}

.mobile-menu{

display:flex;

}

.logo img{

height:45px;

}

}