body {
  font-family: 'Heebo', sans-serif;
  background-color: #f8f9fa;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

.product-img {
  height: 160px;
  object-fit: cover;
}

.product-img-placeholder {
  height: 160px;
}

.cart-badge {
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand {
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .product-img,
  .product-img-placeholder {
    height: 130px;
  }
}
