/* Marketplace stats bar – beneath navbar on home page */
.marketplace-stats-bar {
  background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 50%, #1e4a3e 100%);
  color: #fff;
  padding: 0.6rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marketplace-stats-header-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 0.4rem;
  text-align: center;
}

.marketplace-stats-header-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.marketplace-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.marketplace-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.marketplace-stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.marketplace-stat-item:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.marketplace-stat-icon {
  font-size: 1.1rem;
  opacity: 0.95;
}

.marketplace-stat-icon i {
  vertical-align: middle;
}

.marketplace-stat-value {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  min-width: 1.5em;
  text-align: center;
}

.marketplace-stat-label {
  font-size: 0.875rem;
  opacity: 0.92;
  text-transform: capitalize;
}

.marketplace-stat-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .marketplace-stats-bar {
    padding: 0.5rem 0;
  }

  .marketplace-stats-header-row {
    padding: 0 0.75rem 0.35rem;
  }

  .marketplace-stats-header-label {
    font-size: 0.9rem;
  }

  .marketplace-stats-inner {
    gap: 0.25rem 0.75rem;
    padding: 0 0.75rem;
  }

  .marketplace-stat-item {
    padding: 0.25rem 0.5rem;
    gap: 0.35rem;
  }

  .marketplace-stat-value {
    font-size: 1rem;
  }

  .marketplace-stat-label {
    font-size: 0.8rem;
  }

  .marketplace-stat-divider {
    display: none;
  }
}
