/** Shopify CDN: Minification failed

Line 289:17 Unexpected "{"
Line 289:26 Expected ":"
Line 289:33 Unexpected "{"
Line 306:17 Unexpected "{"
Line 306:26 Expected ":"
Line 306:33 Unexpected "{"
Line 316:17 Unexpected "{"
Line 316:26 Expected ":"
Line 316:33 Unexpected "{"

**/
/* ============================================================
   Get Inspired — Social Feed Carousel
   Asset: assets/get-inspired.css
   ============================================================ */

/* ---------- Section wrapper ---------- */
.get-inspired {
  padding-top: var(--gi-section-padding-top, 60px);
  padding-bottom: var(--gi-section-padding-bottom, 60px);
  overflow: hidden;
  background: #fff;
}

/* ---------- Header ---------- */
.get-inspired__header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.get-inspired__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--gi-heading-color, #111);
  line-height: 1.1;
}

.get-inspired__handle {
  font-size: 0.95rem;
  color: var(--gi-handle-color, #555);
  margin: 0;
  letter-spacing: 0.01em;
}

.get-inspired__handle a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.get-inspired__handle a:hover { opacity: 0.65; }

/* ---------- Carousel wrapper ---------- */
.get-inspired__carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* ---------- Style: clean (default) ---------- */
.get-inspired--style-clean .get-inspired__carousel-wrapper {
  padding: 0 52px;
}

/* ---------- Style: fullbleed ---------- */
.get-inspired--style-fullbleed .get-inspired__carousel-wrapper {
  padding: 0;
}
.get-inspired--style-fullbleed .get-inspired__track-container {
  padding-left: 16px;
}

/* ---------- Style: editorial ---------- */
.get-inspired--style-editorial .get-inspired__carousel-wrapper {
  padding: 0 60px;
}
.get-inspired--style-editorial .get-inspired__title {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

/* ---------- Track container + track ---------- */
.get-inspired__track-container {
  overflow: hidden;
  width: 100%;
}

.get-inspired__track {
  display: flex;
  gap: var(--gi-gap, 16px);
  margin: 0;
  padding: 0 2px 4px; /* subtle shadow room */
  list-style: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---------- Cards ---------- */
.get-inspired__card {
  flex: 0 0 calc(
    (100% - (var(--gi-cards-visible, 4) - 1) * var(--gi-gap, 16px)) /
    var(--gi-cards-visible, 4)
  );
  position: relative;
  border-radius: var(--gi-card-radius, 14px);
  overflow: hidden;
  background: #e5e5e5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.get-inspired__card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.get-inspired__card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: var(--gi-card-aspect, 9/16);
}

/* ---------- Media ---------- */
.get-inspired__media {
  position: absolute;
  inset: 0;
}

.get-inspired__image,
.get-inspired__thumbnail,
.get-inspired__video,
.get-inspired__placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.get-inspired__thumbnail {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.get-inspired__video {
  position: absolute;
  inset: 0;
}

/* ---------- Play icon ---------- */
.get-inspired__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.get-inspired__card:hover .get-inspired__play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.get-inspired__card.is-playing .get-inspired__play-icon {
  opacity: 0;
}

/* ---------- Caption ---------- */
.get-inspired__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.get-inspired__caption p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  line-height: 1.3;
}

/* ---------- Card link overlay ---------- */
.get-inspired__card-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

/* ---------- Arrows ---------- */
.get-inspired__arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--gi-arrow-bg, #fff);
  color: var(--gi-arrow-color, #111);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.get-inspired__arrow:hover {
  background: var(--gi-arrow-color, #111);
  color: var(--gi-arrow-bg, #fff);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.08);
}

.get-inspired__arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.get-inspired__arrow--prev { left: 8px; }
.get-inspired__arrow--next { right: 8px; }

/* ---------- Dots ---------- */
.get-inspired__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 0 20px;
}

.get-inspired__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.get-inspired__dot.is-active {
  background: var(--gi-arrow-color, #111);
  transform: scale(1.35);
}

/* ---------- Dark theme overrides ---------- */
.get-inspired--bg-dark .get-inspired__dot {
  background: rgba(255,255,255,0.25);
}
.get-inspired--bg-dark .get-inspired__dot.is-active {
  background: #fff;
}
.get-inspired--bg-dark .get-inspired__arrow {
  border-color: rgba(255,255,255,0.15);
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 1024px) {
  .get-inspired--style-clean .get-inspired__carousel-wrapper,
  .get-inspired--style-editorial .get-inspired__carousel-wrapper {
    padding: 0 44px;
  }

  #get-inspired-{{ section.id }} {
    --gi-cards-visible: 3;
  }
}

@media screen and (max-width: 768px) {
  .get-inspired--style-clean .get-inspired__carousel-wrapper,
  .get-inspired--style-editorial .get-inspired__carousel-wrapper {
    padding: 0 36px;
  }

  .get-inspired__track-container {
    /* Peek next card on mobile */
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
  }

  #get-inspired-{{ section.id }} {
    --gi-cards-visible: 2;
  }
}

@media screen and (max-width: 480px) {
  .get-inspired--style-clean .get-inspired__carousel-wrapper {
    padding: 0 32px;
  }

  #get-inspired-{{ section.id }} {
    --gi-cards-visible: 1.2;
  }
}