
/* Card feel for profile section */
.profile-content {
  background: transparent;
  border-radius: 35px;
  padding: 35px;
  box-shadow: none;
}


/* Smooth font rendering */
.profile-content * {
  -webkit-font-smoothing: antialiased;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

/* Profile image */
.profile-image img {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  object-fit: cover;
  background: #f1f5f9;
}

/* Name + button block */
.profile-header-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-header-info h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

/* Edit profile button */
.edit-profile-btn {
  width: fit-content;
  padding: 6px 14px;
  border: 1px solid #2563eb;
  background: #ffffff;
  color: #2563eb;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.edit-profile-btn:hover {
  background: #2563eb;
  color: #ffffff;
}
/* =========================================
   STEP 3 – PERSONAL INFO SECTION
   ========================================= */

.profile-info {
  margin-top: 30px;
}

/* Section title + divider */
.profile-info h4 {
  font-size: 12px;
  color: #000;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
}

.profile-info h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin-top: 8px;
}

/* Info rows */
.info-row {
  display: grid;
  grid-template-columns: 180px 20px 1fr;
  margin-bottom: 14px;
  font-size: 14px;
  align-items: center;
}

/* Labels */
.info-row span {
  color: #6b7280;
}

/* Values */
.info-row p,
.info-row .value {
  margin: 0;
  color: #111827;
  font-weight: 500;
}
/* =========================================
   STEP 4 – STATUS BADGE & MICRO POLISH
   ========================================= */

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.4;
}

/* Smooth transitions everywhere */
.profile-content,
.profile-header,
.edit-profile-btn,
.status-badge {
  transition: all 0.2s ease;
}


/* Base nav item icon spacing */

.my-account-navigation .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-account-navigation .nav-link i {
  font-size: 16px;
  color: #374151;
}


/* Slight opacity for inactive items */
.my-account-navigation .nav-link::before {
  opacity: 0.8;
}

.my-account-content {
  font-family: 'Poppins', sans-serif;
}

.my-account-content h1,
.my-account-content h2,
.my-account-content h3,
.my-account-content h4,
.my-account-content h5,
.my-account-content h6,
.my-account-content p,
.my-account-content span,
.my-account-content label,
.my-account-content input,
.my-account-content button {
  font-family: 'Poppins', sans-serif;
}



.profile-content h2,
.profile-content h4 {
  font-weight: 600;
}

.profile-content p,
.profile-content span {
  font-weight: 400;
}
/* Reduce placeholder opacity */
#mobile::placeholder {
  color: rgba(0, 0, 0, 0.4); /* lighter text */
}
