.sellers-section {
  padding: 120px 20px 60px;
  max-width: 1200px;
   min-height:100vh;
  margin: auto;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
}



/* GRID */

.sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}



/* CARD */

.seller-card {

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
   border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.25s;
}

.seller-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}



/* TOP */

.seller-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.seller-meta h3 {
  font-size: 15px;
}

.hero-content h1 i {
  font-size: 28px;
  padding: 6px;
  background: linear-gradient(90deg, #1fd2ff, #ff56e6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.platform {
  font-size: 12px;
  color: #ff4d4d;
}



/* STATS */

.seller-stats {
  display: flex;
  justify-content: space-between;
}

.stat {
  font-size: 12px;
  color: #aaa;
}

.stat strong {
  display: block;
  color: white;
  margin-top: 2px;
}

.active {
  color: #ff1f32;
}



/* FOOTER */

.seller-footer {
  font-size: 13px;
  display: flex;
  justify-content: center;
}

.btn-view {
  flex: 1;
  background: linear-gradient(90deg,#ff1f32,#dd244f);
  border: none;
  padding: 8px 32px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.btn-view:hover {  
  transform: translateY(-1px);
}

.btn-view:focus {
  outline: none;
}

.btn-view:active {
  transform: scale(0.98);
}