/* ================= PRODUCTS HERO ================= */
.products-hero {
  padding: 120px 0 70px;
  background: linear-gradient(135deg, #f5f7fb, #eef3ff);
  text-align: center;
}

.products-hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
}

.products-hero p {
  font-size: 18px;
  color: var(--muted);
}

/* ================= FILTER ================= */
.product-filter {
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.filter-wrap input {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 260px;
}

.filter-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-wrap select {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

/* ================= GRID ================= */
.product-grid {
  padding: 80px 0;
  background: #f9fbff;
}

.grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.15);
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.product-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ================= TRUST ================= */
.product-trust {
  padding: 100px 0;
  background: #0b0f1a;
  color: #fff;
}

.trust-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item h4 {
  margin-bottom: 14px;
  font-size: 20px;
}

.trust-item p {
  color: rgba(255,255,255,0.75);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .grid-wrap {
    grid-template-columns: 1fr;
  }
}