:root{
  /* víc transparentní, méně bílý box */
  --shipbar-bg: rgba(255,255,255,.60);
  --shipbar-border: rgba(0,0,0,.05);
  --shipbar-text: #111;
  --shipbar-muted: rgba(0,0,0,.45);
  --shipbar-accent: #FFC700;
  --shipbar-shadow: 0 6px 18px rgba(0,0,0,.08);
  --shipbar-radius: 14px;
  --shipbar-font: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.shipbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99999;
  font-family: var(--shipbar-font);
  color: var(--shipbar-text);
  background: var(--shipbar-bg);
  border: 1px solid var(--shipbar-border);
  box-shadow: var(--shipbar-shadow);
  border-radius: var(--shipbar-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transform: translateY(0);
  transition: transform .25s ease, opacity .25s ease;
}

.shipbar.is-hidden{
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.shipbar__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 12px;
  align-items: center;
}

.shipbar__lines{
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.shipbar__line{
  display: flex;
  gap: 8px;
  align-items: baseline;
  min-width: 0;
}

.shipbar__label{
  font-size: 12.5px;
  color: var(--shipbar-muted);
  white-space: nowrap;
}

.shipbar__value{
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.shipbar__strong{
  font-weight: 800;
}

.shipbar__progressWrap{
  padding: 0 12px 10px 12px;
}

.shipbar__progress{
  height: 6px;
  background: rgba(0,0,0,.07);
  border-radius: 999px;
  overflow: hidden;
}

.shipbar__bar{
  height: 100%;
  width: 0%;
  background: var(--shipbar-accent);
  border-radius: 999px;
  transition: width .35s ease;
}

.shipbar__close{
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  border-radius: 10px;
  color: rgba(0,0,0,.45);
  transition: background .15s ease, color .15s ease;
}

.shipbar__close:hover{
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.75);
}

/* Toast – taky víc transparentní */
.shiptoast{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 92px;
  z-index: 100000;
  font-family: var(--shipbar-font);
  color: var(--shipbar-text);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--shipbar-border);
  box-shadow: var(--shipbar-shadow);
  border-radius: var(--shipbar-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}

.shiptoast.is-show{
  transform: translateY(0);
  opacity: 1;
}

.shiptoast__title{
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 4px;
}

.shiptoast__text{
  font-size: 12.5px;
  color: rgba(0,0,0,.70);
}

/* Mobil: kompaktní */
@media (max-width: 520px){
  .shipbar__lines{ gap: 10px; }
  .shipbar__label, .shipbar__value,
  .shiptoast__title, .shiptoast__text { font-size: 12px; }
}
/* ===== Mobil – vypnout lištu ===== */
@media (max-width: 768px){
  .shipbar,
  .shiptoast{
    display: none !important;
  }
}