body {
  background-color: #f5f5f5;
}

h2 {
  font-weight: 700;
  color: #e74c3c;
}

.product-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.product-img {
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.85rem;
  color: #555;
}

.price {
  font-weight: 700;
  color: #27ae60;
}

.add-cart {
  border-radius: 8px;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.add-cart:hover {
  background-color: #1e8449;
}

@media (max-width: 768px) {
  .product-img { height: 150px; }
}
