.catalog-page {
  background: #F5F7FA;
}

.filters-box {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  border: 1px solid #edf0f4;
}

.filter-title {
  font-size: 16px;
  font-weight: 700;
}

.catalog-toolbar {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  border: 1px solid #edf0f4;
}

.catalog-count {
  font-size: 14px;
  color: #667085;
}

.catalog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  border: 1px solid #edf0f4;
  transition: all .25s ease;
  height: 100%;
  cursor: pointer;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 50, 80, .10);
}

.catalog-card .card-img {
  aspect-ratio: 4 / 3;
}

.catalog-card .card-info {
  padding: 12px;
}

.catalog-card .card-price {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.catalog-card .card-title {
  font-size: 13px;
  font-weight: 600;
  min-height: 36px;
  margin-bottom: 8px;
}

.catalog-card .card-meta {
  font-size: 12px;
  color: #98a2b3;
  margin-bottom: 8px;
}

.catalog-extra {
  font-size: 12px;
  color: #667085;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
}

.catalog-pagination .page-link {
  border-radius: 10px;
  margin: 0 3px;
  border-color: #e5e7eb;
  color: #1E4D8F;
}

.catalog-pagination .page-item.active .page-link {
  background: #1E4D8F;
  border-color: #1E4D8F;
  color: #fff;
}