.sbb-sticky-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  width:100%;
  background: var(--sbb-bg, #111827);
  color:#ffffff;
  z-index:2147483647;
  box-shadow:0 -4px 16px rgba(0,0,0,.15);
  display:none; /* hidden by default; JS shows it unless localStorage says otherwise */
  font-size:16px;
  direction: rtl;
}
.sbb-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.sbb-content{ line-height:1.5; }
.sbb-content p{ margin:0; }
.sbb-btn{
  cursor:pointer;
  border:none !important;
  border-radius:999px;
  padding:10px 18px;
  font-weight:600;
  background:none !important;
  background-color: var(--sbb-btn-bg, #ffffff) !important;
  color:#111827;
}
@media (max-width: 600px){
  .sbb-inner{ gap:10px; }
  .sbb-btn{ width:100%; }
}
