body {
  font-family: Arial, sans-serif;
  margin: 20px;
}
header h1 {
  margin: 0 0 20px 0;
}
.items {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 12px;
}
.item {
  border: 1px solid #ddd;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.thumb img {
  max-width: 120px;
  max-height: 90px;
  object-fit: contain;
}
.thumb .placeholder {
  width: 120px;
  height: 90px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
.meta {
  flex: 1;
}
.action {
  display: flex;
  align-items: center;
}

/* Bootstrap complements */
.card-img-top {
  max-height: 200px;
  object-fit: contain;
}
.price {
  font-weight: 600;
}

/* Wish card styles */
@media (max-width: 576px) {
  .card-img-top {
    max-height: 160px;
  }
}

/* Table/list complements for public index view */
.table img {
  max-height: 90px;
  object-fit: contain;
}
.table thead th {
  white-space: nowrap;
}
.table td img {
  display: block;
}
