/* Featured Sellers Page Styles */

:root {
  --primary: #2563eb;
  --primary-2: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --bg-gray: #f8fafc;
}


/* Hero Section */
.sellers-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.sellers-hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sellers-hero p {
  font-size: 20px;
  margin: 0;
  opacity: 0.9;
}

/* Main Container */
.sellers-container {
  max-width: 1400px;
  margin: -40px auto 80px;
  padding: 0 20px;
}

/* Filters Bar */
.filters-bar {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  display: flex;
  gap: 24px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-group label {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  min-width: 180px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

/* Sellers Grid */
.sellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  grid-auto-rows: 1fr;
  min-height: 0;
}

/* Seller Card */
.seller-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.seller-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}

.seller-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.badge-verified,
.badge-premium {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-verified {
  background: rgba(16,185,129,.1);
  color: var(--success);
  border: 2px solid var(--success);
}

.badge-premium {
  background: rgba(245,158,11,.1);
  color: var(--warning);
  border: 2px solid var(--warning);
}

.seller-header {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.seller-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.3s;
}

.seller-card:hover .seller-header img {
  border-color: var(--primary);
  transform: scale(1.05);
}

.seller-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--warning);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 16px;
}

.seller-rating i {
  font-size: 14px;
}

.seller-info {
  text-align: center;
  margin-bottom: 24px;
}

.seller-info h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.seller-specialty {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.seller-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat i {
  color: var(--primary);
  font-size: 20px;
}

.stat span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.seller-achievements {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.achievement {
  width: 40px;
  height: 40px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
}

.achievement:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.achievement.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.seller-actions {
  display: flex;
  gap: 12px;
}

.btn-view-profile,
.btn-follow {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 15px;
  text-decoration: none;
}

.btn-view-profile {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

.btn-view-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,99,235,.3);
}

.btn-follow {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-follow:hover {
  background: var(--primary);
  color: white;
}

.btn-follow.following {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

.btn-follow.following i::before {
  content: '\f00c';
}

/* Become Seller CTA */
.become-seller-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37,99,235,.25);
  margin-bottom: 60px;
}

.cta-content i {
  font-size: 48px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 16px 0;
}

.cta-content p {
  font-size: 18px;
  margin: 0 0 32px 0;
  opacity: 0.9;
}

.btn-cta {
  padding: 16px 40px;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}


.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .sellers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sellers-hero h1 {
    font-size: 32px;
  }

  .sellers-hero p {
    font-size: 16px;
  }

  .filters-bar {
    flex-direction: column;
    gap: 16px;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
  }

  .sellers-grid {
    grid-template-columns: 1fr;
  }

  .seller-actions {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
