body {
  padding-top: 56px; 
  background: #f4f7fb;
  font-family: 'DM Sans', Arial, sans-serif;
}


.welcome-banner {
  background: linear-gradient(135deg, #0d2b5e, #123c78);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.banner-sub {
  opacity: 0.8;
  font-size: 1.05rem;
}

.search-input-wrapper input {
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.search-input-wrapper input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2) !important;
}

/* Sidebar Filter */
.filter-sidebar {
  border-radius: 16px;
}

.filter-sidebar .form-check-input:checked {
  background-color: #1a6b3c;
  border-color: #1a6b3c;
}

/* Cards (No Buttons, Entirely Clickable) */
.listing-card {
  border-radius: 16px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* Softer Condition Badges */
.condition-badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.condition-badge.new {
  background: #dbeafe;
  color: #1d4ed8;
}

.condition-badge.good {
  background: #dcfce7;
  color: #15803d;
}


.condition-badge.worn, 
.condition-badge.fair {
  background: #fef3c7;
  color: #b45309; 
}

/* Empty State */
.empty-state {
  padding: 5rem 0;
  text-align: center;
}

.empty-state .empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}