.vendors-page {
  background: linear-gradient(180deg, rgba(91, 179, 24, 0.03) 0%, transparent 100%);
}

.vendor-listing-card-inner {
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.vendor-listing-card:hover .vendor-listing-card-inner {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(91, 179, 24, 0.14);
  border-color: rgba(91, 179, 24, 0.2);
}

.vendor-listing-card:hover .vendor-listing-name {
  color: var(--home-alt-primary, #5bb318) !important;
}

.vendor-listing-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.vendor-listing-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.vendor-listing-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--home-alt-primary-subtle, rgba(91, 179, 24, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.vendor-listing-card:hover .vendor-listing-avatar {
  border-color: var(--home-alt-primary, #5bb318);
  box-shadow: 0 8px 24px rgba(91, 179, 24, 0.2);
}

.vendor-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--home-alt-primary, #5bb318) 0%, #4a9a14 100%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid #fff;
}

.vendor-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.vendor-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem;
  background: rgba(91, 179, 24, 0.06);
  border-radius: 12px;
  transition: background 0.25s ease;
}

.vendor-listing-card:hover .vendor-stat-item {
  background: rgba(91, 179, 24, 0.12);
}

.vendor-stat-icon {
  font-size: 1rem;
  color: var(--home-alt-primary, #5bb318);
}

.vendor-stat-value {
  font-weight: 700;
  font-size: 0.75rem;
  color: #1a2e1a;
}

.vendor-stat-label {
  font-size: 0.65rem;
  color: #6b7280;
}

@media (max-width: 575.98px) {
  .vendor-stats-grid {
    gap: 0.35rem;
  }
  .vendor-stat-item {
    padding: 0.35rem;
  }
  .vendor-stat-value {
    font-size: 0.7rem;
  }
}
.vendors-search-form .search-box {
  border: 1px solid var(--home-alt-primary, #5bb318);
  padding: 4px;
  display: flex;
}
.vendors-search-form .search-box .input-group-text, .vendors-search-form .search-box .text-muted, .vendors-search-form .search-box input {
  background: transparent;
}
.vendors-search-form .search-box .btn-primary-custom {
  border-radius: 20px !important;
  padding: 0 2rem !important;
}
.vendors-search-form .search-box .btn-primary-custom:hover {
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .btn-primary-custom, .btn-secondary-custom {
    width: auto;
    margin-bottom: 0;
  }
}
