.radiohy-lang-dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.radiohy-lang-toggle {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 243, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    user-select: none;
}

.radiohy-lang-toggle::-webkit-details-marker {
    display: none;
}

.radiohy-lang-toggle:hover,
.radiohy-lang-dropdown[open] .radiohy-lang-toggle {
    border-color: #ffb300;
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.45);
    background: rgba(255, 179, 0, 0.15);
}

.radiohy-lang-current {
    font-size: 16px;
    line-height: 1;
}

.radiohy-lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 150px;
    padding: 6px;
    background: #121212;
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.radiohy-lang-dropdown[open] .radiohy-lang-menu,
.radiohy-lang-dropdown:hover .radiohy-lang-menu {
    display: flex;
}

.radiohy-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.radiohy-lang-option:hover {
    background: rgba(0, 243, 255, 0.12);
}

.radiohy-lang-option.is-active {
    background: rgba(255, 179, 0, 0.15);
    border: 1px solid rgba(255, 179, 0, 0.45);
}

.radiohy-lang-option-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.radiohy-lang-option-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .radiohy-lang-dropdown:not([open]):hover .radiohy-lang-menu {
        display: none !important;
    }

    .radiohy-lang-dropdown[open] .radiohy-lang-menu {
        display: flex !important;
    }

    .radiohy-lang-toggle {
        width: 40px;
        height: 40px;
    }

    .radiohy-lang-current {
        font-size: 20px;
    }

    .radiohy-lang-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .rh-mobile-more-lang .radiohy-lang-menu {
        top: auto;
        bottom: calc(100% + 8px);
    }
}
