/**
 * CONECTA2 — Phone Widget
 * Solo layout. El tema del sitio controla colores, bordes y tipografía.
 */

.c2s-phone-widget {
    display: flex;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* El select ocupa solo el espacio necesario */
.c2s-phone-widget .c2s-country-select {
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
}

/* El input ocupa el resto */
.c2s-phone-widget input[type="text"],
.c2s-phone-widget input[type="tel"],
.c2s-phone-widget input[type="number"] {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .c2s-phone-widget {
        flex-wrap: wrap;
    }
    .c2s-phone-widget .c2s-country-select {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .c2s-phone-widget input[type="text"],
    .c2s-phone-widget input[type="tel"],
    .c2s-phone-widget input[type="number"] {
        flex: 0 0 100%;
    }
}
