/* Floating sticky bottom bar */
.uc-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px; /* adjust height */
  background: #ffffff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
}

.uc-sticky-bar button {
  background: #ff5c5c; /* your brand color */
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
