  .lang-suggestion-bar{
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    width: min(460px, calc(100vw - 24px));
    animation: langFadeIn .18s ease-out;
  }

  .lang-suggestion-inner{
    background: rgba(255,255,255,.98);
    color: #1d1d1f;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    box-shadow: 0 0.75rem 1.8rem rgba(15,23,42,.10);
    padding: 14px 16px;
    text-align: center;
  }

  .lang-suggestion-text{
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.45;
    color: #1d1d1f;
  }

  .lang-suggestion-actions{
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .lang-btn{
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 650;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
  }

  .lang-btn-primary{
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
  }

  .lang-btn-primary:hover{
    background: #000;
    border-color: #000;
  }

  .lang-btn-secondary{
    background: transparent;
    color: #515154;
    border-color: rgba(0,0,0,.14);
  }

  .lang-btn-secondary:hover{
    background: #f5f5f7;
    color: #1d1d1f;
  }

  @keyframes langFadeIn{
    from{
      opacity: 0;
      transform: translateX(-50%) translateY(-4px);
    }
    to{
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  @media (max-width: 575.98px){
    .lang-suggestion-bar{
      top: 72px;
      width: calc(100vw - 16px);
    }

    .lang-suggestion-inner{
      padding: 13px 14px;
    }

    .lang-suggestion-actions{
      flex-direction: column;
      align-items: stretch;
    }

    .lang-btn{
      width: 100%;
    }
  }
