/* Sticky bar container */
#sticky-buy-bar.sbb{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  padding: 12px 14px;
}

/* Inner layout */
#sticky-buy-bar .sbb-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Left (price) */
#sticky-buy-bar .sbb-left{
  min-width: 140px;
}

#sticky-buy-bar .sbb-label{
  display: block;
  font-size: 12px;
  opacity: .7;
  line-height: 1.1;
}

#sticky-buy-bar #sbb-price{
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

/* Actions (buttons) */
#sticky-buy-bar .sbb-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Make both buttons consistent */
#sticky-buy-bar .sbb-actions .button{
  white-space: nowrap;
}

/* WhatsApp button styling */
#sticky-buy-bar .sbb-wa{
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

#sticky-buy-bar .sbb-wa:hover{
  filter: brightness(0.95);
}

/* MOBILE: stack buttons, make them full width */
@media (max-width: 640px){
  #sticky-buy-bar .sbb-inner{
    flex-wrap: wrap;
  }

  #sticky-buy-bar .sbb-left{
    width: 100%;
    min-width: 0;
  }

  #sticky-buy-bar .sbb-actions{
    width: 100%;
    flex-direction: column;
  }

  #sticky-buy-bar .sbb-actions .button{
    width: 100%;
    text-align: center;
  }
}
