/* Core sticky logic */
.sticky-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  padding: 15px 0;
  width: 100%;
}

/* Prevent theme from breaking sticky */
.sticky-wrapper,
.sticky-row-container,
.sticky-wrapper > .vc_column-inner,
.sticky-wrapper > .wpb_wrapper {
  transform: none !important;
  overflow: visible !important;
  position: relative !important;
}

/* Sticky needs scrollable space */
body, html, .site, .site-content, #content {
  overflow: visible !important;
}

/* Optional: if sticky appears off-position */
.sticky-wrapper {
  max-width: 100%;
}
