.tg-topbar {
    background: #f5f5f5;
    height: 35px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2000;
}

.tg-topbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.tg-topbar__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
}

.tg-topbar__link {
    color: #1c2126;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0.9;
    flex: 0 0 auto;
}

.tg-topbar__link:hover {
    color: #ebcc00;
    opacity: 1;
}

.tg-topbar__more {
    position: relative;
    flex: 0 0 auto;
    display: none;
    margin-left: 24px;
}
.tg-topbar__link--hidden {
    display: none !important;
}
.tg-topbar__more--has-items {
    display: flex !important;
}
.tg-topbar__more-btn {
    background: transparent;
    border: none;
    color: #1c2126;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.tg-topbar__more-btn:hover {
    opacity: 1;
    color: #ebcc00;
}

.tg-topbar__more-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    z-index: 1000;
}

.tg-topbar__more-menu--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tg-topbar__more-menu .tg-topbar__link {
    display: block;
    padding: 10px 16px;
    border-bottom: 1px solid #e8e8e8;
}

.tg-topbar__more-menu .tg-topbar__link:last-child {
    border-bottom: none;
}

.tg-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.tg-topbar__info {
    display: none;
    align-items: center;
    gap: 6px;
    color: #1c2126;
    font-size: 13px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
}

.tg-topbar__info svg {
    width: 16px;
    height: 16px;
}

.tg-topbar__social {
    display: flex;
    gap: 10px;
    align-items: center;
}
a.tg-topbar__social-link {
    color: #1c2126;
}
.tg-topbar__social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tg-topbar__social-link:hover {
    background: #ebcc00;
}

.tg-topbar__social-link svg {
    width: 18px;
    height: 18px;
    fill: #1c2126;
}

.tg-topbar__social-link:hover svg {
    fill: #231f20;
}

.tg-topbar__phone {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1c2126;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.tg-topbar__phone:hover {
    opacity: 0.8;
}

.tg-topbar__phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: none;
}

.tg-topbar__logo {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tg-topbar__more {
        display: none !important;
    }
    .tg-topbar__phone svg {
        display: block;
    }
    .tg-topbar {
        height: 40px;
        background: none;
    }
    .tg-topbar__phone svg {
        width: 24px;
        height: 24px;
    }
    .tg-topbar__nav {
        display: none;
    }

    .tg-topbar__info {
        display: flex;
    }
    a.tg-topbar__phone {
        background: #1c21261a;
        width: 38px;
        height: 28px;
        display: flex;
        border-radius: 8px;
        justify-content: center;
    }
    .tg-topbar__phone span {
        display: none;
    }

    .tg-topbar__logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 28px;
        margin-right: auto;
    }

    .tg-topbar__logo svg {
        height: 100%;
        width: auto;
    }
}

@media (max-width: 480px) {
    .tg-topbar__logo {
        height: 30px;
    }

    .tg-topbar__social-link {
        width: 28px;
        height: 28px;
    }

    .tg-topbar__social-link svg {
        width: 21px;
        height: 21px;
    }
}