/* ============================================
   PRODUCTS HERO
============================================ */

.dk34-products-hero {
  text-align: center;
  padding: 140px 40px 80px;
}

.dk34-products-hero h1 {
  font-size: 3.2rem;
  letter-spacing: -1px;
}

.dk34-products-hero p {
  color: #9a9a9a;
  font-size: 1.2rem;
}

/* GRID */
.dk34-products-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.dk34-product-card {
  background: #0c0c0c;
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
  transition: 0.25s ease;
}

.dk34-product-card:hover {
  background: #111;
  transform: translateY(-4px);
}

.dk34-product-card__image img {
  width: 100%;
  border-radius: 8px;
  background: #0a0a0a;
  padding: 6px;
}

.dk34-product-card h3 {
  margin-top: 14px;
  font-size: 1.2rem;
}

.dk34-product-card p {
  color: #9a9a9a;
  font-size: 0.95rem;
}

/* PAGINATION */
.dk34-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 80px;
}

.dk34-pagination a {
  padding: 8px 14px;
  border-radius: 6px;
  background: #0d0d0d;
  color: #ccc;
}

.dk34-pagination .active {
  background: #005CFF;
  color: #fff;
}