body {
  padding-top: 0px; /* increased from 56px to match actual navbar height */
  background: #f0f2f5;
}

.welcome-banner {
  background: linear-gradient(135deg, #0d2b5e, #1e4d8c);
  padding: 1rem 0;
  margin-top: 0;
}

.listing-image-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  font-size: 6rem;
}

.listing-price {
  color: #1a6b3c;
}

.condition-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.detail-value {
  font-weight: 600;
  color: #1c1c1c;
}