.hero {
  position: relative;
}

.hero .carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.hero__link {
  display: block;
}

.hero__link img {
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 855;
}

.hero__link picture {
  display: block;
}

.hero .nav-arrow {
  display: none;
}

.hero .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  margin-top: 0;
  z-index: 3;
}

.cat-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px;
}

.cat-block {
  position: relative;
  display: block;
  overflow: hidden;
}

.cat-block__img {
  width: 100%;
  height: auto;
}

.cat-block picture {
  display: block;
}

.cat-block__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 45, 0.25) 0%,
    rgba(20, 12, 45, 0.38) 60%,
    rgba(20, 12, 45, 0.5) 100%
  );
}

.cat-block__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 12vw, 54px);
  line-height: 1;
  color: var(--c-white);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.video {
  padding: 6px 0 10px;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(20, 14, 45, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-pill);
  padding: 13px 26px;
  transition: background 0.16s ease;
}

.video__play:hover {
  background: rgba(20, 14, 45, 0.7);
}

.video__play svg {
  width: 18px;
  height: 18px;
}

.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--c-white);
  background: rgba(20, 14, 45, 0.6);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.shelf--list .carousel__viewport {
  overflow: visible;
}

.shelf--list .carousel__track {
  flex-direction: column;
  gap: 22px;
  overflow: visible;
  scroll-snap-type: none;
  padding-inline: var(--pad);
}

.shelf--list .carousel__slide {
  flex: none;
  width: 100%;
  padding-inline: 0;
  scroll-snap-align: none;
}

.shelf--list .nav-arrow,
.shelf--list .dots {
  display: none;
}
