/* ============================================ */
/* Velvet Client Profile - Premium Style        */
/* ============================================ */

.clientprofile-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Heading */
.clientprofile-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Card */
.clientprofile-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.clientprofile-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.clientprofile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.clientprofile-avatar-upload {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--gold);
  color: #000;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  transition: transform 0.25s ease;
}

.clientprofile-avatar-upload:hover {
  transform: scale(1.05);
}

.clientprofile-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 220px;
}

.clientprofile-info label {
  font-weight: 600;
  font-size: 0.9rem;
}

.clientprofile-info input {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
}

.clientprofile-btn-save {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.clientprofile-btn-save:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* Verification */
.clientprofile-verify {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.clientprofile-verify-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.clientprofile-verify-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clientprofile-verify-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.clientprofile-verify-list span {
  font-weight: 700;
  color: var(--gold);
}
