.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art.has-rotator {
  cursor: pointer;
}
.hero-slide__tag {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fffaf3e8;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 12px;
  line-height: 1.4;
}
.hero-slide__tag strong {
  font-weight: 700;
}
.hero-slide__tag span {
  color: var(--muted);
  font-weight: 600;
}
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 22px;
  display: flex;
  gap: 6px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #fffaf3a0;
  cursor: pointer;
}
.hero-dots button.is-active {
  background: #fffaf3;
}

.recommended {
  padding: 8px 0 24px;
}
.recommended-head {
  margin-bottom: 18px;
}
.recommended-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  margin: 6px 0 0;
}
.recommended-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.recommended-scroller::-webkit-scrollbar {
  display: none;
}
.recommended-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.recommended-card__art {
  aspect-ratio: 1 / 1;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-size: 40px;
}
.recommended-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recommended-card__body {
  padding: 12px 14px 14px;
  position: relative;
}
.recommended-card__body h3 {
  font-size: 15px;
  margin: 0 0 4px;
  font-family: Fraunces, serif;
  line-height: 1.25;
  padding-right: 26px;
}
.recommended-card__body > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.recommended-card__body button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.recommended-card__stock {
  position: absolute;
  right: 12px;
  bottom: 14px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}
