.hero {
  height: 526px;

  display: flex;
  gap: 20px;
}

.hero-banner {
  position: relative;

  width: 942px;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.hero-overlay {
  position: absolute;
  inset: 0 190px 0 0;

  display: flex;
  flex-direction: column;
  justify-content: end;

  background-image: linear-gradient(to right, rgb(0,0,0,0.6), rgba(0,0,0,0));
  padding: 0 0 40px 40px
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-actions .buy {
  width: 180px;
  height: 48px;

  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 10px;
}

.hero-actions .wishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  width: 180px;

  border-radius: 10px;
  border: none;
  background-color: transparent;

  transition: all 0.15s ease-out;
}

.hero-actions .wishlist:hover {
  background-color: rgba(245,245,245,0.2);
}

.hero-actions .wishlist .icon {
  width: 20px;
}

.hero-actions .wishlist .label {
  color: rgb(252, 247, 247);
}

.hero-banner .banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-list li {
  flex: 1;
}

.hero-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;

  width: 180px;
  height: 100%;

  border-radius: 8px;
  background-color: transparent;

  transition: background-color 0.15s ease-out;
}

.hero-item:hover {
  background-color: rgba(245,245,245,0.1);
}

.hero-list li:first-child .hero-item {
  background-color: rgba(245,245,245,0.2);
}

.hero-item .thumbnail {
  width: 42px;
  height: 56px;
  overflow: hidden;
  border-radius: 4px;
}

.hero-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
