/* Avoid content being hidden behind the bar */
body.has-sticky-buy-bar {
  padding-bottom: 76px; /* match bar height */
}

#sticky-buy-bar.sbb {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 -4px 24px rgba(0,0,0,.06);
  z-index: 9999;
  padding: 12px 16px;
  font-size: 16px;
}

.sbb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.sbb-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .7;
  display: block;
  margin-bottom: 2px;
}

#sbb-price {
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}

#sbb-add {
  padding: 12px 20px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}

#sbb-add.is-disabled,
#sbb-add:disabled {
  opacity: .5;
  cursor: not-allowed;
}


