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

.product-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.product-img {
  position: relative;
  height: 220px;
  background: #f8f8f8;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img i { font-size: 5rem; color: #ddd; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.05); }

.discount-badge {
  position: absolute; top: 10px; left: 10px;
  background: #e63946; color: white;
  padding: 3px 10px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700;
}

.product-actions {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-actions { opacity: 1; }
.action-btn {
  width: 34px; height: 34px;
  background: white; border: none;
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #444;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s;
}
.action-btn:hover { background: #e63946; color: white; }
.action-btn.wishlisted { background: #e63946; color: white; }

.product-info { padding: 16px; }
.product-category { font-size: 0.72rem; text-transform: uppercase; color: #e63946; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name { font-size: 0.9rem; font-weight: 600; color: #1d3557; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-new { font-size: 1.05rem; font-weight: 700; color: #e63946; }
.price-old { font-size: 0.85rem; color: #aaa; text-decoration: line-through; }

.add-to-cart-btn {
  width: 100%;
  background: #1d3557;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.add-to-cart-btn:hover { background: #e63946; }