.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  max-width: 300px; /* Limit card width */
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn,
.wishlist-btn {
  background: var(--white);
  color: var(--royal-blue);
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.quick-view-btn:hover,
.wishlist-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.product-info {
  padding: var(--space-4);
  text-align: center;
}

.product-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--royal-blue);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-category {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
  text-transform: capitalize;
}

.product-price {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-gold);
}