.flob-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  font-family: 'Roboto', sans-serif;
  opacity: 1;
  transform: translateY(100%);
}
.flob-sticky-cta.slide-in {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
}
.flob-sticky-btn {
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  border: none;
  width: 90%;
  max-width: 400px;
  transition: background 0.3s ease;
}
.flob-sticky-btn:hover,
.flob-sticky-btn:focus {
  filter: brightness(0.9);
}
@media (max-width: 768px) {
  .flob-sticky-cta { display: block; }
}
body#checkout, body#cart, body#order {
  #flob-sticky-cta { display: none !important; }
}
