  .bo-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:10px 14px;
    border-radius:10px;
    background:#ffcf33;
    color:#0b2233;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.08);
    overflow:hidden;
  }

  .bo-topbar__left{
    display:flex;
    align-items:center;
    min-width:0;
    flex: 1 1 auto;
  }

  /* DESKTOP: vše v jednom řádku */
  .bo-topbar__row{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    white-space:nowrap;
  }

  .bo-topbar__title{
    font-weight:900;
    font-size:14px;
    text-transform:uppercase;
  }

  .bo-topbar__code{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    padding:4px 10px;
    border-radius:999px;
    background: rgba(11,34,51,.14);
    font-weight:900;
    font-size:13px;
    letter-spacing:.3px;
  }

  .bo-topbar__deal{
    font-weight:800;
    font-size:13px;
    opacity:.95;
    overflow:hidden;
    text-overflow:ellipsis;
    min-width:0;
  }

  .bo-topbar__right{
    display:flex;
    align-items:center;
    flex: 0 0 auto;
    white-space:nowrap;
  }

  .bo-topbar__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:#0b3550;
    color:#fff;
    text-decoration:none;
    font-weight:900;
    font-size:13px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  }
  .bo-topbar__btn:hover{ filter: brightness(1.08); }
  .bo-topbar__btn:active{ transform: translateY(1px); }

  /* Mobil: dovol zalomení vlevo do dvou řádků */
  @media (max-width: 680px){
    .bo-topbar__row{
      flex-wrap:wrap;
      white-space:normal;
      gap:6px 10px;
    }
    .bo-topbar__title{ font-size:13px; }
    .bo-topbar__deal{ font-size:12px; }
    .bo-topbar__btn{ padding:9px 14px; }
  }