/* ===== Products Listing Page ===== */
.filter-btn {
  padding: 8px 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Product Card */
.product-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--primary-rgb), 0.12);
}
.product-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.08);
}
.product-card-placeholder {
  font-size: 2.5rem;
  color: #d1d5db;
}
.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-card-body {
  padding: 18px 16px;
}
.product-card-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 4px 0 6px;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
}

@media (max-width: 767px) {
  .product-card-img { height: 160px; }
}
