/** Shopify CDN: Minification failed

Line 23:9 Expected identifier but found whitespace
Line 23:11 Unexpected "{"
Line 23:20 Expected ":"
Line 23:49 Expected ":"

**/
/* ─────────────────────────────────────
   Slider Banner — slider-banner.css
───────────────────────────────────── */

.sb-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

/* ── Height via CSS variable set by inline style ── */
.sb-slider {
  width: 100%;
  height: {{ section.settings.desktop_height }}px;
  overflow: hidden;
}

/* We handle height with schema-driven custom property */
[id^="sb-"] .sb-slider {
  height: var(--sb-h-desk, 600px);
}

.sb-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ─── Slide ─── */
.sb-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ─── Images ─── */
.sb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sb-img--mob  { display: none; }
.sb-img--desk { display: block; }

.sb-placeholder {
  background: #1a1a1a;
}

/* ─── Overlay ─── */
.sb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ─── Content ─── */
.sb-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  gap: 16px;
}

.sb-content--left   { align-items: flex-start; text-align: left;   }
.sb-content--center { align-items: center;     text-align: center; }
.sb-content--right  { align-items: flex-end;   text-align: right;  }

.sb-heading {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.sb-subtext {
  font-size: clamp(13px, 1.5vw, 18px);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
  opacity: 0.9;
}

/* ─── Button — Daily Paper wipe ─── */
.sb-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-top: 8px;
  padding: 14px 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Border */
.sb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid;
  border-color: inherit;
  z-index: 2;
  pointer-events: none;
}

/* Wipe fill */
.sb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sb-btn-hover-bg, #fff);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.sb-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.sb-btn:hover {
  color: var(--sb-btn-hover-color, #000) !important;
}

/* ─── Arrows ─── */
.sb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sb-arrow:hover { background: rgba(0,0,0,0.7); }
.sb-arrow--prev { left: 16px; }
.sb-arrow--next { right: 16px; }

/* ─── Dots ─── */
.sb-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.sb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.sb-dot.is-active {
  background: #fff;
  border-color: #fff;
}

/* ─────────────────────────────────────
   Mobile
───────────────────────────────────── */
@media screen and (max-width: 749px) {
  [id^="sb-"] .sb-slider {
    height: var(--sb-h-mob, 420px);
  }

  .sb-img--desk { display: none;  }
  .sb-img--mob  { display: block; }

  .sb-content {
    padding: 24px 20px;
    gap: 12px;
  }

  .sb-btn {
    padding: 12px 28px;
    font-size: 12px;
  }

  .sb-arrow {
    width: 36px;
    height: 36px;
  }
  .sb-arrow--prev { left: 8px; }
  .sb-arrow--next { right: 8px; }
}
