/* Свой каталог marchand.art — стиль по сайту: IBM Plex Sans, #181818, светлый фон. */
.marchand-catalog {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  color: #181818;
  background: #fbfbfb;
  padding: 40px 20px 80px;
  box-sizing: border-box;
}
.marchand-catalog * { box-sizing: border-box; }
.mc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 24px;
}
.mc-filters label {
  font-size: 13px;
  color: #181818;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mc-filters select {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 14px;
  color: #181818;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 8px 10px;
  min-width: 220px;
}
.mc-count {
  font-size: 13px;
  color: #6b6b6b;
  max-width: 1400px;
  margin: 0 auto 20px;
}
.mc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .mc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mc-grid { grid-template-columns: 1fr; }
  .mc-filters select { min-width: 0; width: 100%; }
}
.mc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #f0f0f0;
}
.mc-title {
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
}
.mc-artist {
  font-size: 13px;
  color: #6b6b6b;
}
.mc-text {
  font-size: 13px;
  font-weight: 300;
  color: #181818;
  line-height: 1.4;
}
.mc-add {
  align-self: flex-start;
  margin-top: 6px;
  cursor: pointer;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-weight: 300;
  color: #191919;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 16px;
  font-size: 13px;
  transition: background-color .2s ease-in-out;
}
.mc-add:hover { background-color: #fbfbfb; }
.mc-empty {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 14px;
  color: #6b6b6b;
}
