.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .listing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}
.listing-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}
.listing-card .logo-area {
  height: 90px;
  min-height: 90px;
  max-height: 90px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
  overflow: hidden;
}
.listing-card .logo-area img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.listing-card .body {
  padding: 1rem;
  flex: 1;
}
.listing-card h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.listing-meta {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0.45rem 0 0;
}
.verified-ribbon {
  background: #059669;
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.4rem;
}
.badge-verified {
  background: #ecfdf5;
  color: #047857;
}
.verified-star {
  color: #f59e0b;
  font-size: 0.95em;
  margin-right: 0.15rem;
}
.listing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.dash-tabs { display: flex; gap: 0.4rem; margin: 1rem 0 0; border-bottom: 1px solid #e2e8f0; }
.dash-tabs button {
  border: 0;
  background: transparent;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  color: #64748b;
  border-bottom: 2px solid transparent;
}
.dash-tabs button.on { color: #0f172a; border-bottom-color: #0f766e; }
.color-row { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.swatch {
  width: 28px; height: 28px; border-radius: 999px; border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cbd5e1; cursor: pointer;
}
.swatch.on { box-shadow: 0 0 0 2px #0f172a; }
.uprow { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; background: #f1f5f9; }
