/* === SELLER PROFILE PAGE STYLES === */

.seller-profile-page {
  background-color: #f5f5f7;
  min-height: 85vh;
  padding-top: 180px;
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

.profile-card-container {
  width: 100%;
  max-width: 900px;
}

.profile-header-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.profile-header-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.avatar-container {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.big-profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f60053;
  padding: 4px;
  background: white;
}

.play-status-icon {
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%) translateY(20%);
  width: 40px;
  height: 40px;
  background-color: #f60053;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.play-status-icon i {
  margin-left: 2px;
}

.profile-title-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-username {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 5px;
}

.profile-tagline {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 400;
}

.profile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.star-gold {
  color: #ffc107;
  font-size: 22px;
}
.rating-val {
  font-weight: 800;
  color: #000;
  font-size: 20px;
}
.rating-label {
  color: #555;
  font-weight: 600;
  font-size: 20px;
}

.profile-info-grid {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
  justify-content: center;
}

.stats-column {
  flex: 0 0 auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
  row-gap: 12px;
  align-items: baseline;
}

.stat-num {
  font-weight: 900;
  color: #000;
  font-size: 18px;
  justify-self: end;
  text-align: right;
}

.stat-label {
  font-size: 18px;
  color: #666;
  font-weight: 600;
  justify-self: start;
  text-align: left;
  white-space: nowrap;
}

.bio-column {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  padding-top: 0;
}

.social-link-row {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.heart-icon {
  color: #a020f0;
}

.bio-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.profile-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: #e5e5e5;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-icon-circle:hover {
  background-color: #d0d0d0;
}

.btn-action-large {
  padding: 14px 45px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.1s, opacity 0.2s;
}
.btn-action-large:active {
  transform: scale(0.98);
}
.btn-action-large:hover {
  opacity: 0.9;
}

.btn-orange {
  background-color: #e85d26;
  color: white;
}

.btn-gray {
  background-color: #e5e5e5;
  color: #000;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .profile-header-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .profile-title-block {
    text-align: center;
    align-items: center;
  }

  .profile-info-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .stat-grid {
    justify-content: center;
  }

  .bio-column {
    text-align: center;
  }
  .social-link-row {
    justify-content: center;
  }

  .profile-actions-row {
    flex-wrap: wrap;
  }
  .btn-action-large {
    width: 100%;
  }
}
