/* Jen mobil */

@media (max-width: 479px) {
  .rb-mlang {
    position: relative;
    display: inline-flex;
    margin-right: 8px; /* rozestup od ikony hledání */
    vertical-align: middle;
    align-items: center;
    top: 2px;
  }
  .rb-mlang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
  }
  .rb-mlang-btn .shp-flag {
    width: 28px;
    height: 28px;
    vertical-align: middle;
  }
  .rb-mlang-caret { line-height: 1; }

  .rb-mlang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 6px 0;
    list-style: none;
    margin: 6px 0 0;
    display: none;
    z-index: 3000;
  }
  .rb-mlang.is-open .rb-mlang-menu { display: block; }
  .rb-mlang-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
  }
  .rb-mlang-menu li a:hover {
    background: rgba(0,0,0,0.05);
  }
  .rb-mlang-menu .shp-flag { width: 28px; height: 28px; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .rb-mlang {
    position: relative;
    display: inline-flex;
    margin-right: 8px; /* rozestup od ikony hledání */
    vertical-align: middle;
    align-items: center;
    top: 6px;
  }
  .rb-mlang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
  }
  .rb-mlang-btn .shp-flag {
    width: 38px;
    height: 38px;
    vertical-align: middle;
  }
  .rb-mlang-caret { line-height: 1; }

  .rb-mlang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 6px 0;
    list-style: none;
    margin: 6px 0 0;
    display: none;
    z-index: 3000;
  }
  .rb-mlang.is-open .rb-mlang-menu { display: block; }
  .rb-mlang-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
  }
  .rb-mlang-menu li a:hover {
    background: rgba(0,0,0,0.05);
  }
  .rb-mlang-menu .shp-flag { width: 38px; height: 38px; }
}

/* Na desktopu vlastní prepínac nezobrazuj */
@media (min-width: 768px) {
  .rb-mlang { display: none !important; }
}