.lists-head {
  margin: 0 0 26px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  text-align: center;
}

.prod-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.prod-lists-col {
  min-width: 0;
}
.prod-lists-col > h3 {
  margin: 0 0 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.prod-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prod-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.prod-row:last-child {
  border-bottom: 0;
}
.prod-row.is-out .prod-row-thumb img {
  opacity: 0.5;
  filter: grayscale(1);
}

.prod-row-thumb {
  display: grid;
  place-items: center;
  flex: none;
  width: 74px;
  height: 74px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.prod-row-thumb img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.prod-row-body {
  min-width: 0;
}
.prod-row-body .stars {
  display: block;
  margin: 2px 0;
  color: var(--star);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.prod-row-body .price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.prod-row-body .price del {
  margin-right: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}
.prod-row-body .price ins {
  text-decoration: none;
}

.prod-row-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.prod-row-title:hover {
  color: var(--brand);
}

@media (max-width: 991px) {
  .prod-lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 620px) {
  .prod-lists {
    grid-template-columns: 1fr;
  }
  .prod-row-thumb {
    width: 64px;
    height: 64px;
  }
}

/*# sourceMappingURL=bestsellery.css.map */
