/* spacer that was inline */
.page-spacer {
  height: 20% !important;
}

/* badges */
.badge {
  padding: 6px 9px;
  letter-spacing: 0.5px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.badge.badge-new { background: #11b76b; }
.badge.badge-used { background: #ff3838; }

/* product card image wrapper */
.product-list-image {
  width: 380px;
  height: 190px;
  flex-shrink: 0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

/* pagination position fix (kept from inline) */
.pagination {
  position: relative;
  z-index: 1; /* below header */
}

/* vendor price filter inputs (moved from inline block) */
.vendor-widget-list input[type="number"] {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 0 15px;
  height: 48px;
  border-radius: 6px;
  width: 100%;
}

/* product-list-content padding (moved from inline) */
.product-list-content {
  padding: 10px;
}
