/* =========================================
   WOHLEN MENU — FINAL FIX
   ========================================= */


/* MENU CONTAINER */

.uc-wohlen-tactical-menu .t966__menu-item {
    pointer-events: none !important;
}


/* ONLY REAL TEXT LINKS CLICKABLE */

.uc-wohlen-tactical-menu .t966__menu-item a,
.uc-wohlen-tactical-menu .t-menu__link-item {

    pointer-events: auto !important;

    position: relative !important;
    display: inline-block !important;

    transition:
        transform 0.28s ease,
        color 0.28s ease,
        text-shadow 0.28s ease;

    letter-spacing: 0.6px !important;
}


/* HOVER */

.uc-wohlen-tactical-menu .t966__menu-item a:hover,
.uc-wohlen-tactical-menu .t-menu__link-item:hover {

    transform: translateX(12px);

    color: #d4af37 !important;

    text-shadow:
        0 0 8px rgba(212,175,55,0.55),
        0 0 18px rgba(212,175,55,0.35);
}


/* GOLD STAR */

.uc-wohlen-tactical-menu .t966__menu-item a::before,
.uc-wohlen-tactical-menu .t-menu__link-item::before {

    content: "✦";

    position: absolute;

    left: -24px;

    opacity: 0;

    color: #d4af37;

    transition: all 0.28s ease;
}


/* STAR HOVER */

.uc-wohlen-tactical-menu .t966__menu-item a:hover::before,
.uc-wohlen-tactical-menu .t-menu__link-item:hover::before {

    opacity: 1;

    left: -14px;
}


/* LOGO */

.uc-wohlen-tactical-menu img {

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* LOGO HOVER */

.uc-wohlen-tactical-menu img:hover {

    transform: rotate(10deg) scale(1.08);

    filter:
        drop-shadow(0 0 12px rgba(212,175,55,0.5))
        drop-shadow(0 0 24px rgba(212,175,55,0.25));
}