/* Sellers List Page */
.sellers-page {
  margin: 32px auto;
  padding: 0 24px;
}

.page-header {
  margin-bottom: 32px;
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.page-header p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.sellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.seller-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.seller-banner {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.seller-logo-wrapper {
  position: absolute;
  bottom: -40px;
  left: 24px;
}

.seller-logo {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.seller-content {
  padding: 52px 24px 24px;
}

.seller-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #2a2a2a;
}

.seller-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.5;
}

.seller-stats {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #2a2a2a;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.seller-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item svg {
  width: 16px;
  height: 16px;
  stroke: #888;
  stroke-width: 2;
  fill: none;
}
