/* Offcanvas Cart */
.cart {
  max-height: calc(100vh - 220px);
  overflow: auto;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.cart-image {
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background-color: #f2f2f2;
}
.cart-title { font-size: 14px; font-weight: 600; margin: 0; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-controls button { width: 28px; height: 28px; line-height: 1; padding: 0; }
.cart-total { font-weight: 600; }
.cart-footer { position: sticky; bottom: 0; background: #fff; padding: 12px 0; }
