/* =========================
   CONTENEDOR
========================= */
.ib-lang-dd{
    position:relative;
    max-width:340px;
}

/* =========================
   FIELD
========================= */
.ib-lang-field{
    display:flex;
    flex-direction:column;
    gap:0;
}

/* =========================
   BOTÓN PRINCIPAL
========================= */
.ib-lang-dd .ib-lang-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;

    /* ALTURA EXACTA COMO IB_BANNER */
    padding:9px 9px;
    min-height:45px;

    /* ESTÉTICA */
    border-radius:10px !important;
    border:1px solid #cfd4da !important;
    background:#f3f4f6 !important;
    color:#1f2937 !important;

    font-weight:600;
    cursor:pointer;

    /* RESET */
    box-shadow:none !important;
    background-image:none !important;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
}

/* Estados */
.ib-lang-dd .ib-lang-btn:hover,
.ib-lang-dd .ib-lang-btn:focus,
.ib-lang-dd .ib-lang-btn:active{
    background:#f3f4f6 !important;
    color:#1f2937 !important;
    border-radius:10px !important;
    box-shadow:none !important;
}

/* =========================
   CONTENIDO INTERNO
========================= */
.ib-lang-center{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
}

.ib-lang-icon{
    width:1.15em;
    height:1.15em;
    display:inline-flex;
}

.ib-lang-icon svg{
    width:100%;
    height:100%;
    display:block;
}

/* TEXTO */
.ib-lang-btn .ib-lang-placeholder{
    font-size:1.125rem;
    line-height:1.2;
}

/* RTL */
.ib-lang-dd[dir="rtl"] .ib-lang-btn .ib-lang-placeholder{
    font-size:1.2rem;
}

/* =========================
   FLECHA
========================= */
.ib-lang-btn .caret{
    position:absolute;
    inset-inline-end:.75rem;
    top:50%;
    transform:translateY(-50%);
    transition:transform .15s ease;
    color:inherit !important;
}

.ib-lang-btn[aria-expanded="true"] .caret{
    transform:translateY(-50%) rotate(180deg);
}

/* =========================
   PANEL DROPDOWN
========================= */
.ib-lang-panel{
    position:absolute;
    inset-inline:0;
    top:100%;
    margin-top:.35rem;

    z-index:1000;

    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:10px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

/* =========================
   LISTA
========================= */
.ib-lang-list{
    max-height:320px;
    overflow:auto;
    padding:.25rem;
}

/* =========================
   ITEMS
========================= */
.ib-lang-item{
    display:grid;
    grid-template-columns:1fr auto;
    gap:1rem;
    align-items:center;

    padding:.45rem .6rem;
    border-radius:8px;

    cursor:pointer;

    background-image:none !important;
    box-shadow:none !important;
    color:#1f2937;
}

.ib-lang-item:hover{
    background:#f5f6f8;
}

/* ITEM ACTIVO */
.ib-lang-item.is-current{
    background:#1D3557 !important;
    color:#fff !important;
}

.ib-lang-item.is-current .ib-lang-col-local,
.ib-lang-item.is-current .ib-lang-col-native{
    color:#fff !important;
    opacity:1;
}

.ib-lang-item.is-current:hover{
    background:#162840 !important;
}

/* Texto secundario */
.ib-lang-col-native{
    opacity:.8;
    font-weight:600;
    color:#4b5563;
}

/* =========================
   RTL / IDIOMAS ESPECIALES
========================= */
.ib-lang-dd[dir="rtl"] .ib-lang-item{
    grid-template-columns:auto 1fr;
}

.ib-lang-dd[data-lang="ar"] .ib-lang-item,
.ib-lang-dd[data-lang="he"] .ib-lang-item{
    direction:ltr;
    grid-template-columns:1fr auto;
}

.ib-lang-dd[data-lang="ar"] .ib-lang-col-native,
.ib-lang-dd[data-lang="he"] .ib-lang-col-native{
    order:1;
    direction:ltr;
    text-align:left;
}

.ib-lang-dd[data-lang="ar"] .ib-lang-col-local,
.ib-lang-dd[data-lang="he"] .ib-lang-col-local{
    order:2;
    direction:rtl;
    text-align:right;
    font-size:1.25rem;
    line-height:1.3;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:640px){

    .ib-lang-btn{
        min-height:56px;
    }

    .ib-lang-btn .ib-lang-placeholder{
        font-size:1rem !important;
    }

    .ib-lang-icon{
        width:1em;
        height:1em;
    }

    .ib-lang-center{
        gap:.25rem;
    }

    .ib-lang-dd[data-lang="ar"] .ib-lang-col-local,
    .ib-lang-dd[data-lang="he"] .ib-lang-col-local{
        font-size:1.15rem;
    }
}

@media (max-width:380px){

    .ib-lang-btn .ib-lang-placeholder{
        font-size:.95rem !important;
    }

    .ib-lang-icon{
        width:.95em;
        height:.95em;
    }

    .ib-lang-dd[dir="rtl"] .ib-lang-btn .ib-lang-placeholder{
        font-size:1rem !important;
    }
}