/* ============================================
   VIEW PROFILE (full detail) PAGE
   ============================================ */

main.container {
  padding-top: 18px;
  padding-bottom: 40px;
}

/* ---------- Skeleton ---------- */
.vp-skeleton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vp-skel-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.vp-skeleton .skeleton-row {
  width: 100%;
  margin-bottom: 0;
}

/* ---------- Identity card ---------- */
.vp-identity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 20px 22px;
  background: linear-gradient(160deg, #12386d 0%, #143c73 55%, #0d2c56 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.vp-avatar-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.vp-avatar-img,
.vp-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.vp-avatar-img {
  object-fit: cover;
  border: 3px solid var(--color-white);
}

.vp-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #2d67b2, #12386d);
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  font-weight: 700;
  border: 3px solid rgba(255, 255, 255, 0.18);
}

.vp-identity-card h2 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}

/* ---------- Detail sections ---------- */
.vp-section {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 16px 18px 6px;
  margin-bottom: 14px;
}

.vp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vp-section-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-gray);
  margin-bottom: 6px;
}

.vp-manage-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
}

.vp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.vp-row:last-of-type {
  border-bottom: none;
}

.vp-label {
  font-size: 13px;
  color: var(--color-text-gray);
  flex-shrink: 0;
}

.vp-value-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vp-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: right;
  word-break: break-word;
}

.vp-verified-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  background: rgba(46, 125, 50, 0.12);
  color: var(--color-success);
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.vp-empty {
  font-size: 13px;
  color: var(--color-text-gray);
  padding: 4px 0 16px;
}

.vp-embedded-card {
  margin: 0 0 16px;
  padding: 14px;
}

.vp-payment-card {
  padding: 10px 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.vp-edit-btn {
  margin-top: 6px;
}
