/* Product Card Modern Responsive Style (Bootstrap-like) */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  min-width: 0;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.01);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.product-card .p-4 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}
.product-card p {
  color: #666;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
  min-height: 2.5em;
}
.product-card .add-to-cart-btn {
  background: #007A4D;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.product-card .add-to-cart-btn:hover {
  background: #002395;
  color: #fff;
}
@media (max-width: 1024px) {
  .product-card img { height: 170px; }
}
@media (max-width: 640px) {
  .product-card img { height: 120px; }
  .product-card { border-radius: 0.7rem; }
}
