/* =============================================
   ForceCloud — i18n Selector Styles
   ============================================= */

/* Language dropdown */
.fc-i18n-mount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-lang-dropdown {
    position: relative;
    z-index: 200;
}

.fc-lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    user-select: none;
    white-space: nowrap;
}

.fc-lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(137, 137, 255, 0.3);
}

.fc-lang-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    min-width: 170px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 201;
}

.fc-lang-options.open {
    display: block;
    animation: fcDropIn 0.15s ease;
}

@keyframes fcDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.fc-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #ccc;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.fc-lang-option:hover {
    background: rgba(137, 137, 255, 0.15);
    color: #fff;
}

/* Currency selector */
.fc-currency-group {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2px;
}

.fc-currency-btn {
    padding: 4px 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1;
}

.fc-currency-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
}

.fc-currency-btn.active {
    background: rgba(137, 137, 255, 0.25);
    color: #fff;
    border: none;
}
