.profile-page{
  min-height: 100vh;
  padding: 110px 20px 40px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 25%),
    linear-gradient(to bottom, #111, #1a1a1a);
}

.profile-shell{
  max-width: 1000px;
  margin: 0 auto;
}

.profile-panel,
.profile-top-card{
  width: 100%;
  max-width: 100%;
}

.profile-top-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}

.profile-top-left{
  display: flex;
  align-items: center;
  gap: 18px;
}

.profile-avatar{
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f3d676);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  flex-shrink: 0;
}

.profile-user-text h1{
  color: white;
  margin: 4px 0 6px;
  font-size: 30px;
}

.profile-user-text p{
  color: #cfcfcf;
}

.profile-tag{
  color: #d4af37 !important;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.logout-btn{
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: crimson;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.logout-btn:hover{
  background: darkred;
}

.profile-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.profile-panel{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.profile-panel h3{
  color: white;
  margin-bottom: 18px;
  font-size: 20px;
}

.full-width{
  grid-column: 1 / -1;
}

.stats-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box{
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.stat-number{
  display: block;
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label{
  color: #ddd;
  font-size: 14px;
}

.quick-links{
  display: grid;
  gap: 14px;
}

.quick-link-card{
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.quick-link-card span{
  font-size: 24px;
}

.quick-link-card strong{
  display: block;
  color: white;
  margin-bottom: 4px;
}

.quick-link-card small{
  color: #c8c8c8;
}

.quick-link-card:hover{
  transform: translateY(-2px);
  background: rgba(212,175,55,0.1);
}

.wishlist-preview{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.wishlist-mini-card{
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  overflow: hidden;
}

.wishlist-mini-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.wishlist-mini-body{
  padding: 14px;
}

.wishlist-mini-body h4{
  color: white;
  font-size: 15px;
  margin-bottom: 6px;
}

.wishlist-mini-body p{
  color: #d4af37;
  font-weight: 700;
  font-size: 14px;
}

.empty-state{
  color: #cfcfcf;
  text-align: center;
  padding: 30px 10px;
  grid-column: 1 / -1;
}

.profile-shell{
  max-width: 950px;
  margin: 0 auto;
}

@media (max-width: 600px){
  .profile-shell{
    max-width: 100%;
  }
}

@media (max-width: 900px){
  .profile-grid{
    grid-template-columns: 1fr;
  }

  .full-width{
    grid-column: auto;
  }

  .wishlist-preview{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .profile-page{
    padding: 100px 12px 30px;
  }

  .profile-top-card{
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .profile-top-left{
    align-items: flex-start;
  }

  .profile-avatar{
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .profile-user-text h1{
    font-size: 24px;
  }

  .profile-panel{
    padding: 18px;
  }

  .stats-grid{
    grid-template-columns: 1fr;
  }

  .wishlist-preview{
    grid-template-columns: 1fr;
  }

  .logout-btn{
    width: 100%;
  }
}