.hero-carousel {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #071c2b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  z-index: 6;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}

.hero-carousel::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(3, 18, 29, .22) 0%, transparent 38%, rgba(3, 18, 29, .2) 57%, rgba(3, 18, 29, .82) 100%);
}

.hero-carousel-stage,
.hero-carousel-stage .hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel-stage .hero-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.045);
  transition: opacity .75s ease, transform 5.8s cubic-bezier(.2, .7, .2, 1);
}

.hero-carousel-stage .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-stage .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
}

.hero-carousel-stage .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 25, 38, .18), transparent 58%), linear-gradient(180deg, transparent 52%, rgba(5, 22, 34, .78));
}

.hero-carousel-topline {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: .16em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

.hero-carousel-topline > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-carousel-topline i {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #fdbb37;
}

.hero-carousel-topline b {
  padding: 9px 11px;
  background: rgba(7, 28, 43, .74);
  border: 1px solid rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-carousel-topline em {
  color: #fdbb37;
  font-style: normal;
}

.hero-slide figcaption {
  position: absolute;
  z-index: 4;
  left: 22px;
  bottom: 116px;
  display: flex;
  align-items: stretch;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .24);
}

.hero-product-number {
  width: 58px;
  display: grid;
  place-items: center;
  background: #fdbb37;
  color: #081f2e;
  font: 800 22px/1 Arial, sans-serif;
}

.hero-product-copy {
  min-width: 190px;
  padding: 13px 17px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(6, 27, 42, .86);
  border: 1px solid rgba(255, 255, 255, .13);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.hero-product-copy small {
  color: #9fb1bc;
  font: 800 9px/1 Arial, sans-serif;
  letter-spacing: .15em;
}

.hero-product-copy strong {
  font-size: 18px;
  line-height: 1.2;
}

.hero-carousel-nav {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 76px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  background: rgba(5, 24, 37, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 15px 34px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-carousel-nav button {
  min-width: 0;
  padding: 5px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 0;
  border-left: 2px solid transparent;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.hero-carousel-nav button:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-1px);
}

.hero-carousel-nav button.is-active {
  border-left-color: #fdbb37;
  background: #fdbb37;
  color: #081f2e;
}

.hero-carousel-nav button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-tab-thumb {
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #d7dcdb;
}

.hero-tab-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.04);
}

.hero-tab-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-tab-copy small {
  color: #fdbb37;
  font: 800 9px/1 Arial, sans-serif;
  letter-spacing: .1em;
}

.hero-carousel-nav button.is-active .hero-tab-copy small {
  color: #081f2e;
}

.hero-tab-copy strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .hero-carousel-nav button {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px;
  }
  .hero-tab-thumb {
    width: 42px;
    height: 46px;
  }
}

@media (max-width: 640px) {
  .hero-carousel-topline {
    top: 14px;
    left: 14px;
    right: 14px;
  }
  .hero-slide figcaption {
    left: 14px;
    bottom: 91px;
  }
  .hero-product-number {
    width: 46px;
    font-size: 17px;
  }
  .hero-product-copy {
    min-width: 160px;
    padding: 10px 13px 11px;
  }
  .hero-product-copy strong {
    font-size: 15px;
  }
  .hero-carousel-nav {
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 66px;
    padding: 5px;
    gap: 4px;
  }
  .hero-carousel-nav button {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 5px;
    padding: 4px;
  }
  .hero-tab-thumb {
    width: 34px;
    height: 42px;
  }
  .hero-tab-copy strong {
    font-size: 11px;
  }
}

@media (max-width: 410px) {
  .hero-carousel-topline > span {
    letter-spacing: .1em;
  }
  .hero-tab-copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-stage .hero-slide {
    transform: none;
    transition: opacity .2s ease;
  }
}
