/* ========================================
   PROFILE PAGE
   ======================================== */

/* Profile Card */
.profile-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #f0f0f0;
  overflow: hidden;
  border: 3px solid var(--main-accent-color);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-text-color);
  margin-bottom: 4px;
}

.profile-phone {
  font-size: 14px;
  color: #888;
  direction: ltr;
}

/* Profile Menu */
.profile-menu {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'yekanbakh', sans-serif;
  font-size: 15px;
  color: var(--main-text-color);
  transition: background var(--transition-speed) ease;
  text-align: right;
}

.profile-menu-item:hover {
  background: #f5f5f5;
}

.profile-menu-item:active {
  background: #e8e8e8;
  transform: scale(0.98);
}

.profile-menu-item .menu-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.profile-menu-item .menu-label {
  flex: 1;
}

.profile-menu-item .menu-arrow {
  color: #ccc;
  font-size: 30px;
  font-weight: 600;
  font-family: sans-serif;
  margin-left: 10px;
}

.menu-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0 16px;
}

/* Version */
.profile-version {
  text-align: center;
  color: #ccc;
  font-size: 12px;
  margin-top: 20px;
  padding-bottom: 10px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 500px) {
  .profile-avatar {
    width: 64px;
    height: 64px;
  }

  .profile-name {
    font-size: 18px;
  }

  .profile-menu-item {
    font-size: 14px;
    padding: 12px 14px;
  }
}