/** Shopify CDN: Minification failed

Line 144:1 Expected "}" to go with "{"

**/
/* ============================================================
   Before/After Slider
   Dynamic values (bg color, padding, heights, label position)
   come from CSS custom properties set inline by the section.
   ============================================================ */

/* Section background (only applies if --ba-bg is set) */
[id^="shopify-section-"]:has(.ba-wrap) {
  background-color: var(--ba-bg);
}

.ba-wrap {
  padding-top: var(--ba-padding-top, 0);
  padding-bottom: var(--ba-padding-bottom, 0);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  height: var(--ba-height-mobile, auto);
}

@media screen and (min-width: 768px) {
  .ba-slider {
    height: var(--ba-height-desktop, auto);
  }
}

.ba-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Both layers fill the slider */
.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.ba-before {
  left: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-after {
  left: 0;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: var(--ba-label-bottom, 16px);
  padding: 7px 14px;
  border-radius: 5px;
  background: linear-gradient(120deg, rgba(18, 101, 255, 0.75) 11%, rgba(11, 79, 164, 0.75) 81%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .ba-label {
    font-size: 16px;
  }
}

.ba-label--before {
  left: 16px;
}

.ba-label--after {
  right: 16px;
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-handle__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .ba-handle__btn {
  width: 50px;
  height: 50px;
}
}


.ba-handle__btn svg {
  width: 22px;
  height: 22px;
  fill: #0674ff;
}

@media (max-width: 640px) {
  .ba-handle__btn svg {
  width: 28px;
  height: 28px;
}