/* Dropdown arrow styles */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.wsite-menu-item-wrap:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Enhanced hover effects */
.wsite-menu-item {
    position: relative;
}

.wsite-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.wsite-menu-item:hover::after {
    width: 80%;
}

/* Active menu item indicator */
#active .wsite-menu-item::after {
    width: 80%;
    background: rgba(255,255,255,0.8);
}

/* Mobile menu improvements */
@media screen and (max-width: 768px) {
    .wsite-menu-wrap {
        position: static;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.1);
    }

    .wsite-menu-wrap::before {
        display: none;
    }

    .wsite-menu-item-wrap {
        position: relative;
    }

    .dropdown-arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .wsite-menu-item-wrap:hover .wsite-menu-wrap {
        max-height: 500px;
    }

    .wsite-menu-subitem {
        padding: 12px;
        text-align: center;
        background: rgba(0,0,0,0.1);
        color: rgba(255,255,255,0.8);
    }

    .wsite-menu-subitem:hover {
        background: rgba(0,0,0,0.2);
        padding-left: 12px;
    }
}
