/** Shopify CDN: Minification failed

Line 295:10 Expected ":"

**/
.hero-slider {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  padding: 0 80px;
  position: relative;
}

.hero-slider__swiper {
  position: relative;
  background: var(--hero-bg);
  background-repeat: no-repeat;
  border-radius: var(--hero-radius);
  overflow: hidden;
  aspect-ratio:21/9;
  height: auto;
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .hero-slider__swiper {
    height: auto;
  }

  .hero-slider__inner {
    height: 87%;
  }
}

@media screen and (min-width: 1440px) {
  .hero-slider__swiper {
    height: auto;
  }

  .hero-slider__inner {
    height: 90%;
  }
}

.hero-slider__slide {
  box-sizing: border-box;
}

.hero-slider__slide--has-bg {
  background-size: cover;
  background-position: center;
}

.hero-slider__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 48px 48px 0;

}

.hero-slider__content {
  position: relative;
  z-index: 2;
  color: var(--hero-text);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 711px;
}

.hero-slider__heading {
  color: var(--hero-heading);
  font-size: 4.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 96%;
  margin: 0;
}

.hero-slider__subtext {
  color: var(--hero-subtext);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
  max-width: 420px;
}



.hero-slider__button {
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.hero-slider__button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-slider__product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  width: 290px;
}

.hero-slider__product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-slider__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slider__product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-slider__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  font-size: 0.8rem;
}

.hero-slider__star {
  color: #d8d8d8;
}

.hero-slider__star.is-filled {
  color: #C0B000;
}

.hero-slider__product-arrow {
  margin-left: 6px;
  opacity: 0.5;
}

.hero-slider__product-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-slider__product-price {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.hero-slider__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-slider__media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.hero-slider__pagination.swiper-pagination {
  position: absolute;
  bottom: -45px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 204px;
  height: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
  margin: 0 !important;
  transition: background 0.2s ease;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: var(--hero-accent);
}

.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 3;
}

.hero-slider__nav--prev {
  left: 24px;
}

.hero-slider__nav--next {
  right: 24px;
}

.hero-slider__nav::after {
  font-size: 16px;
  color: var(--hero-text);
}

@media (max-width: 990px) {
  .hero-slider__inner {
    grid-template-columns: 1fr;
    padding: 40px 32px 80px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }


  .hero-slider__media {
    order: -1;
  }

  .hero-slider__swiper {
    border-radius: 6px;
    aspect-ratio: 4/5;
    height: auto;
    min-height: unset;
  }

  .hero-slider__media img {
    max-height: 320px;
  }

  .hero-slider__content {
    max-width: 100%;
  }

  .hero-slider__pagination .swiper-pagination-bullet {
    width: 40px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    padding: 0;
  }

  .hero-slider__inner {
    padding: 32px 20px 48px;
    gap: 16px;
    min-height: 440px;
  }

  .hero-slider__heading {
    font-size: 1.875rem;
  }

  .hero-slider__product-card {
    width: 90%;
  }
  .hero-slider__swiper {
    aspect-ratio: 3/4;
    height auto;
  }
}