.mrk-wc-cats {
  display: grid;
  gap: 24px;
}

/* columns */
.mrk-cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

.mrk-cols-3 {
  grid-template-columns: repeat(3, 1fr)
}

.mrk-cols-4 {
  grid-template-columns: repeat(4, 1fr)
}

.mrk-cols-5 {
  grid-template-columns: repeat(5, 1fr)
}

.mrk-cols-6 {
  grid-template-columns: repeat(6, 1fr)
}

.mrk-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}

@media (max-width:1024px) {

  .mrk-cols-5,
  .mrk-cols-6,
  .mrk-cols-7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:767px) {
  .mrk-wc-cats {
    grid-template-columns: 1fr;
  }
}

.mrk-wc-cat {
  text-decoration: none;
  color: inherit;
}

.mrk-wc-cat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mrk-wc-cat-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrk-wc-cat-image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.mrk-wc-cat-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
}

.mrk-wc-cat-count {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}