/* ===== ОБЩАЯ СТРАНИЦА ===== */
.category-page {
  padding: 20px 0 50px;
}

/* ===== СЕТКА ===== */
.category-page .items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* ===== КАРТОЧКА (обертка) ===== */
.category-page .item {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  overflow: hidden;
  transition: all .2s ease;
}

.category-page .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== КАРТИНКА ===== */
.category-page .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  padding: 15px;
  background: #fafbfc;
}

.category-page .item img {
  max-height: 170px;
  object-fit: contain;
}

/* ===== ТЕКСТОВАЯ ЧАСТЬ ===== */
.category-page .item .price {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 15px 0;
}

.category-page .item .category {
  font-size: 13px;
  color: #777;
  padding: 5px 15px 0;
}

.category-page .item .model {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 15px 15px;
  min-height: 42px;
}

/* ===== НИЗ (фикс отступа) ===== */
.category-page {
  margin-bottom: 40px;
}

/* ===== МОБИЛКА ===== */
@media (max-width: 768px) {
  .category-page .items-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .category-page .item .img {
    height: 160px;
  }

  .category-page .item img {
    max-height: 130px;
  }
}