/* Красим кружок лупы в яркий оранжевый #FF6B00 и делаем жирнее */
.t-menuwidgeticons__link circle {
    stroke: #FF6B00 !important;
    stroke-width: 3px !important;
}

/* Если есть палочка у лупы (линия) */
.t-menuwidgeticons__link line,
.t-menuwidgeticons__link path {
    stroke: #FF6B00 !important;
    stroke-width: 3px !important;
}

/* Убираем возможный фон */
.t-menuwidgeticons__link {
    background: transparent !important;
    box-shadow: none !important;
}

/* Эффект при наведении */
.t-menuwidgeticons__link:hover circle {
    stroke: #FF6B00 !important;
    stroke-width: 4px !important;
    transition: all 0.3s ease !important;
}

.t-menuwidgeticons__link:hover {
    transform: scale(1.1) !important;
}