/* ── Product cards ─────────────────────────────── */
.product-card {
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid #e9ecef;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.12) !important;
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

/* ── Navbar cart badge ─────────────────────────── */
.navbar .btn .badge {
  font-size: .6rem;
}

/* ── Toast notification ────────────────────────── */
#cart-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  min-width: 240px;
}

/* ── Misc ──────────────────────────────────────── */
.object-fit-cover {
  object-fit: cover;
}
