﻿.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6,6,6,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(128,0,32,.4);
    z-index: 999;
}

.nav-left {
    width: 250px;
}

.premium-logo {
    height: 60px;
}

.nav-center {
    display: flex;
    gap: 45px;
}

    .nav-center a {
        color: white;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2px;
        transition: .3s;
    }

        .nav-center a:hover {
            color: #b11226;
        }

    .nav-center .active {
        color: #b11226;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-right a {
        color: white;
        font-size: 24px;
        transition: .3s;
    }

        .nav-right a:hover {
            color: #b11226;
        }

main {
    margin-top: 90px;
}

.user-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-right: 12px;
    white-space: nowrap;
}

.cart-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    transition: .3s;
}

    .cart-nav:hover {
        color: #c1121f;
    }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #c1121f;
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Hamburger butonu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 34px;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 992px) {

    .premium-navbar {
        padding: 0 25px;
    }

    .nav-center {
        gap: 20px;
    }
}

/*==============================
MOBILE NAVBAR
==============================*/

.mobile-navbar,
.mobile-menu {
    display: none;
}

@media(max-width:768px) {

    .desktop-navbar {
        display: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        background: #050505;
        border-bottom: 1px solid rgba(177,18,38,.25);
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .mobile-logo {
        width: 150px;
    }

    .mobile-navbar i {
        font-size: 28px;
        color: white;
    }

    .mobile-toggle {
        background: none;
        border: none;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: fixed;
        top: 0;
        left: -320px;
        width: 290px;
        height: 100vh;
        background: #0d0d0d;
        padding: 35px;
        transition: .35s;
        z-index: 99999;
    }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 19px;
        }

        .mobile-menu i {
            margin-right: 12px;
            color: #b11226;
        }

    .close-mobile {
        align-self: flex-end;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
    }
}

.currency-selector select {
    background: #181818;
    color: white;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

    .currency-selector select:hover {
        border-color: #d4141f;
    }

.mobile-currency {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mobile-currency label {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

    .mobile-currency select {
        width: 100%;
        background: #111;
        color: #fff;
        border: 1px solid #444;
        border-radius: 10px;
        padding: 12px;
        font-size: 15px;
    }

.language-selector,
.mobile-language {
    margin-top: 15px;
}

    .language-selector select,
    .mobile-language select {
        width: 100%;
        border-radius: 10px;
        padding: 10px;
        border: 1px solid #444;
        background: #111;
        color: white;
    }

/* ================================
   NAVBAR SPACING
   ================================ */

.premium-navbar {
    padding-left: 45px;
    padding-right: 45px;
}

.nav-center {
    margin-left: 25px;
    gap: 38px;
}

.nav-right {
    margin-left: auto;
    gap: 20px;
    display: flex;
    align-items: center;
}


/* ================================
   LANGUAGE SELECTOR
   ================================ */

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

    .language-selector select {
        height: 38px;
        min-width: 62px;
        padding: 0 8px;
        border-radius: 10px;
        background: #111;
        color: #fff;
        border: 1px solid #333;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        outline: none;
    }

        .language-selector select:hover {
            border-color: #c8102e;
        }

        .language-selector select:focus {
            border-color: #c8102e;
        }

        /* Sağ taraftaki ikonları birbirine yaklaştır */


/* Dil seçiciyi biraz yukarı al */
.language-selector {
    position: relative;
    top: -6px;
    margin-left: 16px;
}

/* Dil kutusunu biraz daha küçük tut */
.language-selector select {
    height: 38px;
    min-width: 62px;
    padding: 0 8px;
    font-size: 13px;
}