/* =========================================================
GLOBAL CENTERING
========================================================= */
.page-wrapper{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =========================================================
PROFILE HEADER CARD (PUBLIC PROFILE)
========================================================= */
.profile-card{
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  transition: all .25s ease;
}

.profile-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =========================================================
PROFILE HEADER FLEX
========================================================= */
.profile-header{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================================================
AVATAR
========================================================= */
.profile-avatar{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}

/* =========================================================
PROFILE INFO
========================================================= */
.profile-info h1{
  font-size: 22px;
}

.profile-stats{
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.6;
}

.profile-rating{
  margin-top: 6px;
  font-size: 14px;
  color: #facc15;
}

.profile-website{
  margin-top: 6px;
  font-size: 13px;
}

.profile-website a{
  color: #a855f7;
}

/* =========================================================
BIO
========================================================= */
.profile-bio{
  margin-top: 20px;
  padding: 16px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}

/* =========================================================
BUTTON
========================================================= */
.profile-btn{
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all .2s ease;
}

.profile-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(168,85,247,0.3);
}

/* =========================================================
PRODUCT SECTION FIX
========================================================= */
.container{
  max-width: 1100px;
  margin: 0 auto;
}