/* Teléfono con WhatsApp / Teléfono y país. El acento sigue el color de botón del sitio si existe. */
.tel-tipo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 10px; }
.tel-tipo-op { position: relative; display: block; margin: 0; cursor: pointer; }
.tel-tipo-op input { position: absolute; opacity: 0; pointer-events: none; }
.tel-tipo-txt { display: flex; align-items: center; gap: 9px; min-height: 42px; padding: 8px 14px; box-sizing: border-box;
  border: 1px solid #d4d8dd; border-radius: 8px; background: #fff; color: #6b7280; font-size: 14px; line-height: 1.2;
  transition: border-color .15s, color .15s, box-shadow .15s; }
.tel-tipo-txt::before { content: ""; flex: none; width: 16px; height: 16px; box-sizing: border-box; border: 2px solid #9ca3af; border-radius: 50%; background: #fff; transition: border-color .15s, box-shadow .15s; }
.tel-tipo-txt svg { flex: none; }
.tel-tipo-txt b { font-weight: 700; }
.tel-tipo-op input:checked + .tel-tipo-txt { border-color: var(--tel-acento, var(--color-boton, #2563eb)); color: #111827; }
.tel-tipo-op input:checked + .tel-tipo-txt::before { border-color: var(--tel-acento, var(--color-boton, #2563eb)); box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 10px var(--tel-acento, var(--color-boton, #2563eb)); }
.tel-tipo-op input:focus-visible + .tel-tipo-txt { box-shadow: 0 0 0 3px rgba(37, 99, 235, .3); }
.tel-iti, .iti { display: block; width: 100%; }
.iti input.uk-input, .iti input[type="tel"] { width: 100%; }
.iti__country-container { z-index: 5; }
.iti__dropdown-content { color: #111827; z-index: 1000; }
@media (max-width: 380px) { .tel-tipo-txt { padding: 8px 10px; gap: 7px; } }
.tel-fila-completa { grid-column: 1 / -1; flex: 0 0 100%; max-width: 100%; }
/* Dentro del motor de reservas (.rsv-campo label es mayúscula y gris): los botones mantienen su estilo. */
.tel-tipo .tel-tipo-op { font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; color: inherit; }
.tel-tipo .tel-tipo-op b { font-weight: 700; }
.rsv .tel-tipo-op input { width: 1px; height: 1px; padding: 0; border: 0; }
