.tg-catalog {
    position: relative;
}

.tg-catalog__btn {
    background: #484f55;
    color: white;
    border: none;
    padding: 11px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    height: 44px;
    font-size: 14px;
}

.tg-catalog__btn:hover {
    background: #d4b700;
}

.tg-catalog__btn svg {
    width: 20px;
    height: 20px;
}

.tg-catalog__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.tg-catalog__menu--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tg-catalog__item {
    position: relative;
}

.tg-catalog__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #231f20;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8e8e8;
}

.tg-catalog__link:hover {
    background: #f5f5f5;
    color: #ebcc00;
}

.tg-catalog__item:last-child > .tg-catalog__link {
    border-bottom: none;
}

.tg-catalog__link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    opacity: 0.5;
}

.tg-catalog__submenu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 5px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.tg-catalog__item:hover > .tg-catalog__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tg-catalog__submenu--level3 {
    min-width: 220px;
}

/* Mobile */
@media (max-width: 768px) {
    .tg-catalog {
        display: none;
    }
}