.block-custom-product-list {
  width: 100%;
  max-width: 340px;
}

.block-custom-product-list__heading {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(var(--color-text));
}

.block-custom-product-list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.block-custom-product-list__item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.block-custom-product-list__item:hover {
  opacity: 0.9;
}

.block-custom-product-list__media {
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
}

.block-custom-product-list__media img,
.block-custom-product-list__media svg {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.block-custom-product-list__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.block-custom-product-list__title {
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--color-text));
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.block-custom-product-list__rating {
  position: relative;
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1;
  color: rgba(201, 162, 75, 0.28);
  letter-spacing: 0.12em;
  white-space: nowrap;
  width: fit-content;
}

.block-custom-product-list__rating::before {
  display: block;
  content: "\2605\2605\2605\2605\2605";
}

.block-custom-product-list__rating::after {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: var(--rating-width, 0%);
  overflow: hidden;
  color: #c9a24b;
  content: "\2605\2605\2605\2605\2605";
  white-space: nowrap;
}
