.catalog__card-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 5rem);
  margin-bottom: clamp(3rem, 5vw, 7rem);
}

.catalog__card-item {
  width: 100%;
  max-width: 300px;
  padding: clamp(1.2rem, 2vw, 2.8rem);
  border: 2px solid #D5D5D5;
}

.catalog__card-link {}

.catalog__card-img {
  overflow: hidden;
  max-width: 469px;
  max-height: 469px;
  margin-bottom: 21px;
}

.catalog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog__card-title {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gray-soft);
}

.catalog__colors {
  display: flex;
  padding: 9px 0;
}

.catalog__color {
  width: 12px;
  height: 12px;
  background: #000;
}

.catalog__card-info {
  display: flex;
  color: var(--gray-soft);
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.catalog__colors-count {
  padding-right: 10px;
  border-right: 2px solid var(--gray-soft);
}

.catalog__details-count {
  padding-left: 10px;
}

.catalog__card-button {
  width: 100%;
  padding: 10px clamp(1rem, 3vw, 3rem);
  margin-top: 21px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #FFF;
  background-color: #982BF7;
  transition: all 0.2s ease;
}

.catalog__card-button:hover {
  background-color: #a040f5;
  transform: scale(1.05);
}

.catalog__color--inactive {
  background-color: #f0f0f0;
}
