.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand .store-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(100, 170, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.navbar-brand .store-name-img {
    width: auto;
    height: 38px;
    max-width: 260px;
    transform: translateX(-3px);
    object-position: left center;
    object-fit: contain;
}

.item-a {
    position: relative;
}

.item-a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: var(--gradient-gold);
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.item-a-selected::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: var(--gradient-gold);
    bottom: -2px;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    transform: scaleX(1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(5, 13, 26, 0.8);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(100, 170, 255, 0.08);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(5, 13, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-wrapper {
    display: flex;
    justify-content: flex-end;
    height: 44px;
    gap: 30px;
    align-items: center;
}

.navbar-sub-wrapper {
    display: flex;
    align-items: center;
}

.navbar-items-wrapper {
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 24px;
}

.item-default {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
}

.item {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.item:hover {
    color: var(--text-primary);
}

.item-selected {
    cursor: pointer;
}

.lang-bar-wrapper {
    position: relative;
}

.item-lang {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.item-lang:hover {
    color: var(--accent-gold);
}

.lang-items-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lang-items-wrapper {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 50%;
    transform: translate(55%, 30%);
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(100, 170, 255, 0.1);
    border-radius: var(--radius-lg);
    width: 140px;
    padding: 16px 0;
}

.burger-btn {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.getUp__wrapper {
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.getUp__arrowUp {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(15, 30, 60, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 170, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.getUp__arrowUp:hover {
    background: rgba(15, 30, 60, 0.95);
    border-color: rgba(100, 170, 255, 0.3);
    transform: translateY(-2px);
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(5, 13, 26, 0.7);
    display: none;
}

.mobile-menu-wrapper {
    width: 92%;
    max-width: 400px;
    margin: 80px auto 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    border: 1px solid rgba(100, 170, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-cross {
    width: 28px;
    height: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.mobile-menu-cross:hover {
    opacity: 1;
}

.mobile-menu-body {
    width: 100%;
    height: 100%;
}

.mobile-menu-title {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mobile-menu-ul {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
}

.mobile-menu-li {
    padding: 14px 0 5px;
}

.mobile-menu-body ul hr {
    width: 100%;
    border: 0;
    height: 1px;
    background: rgba(100, 170, 255, 0.08);
}

.mobile-menu-a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.mobile-menu-a:hover {
    color: var(--text-primary);
}

.mobile-menu-profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-menu-a-profile {
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(100, 170, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
}

.mobile-menu-a-profile:hover {
    background: rgba(100, 170, 255, 0.1);
    border-color: rgba(100, 170, 255, 0.3);
}

.navbar-profiler {
    gap: 10px;
}

.separator {
    width: 1px;
    height: 24px;
    background: rgba(100, 170, 255, 0.15);
    border: none;
}

@media screen and (max-width: 1024px) {
    nav {
        padding: 14px 20px;
        justify-content: space-between;
    }

    .navbar-wrapper {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .getUp__wrapper {
        right: 20px;
        bottom: 20px;
    }

    .navbar-items-wrapper {
        padding: 0;
    }

    .navbar-sub-wrapper {
        justify-content: center;
    }
}
