/* "Смотрите также" chips block (category + product pages) */

.see-also {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.see-also__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: #111827;
}

.see-also__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.see-also__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.see-also__link:hover {
  border-color: rgba(17, 24, 39, 0.22);
  background: #f9fafb;
}

@media (max-width: 640px) {
  .see-also__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .see-also__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .see-also__list::-webkit-scrollbar {
    height: 4px;
  }
  .see-also__list::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, 0.18);
    border-radius: 999px;
  }
  .see-also__item {
    scroll-snap-align: start;
  }
}

