.hns-new-collection-slider {
  width: 100%;
  overflow: hidden;
  background: #191919;
  color: #fffcf5;
  font-family: Inter, Arial, Helvetica, sans-serif;
  padding: 0 0 20px;
}

.hns-new-collection-slider *,
.hns-new-collection-slider *::before,
.hns-new-collection-slider *::after {
  box-sizing: border-box;
}

.hns-new-collection-slider__stage {
  position: relative;
  height: 840px;
  overflow: hidden;
}

.hns-new-collection-slider__swiper,
.hns-new-collection-slider .swiper-wrapper,
.hns-new-collection-slider__slide {
  height: 100%;
}

.hns-new-collection-slider__slide {
  position: relative;
  overflow: hidden;
  background: #2b2a27;
}

.hns-new-collection-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1200ms ease;
}

.hns-new-collection-slider__slide.swiper-slide-active img {
  transform: scale(1);
}

.hns-new-collection-slider__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(25, 25, 25, 0.44), rgba(25, 25, 25, 0.08) 45%, rgba(25, 25, 25, 0.32));
  pointer-events: none;
}

.hns-new-collection-slider__caption {
  position: absolute;
  z-index: 2;
  left: 12.5%;
  top: 42%;
  width: min(440px, calc(100% - 64px));
  color: #fffcf5;
}

.hns-new-collection-slider__caption h3 {
  margin: 0 0 10px;
  color: #fffcf5;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.hns-new-collection-slider__caption p {
  margin: 0 0 18px;
  color: rgba(255, 252, 245, 0.75) !important;
  font-size: 14px;
  line-height: 1.45;
}

.hns-new-collection-slider__panel {
  position: absolute;
  z-index: 3;
  right: 13%;
  top: 38%;
  width: 260px;
  background: rgba(25, 25, 25, 0.68);
  color: rgba(255, 252, 245, 0.55);
  padding: 14px 0;
}

.hns-new-collection-slider__panel-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 18px 28px;
  appearance: none;
  border: 0;
  border-left: 1px solid rgba(255, 252, 245, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hns-new-collection-slider__panel-item.is-active,
.hns-new-collection-slider__panel-item:hover,
.hns-new-collection-slider__panel-item:focus-visible {
  border-left-color: rgba(247, 237, 154, 0.78);
  background: rgba(255, 252, 245, 0.04);
  color: #fffcf5;
  font-weight: 700;
}

.hns-new-collection-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 252, 245, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.hns-new-collection-slider__arrow:hover,
.hns-new-collection-slider__arrow:focus-visible {
  color: #f7ed9a;
}

.hns-new-collection-slider__arrow--prev {
  left: 8%;
}

.hns-new-collection-slider__arrow--next {
  right: 8%;
}

.hns-new-collection-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 12px;
}

.hns-new-collection-slider__dot {
  display: block;
  width: 26px;
  height: 12px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  cursor: pointer;
}

.hns-new-collection-slider__dot::before {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 252, 245, 0.6);
  content: "";
  transition: background 180ms ease, transform 180ms ease;
}

.hns-new-collection-slider__dot.is-active::before,
.hns-new-collection-slider__dot:hover::before,
.hns-new-collection-slider__dot:focus-visible::before {
  background: #f7ed9a;
  transform: scaleY(2);
}

.hns-new-collection-slider__all-wrap {
  display: flex;
  justify-content: center;
}

.hns-new-collection-slider .hns-new-collection-slider__all {
  display: inline-flex;
  width: max-content;
}

.hns-new-collection-slider__slide.swiper-slide-active .hns-new-collection-slider__caption {
  animation: hnsNewCollectionCaption 850ms ease both;
}

@keyframes hnsNewCollectionCaption {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hns-new-collection-slider__stage {
    height: 640px;
  }

  .hns-new-collection-slider__caption {
    left: 10%;
    width: min(390px, calc(100% - 64px));
  }

  .hns-new-collection-slider__panel {
    right: 9%;
  }
}

@media (max-width: 820px) {
  .hns-home-collection-section {
    padding-top: 38px !important;
    padding-bottom: 40px !important;
    background: #fffcf5 !important;
  }

  .hns-home-collection-section .section-bg,
  .hns-home-collection-section .bg-fill {
    background-color: #fffcf5 !important;
  }

  .hns-home-collection-section .hns-page-heading {
    margin-bottom: 22px;
    color: #191919 !important;
  }

  .hns-new-collection-slider {
    background: #fffcf5;
    color: #191919;
    padding-bottom: 0;
  }

  .hns-new-collection-slider__stage {
    height: 306px;
    overflow: visible;
  }

  .hns-new-collection-slider__slide {
    overflow: hidden;
  }

  .hns-new-collection-slider__slide img {
    object-position: center;
  }

  .hns-new-collection-slider__caption {
    left: 50%;
    top: 40%;
    width: min(100% - 64px, 280px);
    transform: translateX(-50%);
    text-align: center;
  }

  .hns-new-collection-slider__caption h3 {
    color: #fff;
    font-size: 20px;
  }

  .hns-new-collection-slider__caption p,
  .hns-new-collection-slider__caption .hns-new-collection-slider__button,
  .hns-new-collection-slider__panel {
    display: none;
  }

  .hns-new-collection-slider__arrow {
    top: auto;
    bottom: -58px;
    color: rgba(25, 25, 25, 0.78);
    font-size: 30px;
    transform: none;
  }

  .hns-new-collection-slider__arrow:hover,
  .hns-new-collection-slider__arrow:focus-visible {
    color: #191919;
  }

  .hns-new-collection-slider__arrow--prev {
    left: 22px;
  }

  .hns-new-collection-slider__arrow--next {
    right: 22px;
  }

  .hns-new-collection-slider__dots {
    margin: 26px 0 20px;
  }

  .hns-new-collection-slider__dot::before {
    background: rgba(25, 25, 25, 0.28);
  }

  .hns-new-collection-slider__dot.is-active::before,
  .hns-new-collection-slider__dot:hover::before,
  .hns-new-collection-slider__dot:focus-visible::before {
    background: #191919;
  }

  .hns-new-collection-slider .hns-new-collection-slider__all.hns-brand-button {
    --hns-brand-button-color: #191919;
    --hns-brand-button-border: #191919;
    --hns-brand-button-hover: #000;
    --hns-brand-button-shadow: 0 0 24px rgba(25, 25, 25, 0.16), inset 0 0 0 1px rgba(25, 25, 25, 0.34);
    --hns-brand-button-active-shadow: 0 0 18px rgba(25, 25, 25, 0.12), inset 0 0 0 1px rgba(25, 25, 25, 0.3);
    --hns-brand-button-glint: linear-gradient(110deg, rgba(25, 25, 25, 0) 34%, rgba(25, 25, 25, 0.3) 46%, rgba(25, 25, 25, 0.12) 55%, rgba(25, 25, 25, 0) 68%), radial-gradient(circle at 50% 50%, rgba(25, 25, 25, 0.14) 0%, rgba(25, 25, 25, 0.08) 28%, rgba(25, 25, 25, 0) 62%);
    min-height: 42px;
    padding: 12px 22px;
    font-size: 11px;
  }

}
