/** Shopify CDN: Minification failed

Line 71:16 Expected identifier but found whitespace
Line 71:18 Unexpected "{"
Line 71:27 Expected ":"
Line 71:68 Expected ":"

**/


/* CSS from section stylesheet tags */
body {
  overflow-x: hidden;
}
.simple-slider {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: transparent;
  max-width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.slide {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  height: 80vh;
  max-height: 80vh;
}
@media screen and (max-width: 749px) {
  .slide {
    height: 70vh;
    max-height: 70vh;
  }
}
.slide picture,
.slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide .slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(var(--color-foreground));
  padding: 1rem;
  text-align: center;
  z-index: 2;
}
.slide .slide-heading {
  font-weight: bold;
}
.slide .slide-subheading {
  margin-top: 0.5rem;
}
.slide .slide-button {
  background-color: rgba(var(--color-button), 1);
  color: rgba(var(--color-button-text), 1);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  border-radius: {{ section.settings.button_radius | default: 4 }}px;
}
.slide .slide-button:hover {
  background-color: rgba(var(--color-button), 0.8);
}

/* Desktop positioning */
.slide-content.button-bottom-desktop {
  justify-content: space-between;
}
.slide-content.button-center-desktop {
  justify-content: center;
}
@media screen and (min-width: 750px) {
  .slide-content.button-bottom-desktop .slide-button {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .slide-content.button-center-desktop .slide-button {
    margin-top: 1rem;
  }
}

/* Mobile positioning */
@media screen and (max-width: 749px) {
  .slide-content.button-center-mobile {
    justify-content: center;
  }

  .slide-content.button-center-mobile .slide-button {
    margin-top: 1rem;
  }

  .slide-content.button-bottom-mobile {
    justify-content: space-between;
  }

  .slide-content.button-bottom-mobile .text-group {
    margin-top: auto;
    margin-bottom: auto;
  }

  .slide-content.button-bottom-mobile .slide-button {
    margin-bottom: 1rem;
    margin-top: 0;
  }
}

/* Font sizes */
.heading-small { font-size: calc(var(--font-body-scale) * 1.6rem); }
.heading-medium { font-size: calc(var(--font-body-scale) * 2.6rem); }
.heading-large { font-size: calc(var(--font-body-scale) * 3.6rem); }
.subheading-small { font-size: calc(var(--font-body-scale) * 1.2rem); }
.subheading-medium { font-size: calc(var(--font-body-scale) * 2.2rem); }
.subheading-large { font-size: calc(var(--font-body-scale) * 3rem); }

@media screen and (max-width: 749px) {
  .heading-small-m { font-size: calc(var(--font-body-scale) * 1.6rem); }
  .heading-medium-m { font-size: calc(var(--font-body-scale) * 2.6rem); }
  .heading-large-m { font-size: calc(var(--font-body-scale) * 3.6rem); }
  .subheading-small-m { font-size: calc(var(--font-body-scale) * 1.2rem); }
  .subheading-medium-m { font-size: calc(var(--font-body-scale) * 2.2rem); }
  .subheading-large-m { font-size: calc(var(--font-body-scale) * 3rem); }
}

/* Slider controls layout: arrows + outlined dots */
.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.slider-nav-overlay.combined-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.slider-nav-overlay.combined-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(var(--color-button), 1);
  color: rgba(var(--color-button-text), 1);
  border: none;
  font-size: calc(var(--font-body-scale) * 1.4rem);
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.slider-nav-overlay.combined-controls button:hover {
  background-color: rgba(var(--color-button), 0.8);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(var(--color-foreground), 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: rgba(var(--color-foreground), 1);
  border-color: rgba(var(--color-foreground), 1);
}