.page-title-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(246, 246, 247, 0.95) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80') center center / cover no-repeat;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: 0.2s ease;
  cursor: pointer;
}

.page-btn:hover {
  border-color: rgba(214, 31, 38, 0.3);
  color: var(--primary);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--primary), #ff4048);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(214, 31, 38, 0.22);
}

.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}
