.country-switcher {
    position: relative;
    display: inline-block;
}
.country-btn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.country-btn .dropdown-arrow {
    font-size: 9px;
    margin-left: 2px;
    color: #666666;
}
.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    list-style: none !important;
    padding: 0 !important;
    min-width: 130px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99999;
}
.country-switcher.active .country-dropdown {
    display: block;
}
.country-dropdown li {
    margin: 0 !important;
    padding: 0 !important;
}
.country-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}
.country-dropdown li a:hover {
    background-color: #f5f5f5;
}