/* custom-scrollbar-fix.css
   Styles Locomotive Scroll's virtual scrollbar (.c-scrollbar / .c-scrollbar_thumb).
   Without these rules the library still creates the scrollbar elements, but they
   have no width/position, so nothing is rendered while the native browser
   scrollbar is simultaneously hidden by html.has-scroll-smooth — or, if the
   library fails to init, the native scrollbar is left showing on its own.
   This file gives the smooth-scroll pages a single, branded scrollbar. */

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  z-index: 100000;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #6d1434;
  opacity: 0.6;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

/* Smooth Scroll Container & Footer Buffer Clearance */
.has-scroll-smooth .smooth-scroll,
.smooth-scroll {
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  display: block;
  position: relative;
  overflow: visible;
}

.has-scroll-smooth .section-wrapper,
.section-wrapper {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  display: block;
  overflow: visible;
  /* padding-bottom: 80px !important; */
   /* Ensures footer bottom elements/strips are fully scrollable */
}

.footer {
  width: 100%;
  display: block;
  position: relative;
  clear: both;
  box-sizing: border-box;
  overflow: visible !important;
}

.footer-strip-img {
  margin-bottom: 0 !important;
}

/* Prevent Locomotive Scroll from hiding persistent page wrapper and footer sections */
[data-scroll-section],
.section-wrapper {
  opacity: 1 !important;
  pointer-events: all !important;
  visibility: visible !important;
}



