/* MENUBE_MOBILE_LANGUAGE_HINT_001
   Mini etiqueta de idiomas junto al botón hamburguesa.
   Solo móvil. No altera el contenido visible de la carta.
*/

.menube-lang-hint-mobile {
  display: none;
}

@media (max-width: 768px) {
  .menube-lang-hint-host {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 7px !important;
  }

  .menube-lang-hint-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;

    height: 38px;
    max-width: 118px;
    min-width: 88px;

    padding: 0 9px;
    margin: 0;

    border: 1px solid rgba(185, 132, 47, .28);
    border-radius: 12px;
    background: rgba(255, 250, 242, .96);
    color: #6b4a16;

    font-family: inherit;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;

    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    cursor: pointer;

    animation: menube-lang-hint-soft-pulse 2.8s ease-in-out infinite;
  }

  .menube-lang-hint-mobile__globe {
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .menube-lang-hint-mobile__text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
  }

  .menube-lang-hint-mobile__arrow {
    font-size: 13px;
    line-height: 1;
    color: #b9842f;
    transform: translateY(-1px);
  }

  @keyframes menube-lang-hint-soft-pulse {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    }
    50% {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(185, 132, 47, .16);
    }
  }
}

@media (max-width: 380px) {
  .menube-lang-hint-mobile {
    min-width: 76px;
    max-width: 96px;
    padding: 0 7px;
    font-size: 10.5px;
  }

  .menube-lang-hint-mobile__text {
    max-width: 54px;
  }
}
