#sacb-bar {
  position: fixed;
  left: 60px;
  right: 120px;
  bottom: 0;
  z-index: 9999;
  transform: translateY(110%);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
  font-family: inherit;
  background: #ffffff;
  color: #111;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#sacb-bar.sacb-visible {
  transform: translateY(0);
  opacity: 1;
}

#sacb-bar.sacb-hidden {
  pointer-events: none;
}

#sacb-bar .sacb-inner {
  margin: 0;
  max-width: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  color: #111;
  padding: 12px 16px;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 -4px 14px rgba(0,0,0,.06);
}

#sacb-bar .sacb-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

#sacb-bar .sacb-thumb-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  display:block;
}

#sacb-bar .sacb-meta { line-height: 1.2; }

#sacb-bar .sacb-title a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

#sacb-bar .sacb-price {
  opacity: .9;
  margin-top: 2px;
}

#sacb-bar .sacb-qty {
  opacity: .8;
  font-size: 12px;
  margin-top: 2px;
}

#sacb-bar .sacb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

#sacb-bar .sacb-btn {
  background: #f4f2ed;
  color: #111;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #e1ded7;
}

#sacb-bar .sacb-checkout {
  background: #f4f2ed;
  color: #111;
}

@media (max-width: 640px) {
  #sacb-bar { left: 0; right: 0; border-radius: 0; }
  #sacb-bar .sacb-price { display: none; }
  #sacb-bar .sacb-qty   { display: none; }
}
