/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Unexpected "{"
Line 8:3 Expected identifier but found "'swiper-spotlight.css'"

**/
{{ 'swiper-spotlight.css' | asset_url | stylesheet_tag }}

/* Container */
.spotlight { position: relative; }

/* Swiper base */
.spotlight .swiper { width: 100%; overflow: hidden; }
.spotlight .swiper-wrapper { align-items: stretch; }
.spotlight .swiper-slide { display: block; }

/* Media wrapper */
.spotlight .slide-media { position: relative; display: block; width: min(1100px, 90vw); margin: 0 auto; }
.spotlight .media-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f4f4f4;
  max-height: 55vh;
}
.spotlight .media-box img,
.spotlight .media-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.spotlight .caption { text-align: center; margin-top: 20px; padding: 0 12px; }
.spotlight .caption .label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}
.spotlight .caption h3 {
  margin: 6px 0 10px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  font-weight: 500;
}
.spotlight .caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: .8;
}

/* Nav arrows */
.spotlight .nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.spotlight .nav button {
  pointer-events: all;
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.92);
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.spotlight .nav .prev { left: 20px; }
.spotlight .nav .next { right: 20px; }
.spotlight .nav button svg { width: 14px; height: 14px; }

@media (hover:hover) {
  .spotlight .nav button:hover {
    background: #fff;
    border-color: rgba(0,0,0,.25);
    transform: scale(1.04);
  }
}

/* Keyboard focus */
.spotlight .nav button:focus { outline: 2px solid #000; outline-offset: 2px; }

/* Spacing between slides when Swiper adds it */
.spotlight .swiper-slide { padding: 0; }

/* Color scheme helpers, hook into your theme tokens if needed */
.color-scheme-fg-body .caption h3,
.color-scheme-fg-body .caption p,
.color-scheme-fg-body .caption .label { color: #111; }

.color-scheme-fg-01 .caption h3,
.color-scheme-fg-01 .caption p,
.color-scheme-fg-01 .caption .label { color: var(--color-foreground-1, #111); }

/* Edge cases */
.spotlight .is-loading .media-box { background: #e9e9e9; }

/* Mobile tweaks */
@media screen and (max-width: 749px) {
  .spotlight .nav .prev { left: 8px; }
  .spotlight .nav .next { right: 8px; }
  .spotlight .caption { margin-top: 14px; }
}

/* Large screens */
@media screen and (min-width: 1200px) {
  .spotlight .slide-media { width: min(1000px, 80vw); }
}
