/* ────────────────────────────────────────────
   PROFILE TAB
──────────────────────────────────────────── */
    .profile-header {
      padding: 24px 20px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .profile-avatar {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: var(--cream2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: var(--shadow-sm);
    }

    .profile-name {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
    }

    .profile-phone {
      font-size: 13px;
      color: var(--ink3);
      margin-top: 2px;
    }

    .profile-section {
      margin: 0 20px 16px;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .profile-section-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--ink3);
      padding: 14px 16px 8px;
    }

    .profile-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-top: 1px solid var(--cream2);
      cursor: pointer;
      transition: background 0.15s;
    }

    .profile-row:first-of-type {
      border-top: none;
    }

    .profile-row:hover {
      background: var(--cream);
    }

    .profile-row-icon {
      font-size: 18px;
      width: 24px;
      text-align: center;
    }

    .profile-row-label {
      flex: 1;
      font-size: 14px;
      font-weight: 500;
    }

    .profile-row-chevron {
      font-size: 12px;
      color: var(--ink4);
    }
