/* Salient Mobile Sticky Cartbar (Lieferando-style) */
.smsc-cartbar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 99999;

  display: none; /* JS controls visibility */
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px;
  border-radius: 14px;

  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  background: var(--smsc-bg, #ff6a00);
  color: #fff;
  font-weight: 700;

  border: none;
  cursor: pointer;
  width: calc(100% - 24px);
  -webkit-tap-highlight-color: transparent;
}

.smsc-cartbar:active{
  transform: translateY(1px);
}

.smsc-cartbar .smsc-left{
  display:flex;
  gap:10px;
  align-items:center;
}

.smsc-cartbar .smsc-icon{
  font-size: 18px;
  line-height: 1;
  display:flex;
  width: 28px;
  height: 28px;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}

.smsc-cartbar .smsc-right{
  display:flex;
  gap:10px;
  align-items:center;
}

.smsc-cartbar .smsc-count{
  min-width: 26px;
  height: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  font-size: 13px;
  padding: 0 8px;
}

.smsc-cartbar .smsc-total{
  font-size: 16px;
  white-space: nowrap;
}
