.wcap-dropdown {
    position: relative;
    display: inline-block;
}

.wcap-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
    font-size: 20px;
    padding: 6px;
    transition: color 0.3s ease;
}

.wcap-toggle:hover {
    color: #7c3aed;
}

.wcap-menu {
    position: absolute;
    right: 0;
    top: 38px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 99;
}

.wcap-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background .2s;
}

.wcap-menu a:hover {
    background: #f8fafc;
    color: #7c3aed;
}

.wcap-dropdown.active .wcap-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}