.products-section {
  background: #f9f9f9;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-img-wrapper {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h5 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-grey);
}

.product-info p {
  margin-bottom: 15px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #777;
}

.btn-mini {
  width: 100%;
  margin-top: auto;
  padding: 6px 15px;
  font-size: 0.85rem;
  border-radius: 6px;
}
